forked from adamwojtkiewicz/I18nDoctrineBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
34 lines (34 loc) · 1.01 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
{
"name": "a2lix/i18n-doctrine-bundle",
"type": "symfony-bundle",
"description": "Manage i18n for your doctrine objects",
"keywords": ["symfony2", "doctrine2", "i18n", "internationalization", "translation", "translatable"],
"homepage": "https://github.com/a2lix/I18nDoctrineBundle",
"license": "MIT",
"authors": [
{
"name": "A2lix",
"homepage": "http://a2lix.fr"
},
{
"name": "David ALLIX"
}
],
"require": {
"php": ">=8.1.0",
"symfony/http-kernel": "~5.4|~6.4|~7.0",
"symfony/validator": "~5.4|~6.4|~7.0",
"symfony/config": "~5.4|~6.4|~7.0",
"symfony/dependency-injection": "~5.4|~6.4|~7.0",
"a2lix/translation-form-bundle": "*"
},
"autoload": {
"psr-0": {"A2lix\\I18nDoctrineBundle": ""}
},
"target-dir": "A2lix/I18nDoctrineBundle",
"extra": {
"branch-alias": {
"dev-master": "0.x-dev"
}
}
}