-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
35 lines (35 loc) · 941 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
31
32
33
34
35
{
"name": "gigablah/durian",
"version": "0.1.0",
"type": "library",
"description": "A pungent PHP 5.5 microframework based on generator-style middleware.",
"keywords": ["framework", "micro", "microframework"],
"homepage": "http://durianphp.com",
"license" : "MIT",
"authors" : [
{
"name": "Chris Heng",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.5.0",
"pimple/pimple": "~1.0",
"symfony/http-foundation": ">=2.3,<2.5-dev",
"symfony/http-kernel": ">=2.3,<2.5-dev",
"nikic/fast-route": "dev-master"
},
"require-dev": {
"phpunit/phpunit": "~3.7",
"satooshi/php-coveralls": "dev-master",
"filp/whoops": "~1.0"
},
"suggest": {
"filp/whoops": "For pretty exception traces"
},
"autoload": {
"psr-0": {
"Durian": "src/"
}
}
}