forked from lexik/LexikTranslationBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (44 loc) · 1.29 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
{
"name": "lexik/translation-bundle",
"type": "symfony-bundle",
"description": "This bundle allows to import translation files content into the database and provide a GUI to edit translations.",
"keywords": ["Symfony2", "bundle", "translation", "i18n"],
"homepage": "https://github.com/lexik/LexikTranslationBundle",
"license": "MIT",
"prefer-stable": true,
"authors": [
{
"name": "Cedric Girard",
"email": "[email protected]"
},
{
"name": "Dev Lexik",
"email": "[email protected]"
}
],
"require": {
"php": "^5.6 || ^7.0",
"symfony/framework-bundle": "~2.8|~3.0"
},
"require-dev": {
"doctrine/orm": "^2.2.3",
"doctrine/doctrine-bundle": "~1.2",
"doctrine/data-fixtures": "~1.1",
"doctrine/mongodb-odm-bundle": "~3.0",
"propel/propel-bundle": "~1.5|3.0.0-alpha1@dev",
"phpunit/phpunit": "^5.7"
},
"suggest": {
"doctrine/orm": ">=2.4",
"doctrine/mongodb-odm-bundle": "~3.0",
"propel/propel-bundle": "~1.5"
},
"autoload": {
"psr-4": { "Lexik\\Bundle\\TranslationBundle\\": "" }
},
"extra": {
"branch-alias": {
"dev-master": "4.x.x-dev"
}
}
}