forked from phillipsdata/minphp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
39 lines (39 loc) · 1.05 KB
/
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
31
32
33
34
35
36
37
38
39
{
"name": "minphp/minphp",
"description": "An extremely lightweight MVC framework",
"homepage": "http://github.com/phillipsdata/minphp",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Cody Phillips",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.3.0",
"minphp/cache": "dev-master",
"minphp/configure": "dev-master",
"minphp/container": "dev-master",
"minphp/date": "dev-master",
"minphp/form": "dev-master",
"minphp/html": "dev-master",
"minphp/input": "dev-master",
"minphp/language": "dev-master",
"minphp/pagination": "dev-master",
"minphp/xml": "dev-master"
},
"require-dev": {
"phpunit/phpunit": "~4.0",
"squizlabs/php_codesniffer": "~2.2",
"satooshi/php-coveralls": "dev-master"
},
"autoload": {
"classmap": [
"src/app",
"src/components",
"src/helpers",
"src/lib"
]
}
}