forked from schmittjoh/JMSTranslationBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
46 lines (46 loc) · 1.37 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": "jms/translation-bundle",
"description": "Puts the Symfony2 Translation Component on steroids",
"keywords": ["translation", "multilanguage", "extract", "webinterface", "ui", "i18n", "extraction", "interface"],
"homepage": "http://jmsyst.com/bundles/JMSTranslationBundle",
"type": "symfony-bundle",
"license": "Apache2",
"authors": [
{
"name": "Johannes M. Schmitt",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"require": {
"symfony/framework-bundle": ">=2.1,<2.3-dev",
"nikic/php-parser": "0.9.1",
"symfony/console": "*"
},
"conflict": {
"twig/twig": "1.10.2"
},
"require-dev": {
"symfony/twig-bundle": "*",
"symfony/browser-kit": "*",
"symfony/class-loader": "*",
"symfony/css-selector": "*",
"symfony/finder": "*",
"symfony/form": "*",
"symfony/validator": "*",
"symfony/security": "*",
"symfony/process": "*",
"symfony/yaml": "*",
"sensio/framework-extra-bundle": "*",
"jms/di-extra-bundle": "*"
},
"autoload": {
"psr-0": { "JMS\\TranslationBundle": "" }
},
"target-dir": "JMS/TranslationBundle",
"extra": {
"branch-alias": {
"dev-master": "1.1-dev"
}
}
}