forked from lunetics-org/LocaleBundle
-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
45 lines (45 loc) · 1.34 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
{
"name": "lunetics/locale-bundle",
"description": "A Bundle for switching Languages",
"keywords": ["locale", "bundle", "multilanguage", "router", "browser", "cookie", "language"],
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Lunetics",
"homepage": "http://www.lunetics.com"
},
{
"name": "Christophe Willesmen",
"homepage": "http://christophewillemsen.com"
}
],
"minimum-stability": "dev",
"require": {
"php": "^5.6 || ^7.0",
"symfony/framework-bundle": "^2.8 || ^3.0 || ^4.0",
"symfony/intl": "^2.8 || ^3.0 || ^4.0",
"symfony/templating": "^2.8 || ^3.0 || ^4.0",
"symfony/validator": "^2.8 || ^3.0 || ^4.0",
"symfony/yaml": "^2.8 || ^3.0 || ^4.0",
"psr/log": "~1.0"
},
"require-dev": {
"symfony/phpunit-bridge": "^3.3 || ^4.0",
"ext-intl": "*",
"twig/twig": "1.* || 2.*",
"symfony/form": "^2.8 || ^3.0 || ^4.0"
},
"suggest": {
"ext-intl": "Needed for displaying the country name in the locale language"
},
"autoload": {
"psr-0": { "Lunetics\\LocaleBundle": "" }
},
"target-dir": "Lunetics/LocaleBundle",
"extra": {
"branch-alias": {
"dev-master": "2.6-dev"
}
}
}