forked from sonata-project/SonataIntlBundle
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
53 lines (53 loc) · 1.59 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
{
"name": "sonata-project/intl-bundle",
"type": "symfony-bundle",
"description": "Symfony SonataIntlBundle",
"keywords": ["sonata", "intl", "date", "time", "number"],
"homepage": "https://sonata-project.org/bundles/intl",
"license": "MIT",
"authors": [
{
"name": "Thomas Rabaix",
"email": "[email protected]"
},
{
"name": "Sonata Community",
"homepage": "https://github.com/sonata-project/SonataIntlBundle/contributors"
}
],
"require": {
"php": "^5.3 || ^7.0",
"symfony/http-kernel": "^2.2 || ^3.0",
"symfony/dependency-injection": "^2.2 || ^3.0",
"symfony/templating": "^2.2 || ^3.0",
"symfony/intl": "^2.3.21 || ^3.0",
"twig/twig": "^1.12 || ^2.0"
},
"require-dev": {
"symfony/security": "^2.2 || ^3.0",
"symfony/security-acl": "^2.2 || ^3.0",
"symfony/phpunit-bridge": "^2.7 || ^3.0",
"matthiasnoback/symfony-dependency-injection-test": "^0.7.6 || ^1.0",
"sllh/php-cs-fixer-styleci-bridge": "^2.0"
},
"suggest": {
"sonata-project/user-bundle": "For user timezone detection"
},
"conflict": {
"sonata-project/user-bundle": "<2.0 || >=4.0"
},
"autoload": {
"psr-4": { "Sonata\\IntlBundle\\": "" },
"exclude-from-classmap": [
"Tests/"
]
},
"autoload-dev": {
"psr-4": { "Sonata\\IntlBundle\\Tests\\": "Tests/" }
},
"extra": {
"branch-alias": {
"dev-master": "2.x-dev"
}
}
}