forked from lexik/LexikTranslationBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
54 lines (54 loc) · 1.51 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
47
48
49
50
51
52
53
54
{
"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": ["Symfony", "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": "^7.4|^8.0",
"symfony/framework-bundle": "~5.2"
},
"require-dev": {
"ext-mongodb": "*",
"symfony/symfony": "~5.0",
"doctrine/orm": ">=2.4",
"doctrine/doctrine-bundle": "^2.2",
"doctrine/data-fixtures": "~1.1",
"doctrine/mongodb-odm-bundle": "~4.2",
"propel/propel": "2.0.0-alpha12|dev-master",
"phpunit/phpunit": "^9.5",
"doctrine/mongodb-odm": "^2.1",
"mongodb/mongodb": "^1.8",
"ext-pdo": "*",
"mikey179/vfsstream": "^1.6"
},
"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"
}