forked from lunetics-org/LocaleBundle
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
36 lines (36 loc) · 1.04 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
{
"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.1,<2.3-dev",
"symfony/yaml": ">=2.1,<2.3-dev",
"symfony/locale": ">=2.1,<2.3-dev",
"symfony/validator": ">=2.1,<2.3-dev"
},
"require-dev": {
"twig/twig": "1.*",
"ext-intl": "*"
},
"suggest": {
"ext-intl": "Needed for displaying the countryname in the locale language"
},
"autoload": {
"psr-0": { "Lunetics\\LocaleBundle": "" }
},
"target-dir": "Lunetics/LocaleBundle"
}