forked from a2lix/TranslationFormBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
43 lines (43 loc) · 1.34 KB
/
composer.json
File metadata and controls
43 lines (43 loc) · 1.34 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
{
"name": "ambta/translation-form-bundle",
"type": "symfony-bundle",
"description": "Translate your doctrine objects easily with some helps",
"keywords": ["symfony2", "doctrine2", "i18n", "internationalization", "translation", "translatable", "form", "gedmo", "knplabs", "ambta"],
"homepage": "https://github.com/ambta/TranslationFormBundle",
"license": "MIT",
"authors": [
{
"name": "David ALLIX",
"homepage": "http://a2lix.fr"
},
{
"name": "Ambta",
"homepage": "https://ambta.com"
}
],
"require": {
"symfony/symfony": ">=2.3"
},
"require-dev": {
"phpunit/phpunit": "~4.1",
"doctrine/common": "~2.3",
"gedmo/doctrine-extensions": "~2.4",
"knplabs/doctrine-behaviors": "1.0.*"
},
"suggest": {
"a2lix/i18n-doctrine-bundle": "For A2lix strategy",
"gedmo/doctrine-extensions": "For Gedmo strategy",
"knplabs/doctrine-behaviors": "For Knp strategy",
"prezent/doctrine-translatable-bundle": "For Prezent strategy"
},
"autoload": {
"psr-0": { "Ambta\\TranslationFormBundle": "" }
},
"prefer-stable": true,
"target-dir": "Ambta/TranslationFormBundle",
"extra": {
"branch-alias": {
"dev-master": "2.x-dev"
}
}
}