-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
49 lines (41 loc) · 1.09 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
42
43
44
45
46
47
48
49
{
"name": "graze/silex-trailing-slash-handler",
"description": "Handle requests missing a trailing slash in Silex by appending a slash and issuing an internal sub-request.",
"license": "MIT",
"authors": [
{
"name": "Graze Developers",
"email": "[email protected]"
},
{
"name": "Samuel Parkinson",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Graze\\Silex\\ControllerProvider\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Graze\\Silex\\Tests\\ControllerProvider\\": "tests/"
}
},
"require": {
"silex/silex": "^2"
},
"require-dev": {
"mockery/mockery": "^0.9.4",
"phpunit/phpunit": "^5.1.1",
"roave/security-advisories": "dev-master",
"graze/standards": "^2.0",
"squizlabs/php_codesniffer": "^3.1",
"symfony/debug": "^2.8|^3"
},
"scripts": {
"test": [
"vendor/bin/phpunit --colors=always tests/"
]
}
}