forked from donquixote/krautoload
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
30 lines (30 loc) · 834 Bytes
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{
"name": "donquixote/krautoload",
"description": "Krautoload is a pluggable class loader and class discovery tool.",
"keywords": ["autoload", "classloader", "PSR-0", "PSR-4", "PSR-X", "PEAR"],
"homepage": "http://github.com/donquixote/krautoload",
"license": "GPL",
"authors": [
{
"name": "Andreas Hennings",
"homepage": "http://github.com/donquixote"
}
],
"support": {
"issues": "http://github.com/donquixote/krautoload/issues"
},
"require": {
"php": ">=5.3.3"
},
"require-dev": {
"phpunit/php-invoker": ">=1.1.2",
"phpunit/phpunit": ">=3.7",
"satooshi/php-coveralls": "*"
},
"autoload": {
"psr-0": {
"Krautoload\\": "src/"
}
},
"minimum-stability": "alpha"
}