forked from Vectorface/SnappyRouter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
41 lines (41 loc) · 1.12 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
40
41
{
"name": "vectorface/snappy-router",
"description": "A quick and snappy routing framework.",
"keywords": [
"MVC", "routing", "router", "drinking bird"
],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Daniel Bruce",
"email": "[email protected]",
"role": "Developer"
}
],
"autoload": {
"psr-0": {
"Vectorface\\SnappyRouter": "./src",
"Vectorface\\SnappyRouterTests": "./tests"
},
"files": [
"./src/Vectorface/SnappyRouter/php-5.3-compat.php"
]
},
"homepage": "https://github.com/Vectorface/snappy-router",
"support": {
"issues": "https://github.com/Vectorface/snappy-router/issues",
"source": "https://github.com/Vectorface/snappy-router"
},
"require": {
"php": ">=5.3.0",
"vectorface/whip": "~0.2",
"twig/twig": "~1.0",
"danbruce/fast-route":"~0.6"
},
"require-dev": {
"phpunit/phpunit": "4.2.*",
"squizlabs/php_codesniffer": "1.*",
"vectorface/dunit": "~2.0"
}
}