-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathcomposer.json
47 lines (47 loc) · 893 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
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "marcojanssen/silex-routing-service-provider",
"authors": [
{
"name": "Marco Janssen",
"email": "[email protected]"
},{
"name": "Samir Rachidi",
"email": "[email protected]"
}
],
"keywords": [
"silex",
"provider",
"routing",
"route"
],
"description": "Silex provider for adding routes",
"license": "MIT",
"require": {
"php": ">=5.6",
"silex/silex": "^2.0"
},
"require-dev": {
"symfony/security": "~v3.1.0",
"scrutinizer/ocular": "^1.3",
"phpunit/phpunit": "^5.5"
},
"suggest": {
"igorw/config-service-provider": "Allows registering providers with configuration"
},
"autoload": {
"psr-0": {
"MJanssen\\": "src"
}
},
"autoload-dev": {
"psr-0": {
"MJanssen\\": "tests"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.0-dev"
}
}
}