-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
29 lines (29 loc) · 951 Bytes
/
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
{
"name": "a2lix/translation-form-bundle",
"type": "symfony-bundle",
"description": "Translate your doctrine objects easily with a custom form field",
"keywords": ["symfony4", "doctrine2", "i18n", "internationalization", "translation", "translatable", "form", "gedmo", "knplabs"],
"homepage": "https://github.com/a2lix/TranslationFormBundle",
"license": "MIT",
"authors": [
{
"name": "A2lix",
"homepage": "http://www.a2lix.fr"
},
{
"name": "David ALLIX"
}
],
"require": {
"symfony/form": "^4.0"
},
"suggest": {
"a2lix/i18n-doctrine-bundle": "For A2lix strategy",
"stof/doctrine-extensions-bundle": "For Gedmo strategy",
"knplabs/doctrine-behaviors": "For Knp strategy"
},
"autoload": {
"psr-0": { "A2lix\\TranslationFormBundle": "" }
},
"target-dir": "A2lix/TranslationFormBundle"
}