forked from lexik/LexikTranslationBundle
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
49 lines (49 loc) · 1.37 KB
/
composer.json
File metadata and controls
49 lines (49 loc) · 1.37 KB
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
47
48
49
{
"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": "c.girard@lexik.fr"
},
{
"name": "Dev Lexik",
"email": "dev@lexik.fr"
}
],
"require": {
"php": "^5.6 || ^7.0",
"symfony/framework-bundle": "~2.8|~3.0|~4.0"
},
"require-dev": {
"doctrine/orm": "^2.2.3",
"doctrine/doctrine-bundle": "~1.2",
"doctrine/data-fixtures": "~1.1",
"doctrine/mongodb-odm-bundle": "4.0.0-beta1",
"propel/propel-bundle": "^3.0@dev|^4.0@dev",
"propel/propel": "@dev",
"phpunit/phpunit": "^5.7"
},
"suggest": {
"doctrine/orm": ">=2.4"
},
"autoload": {
"psr-4": { "Lexik\\Bundle\\TranslationBundle\\": "" }
},
"autoload-dev": {
"classmap": [
"Tests/app/AppKernel.php"
]
},
"extra": {
"branch-alias": {
"dev-master": "4.x.x-dev"
}
},
"minimum-stability": "alpha"
}