forked from lunetics-org/LocaleBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
46 lines (46 loc) · 1.21 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
{
"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.3.2",
"symfony/framework-bundle": ">=2.3.0",
"symfony/yaml": "~2.2",
"symfony/locale": "~2.2",
"symfony/validator": "~2.2",
"psr/log": "~1.0"
},
"require-dev": {
"twig/twig": "1.*",
"ext-intl": "*",
"symfony/form": "~2.2"
},
"conflict": {
"symfony/intl": "2.4.*"
},
"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.4-dev"
}
}
}