-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
35 lines (35 loc) · 1.02 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
{
"name": "piotrpolak/conditional-routing-bundle",
"description": "Provides a way to selectively load Symfony bundle routes based on a set of user defined conditions.",
"type": "symfony-bundle",
"require": {
"php": ">=5.3.0",
"symfony/yaml": "~2.3|~3.4",
"symfony/routing": "~2.3|~3.4",
"symfony/dependency-injection": "~2.3|~3.4",
"symfony/config": "~2.3|~3.4",
"symfony/http-kernel": "~2.3|~3.4",
"symfony/framework-bundle": "~2.3|~3.4"
},
"license": "MIT",
"autoload": {
"psr-4": {
"PiotrPolak\\ConditionalRoutingBundle\\": "src/"
},
"exclude-from-classmap": [
"/src/Tests/"
]
},
"authors": [
{
"name": "Piotr Polak",
"email": "[email protected]"
}
],
"require-dev": {
"symfony/expression-language": "~2.3|~3.4",
"codeclimate/php-test-reporter": "^0.3.2",
"phpmd/phpmd": "^2.6",
"phpunit/phpunit": "^4.8"
}
}