-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
19 lines (19 loc) · 929 Bytes
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
"name": "malkusch/php-autoloader",
"type": "library",
"description": "This autoloader supports every autoloadable PHP feature up to PHP 5.4’s traits. It find’s every class, interface or traits definition in any situation. No matter what convention is used. The autoloader is index based. After building the index there will be no performance issue. The building is done dynamically. There is no explicit need of calling a build script. For the sake of comfortability there exists a script for prebuilding an index.",
"keywords": ["autoloader", "autoload"],
"homepage": "http://php-autoloader.malkusch.de/en/",
"license": "GPL-3.0+",
"authors": [
{
"name": "Markus Malkusch",
"email": "[email protected]",
"homepage": "http://www.malkusch.de/"
}
],
"require": {
"php": ">=5.3.0"
},
"bin": ["bin/autoloader-build.php"]
}