-
Notifications
You must be signed in to change notification settings - Fork 63
/
composer.json
60 lines (56 loc) · 1.66 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
50
51
52
53
54
55
56
57
58
59
60
{
"name": "besimple/i18n-routing-bundle",
"type": "symfony-bundle",
"description": "Full routing internationalized on your Symfony2 project ",
"keywords": ["routing", "internationalisation", "Symfony2", "BeSimpleI18nRoutingBundle"],
"homepage": "https://github.com/BeSimple/BeSimpleI18nRoutingBundle",
"license": "MIT",
"authors": [
{
"name": "Francis Besset",
"email": "[email protected]"
},
{
"name": "Christophe Coevoet",
"email": "[email protected]"
},
{
"name": "Benjamin Eberlei",
"email": "[email protected]"
},
{
"name": "BeSimple Community",
"homepage": "https://github.com/BeSimple/BeSimpleI18nRoutingBundle/contributors"
}
],
"require": {
"php": ">=5.3.2",
"symfony/routing": "~2.3 || ~3.0",
"symfony/config": "~2.3 || ~3.0"
},
"require-dev": {
"doctrine/dbal": "~2.2",
"symfony/dependency-injection": "~2.3 || ~3.0",
"symfony/http-kernel": "~2.3 || ~3.0",
"symfony/translation": "~2.3 || ~3.0",
"phpunit/phpunit": "~4.7@stable",
"matthiasnoback/symfony-dependency-injection-test": "^0.7",
"matthiasnoback/symfony-config-test": "^1.4"
},
"suggest": {
"doctrine/dbal": "~2.2"
},
"autoload": {
"psr-4": { "BeSimple\\I18nRoutingBundle\\": "src/" }
},
"autoload-dev": {
"psr-4": {
"BeSimple\\I18nRoutingBundle\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.4-dev"
}
}
}