-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (44 loc) · 1.35 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": "andyhobbs/gedmo-translation-form-bundle",
"type": "symfony-bundle",
"description": "Translate your doctrine objects easily with some helps",
"keywords": [
"symfony",
"doctrine2",
"i18n",
"internationalization",
"translation",
"translatable",
"form",
"gedmo"
],
"homepage": "https://github.com/andyhobbs/gedmo-translation-form-bundle",
"license": "MIT",
"authors": [
{
"name": "Contributors",
"homepage": "https://github.com/andyhobbs/gedmo-translation-form-bundle/graphs/contributors"
}
],
"require": {
"php": ">=7.2",
"symfony/config": "^3.4.30|^4.3|^5.0",
"symfony/dependency-injection": "^3.4.30|^4.3|^5.0",
"symfony/event-dispatcher": "^3.4.30|^4.3|^5.0",
"symfony/form": "^3.4.30|^4.3|^5.0",
"symfony/http-foundation": "^3.4.30|^4.3|^5.0",
"symfony/http-kernel": "^3.4.30|^4.3|^5.0",
"symfony/options-resolver": "^3.4.30|^4.3|^5.0"
},
"suggest": {
"a2lix/i18n-doctrine-bundle": "For A2lix strategy",
"stof/doctrine-extensions-bundle": "For Gedmo strategy"
},
"config": {
"sort-packages": true
},
"autoload": {
"psr-4": { "A2lix\\TranslationFormBundle\\": "src/" }
},
"prefer-stable": true
}