-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
35 lines (35 loc) · 849 Bytes
/
composer.json
File metadata and controls
35 lines (35 loc) · 849 Bytes
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
{
"name": "nice/framework",
"description": "A nice PHP microframework",
"license": "MIT",
"require": {
"php": ">=5.4.0",
"symfony/config": "~2.3",
"symfony/http-kernel": "~2.3",
"symfony/dependency-injection": "~2.3",
"nikic/fast-route": ">=0.6"
},
"require-dev": {
"symfony/debug": "~2.3",
"symfony/expression-language": "~2.4",
"phpunit/phpunit": "~3.7",
"codeclimate/php-test-reporter": "dev-master"
},
"suggest": {
"stack/builder": "Stack HttpKernel middlewares - http://stackphp.com",
"monolog/monolog": "Provides many different logging handlers"
},
"autoload": {
"psr-4": {
"Nice\\Tests\\": "tests/",
"Nice\\": "src/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.1-dev"
}
},
"minimum-stability": "alpha",
"prefer-stable": true
}