-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
46 lines (46 loc) · 1.59 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
{
"name": "arxy/entity-translations-bundle",
"license": "MIT",
"description": "This bundle provides translations for entities in your project. It's a bundle, but can be used standalone.",
"type": "symfony-bundle",
"authors": [
{
"name": "Bozhidar Hristov",
"email": "[email protected]"
}
],
"keywords": [
"translation"
],
"require": {
"php": "^7.2 | ^8.0"
},
"require-dev": {
"phpunit/phpunit": "^8.0 | ^9.0",
"symfony/symfony": "~4.4 | ~5.0",
"doctrine/persistence": "~2.0",
"doctrine/orm": "~2.5",
"doctrine/doctrine-bundle": "~1.8 | ~2.0",
"ext-intl": "*",
"friendsofphp/php-cs-fixer": "^2.18"
},
"suggest": {
"doctrine/orm": "Autoload translations with Doctrine ORM",
"symfony/symfony": "Needed for easy integration into Symfony",
"twig/twig": "Needed to use Twig Extension to translate in twig.",
"symfony/property-access": "Needed for Twig extension to translate",
"symfony/translation": "Needed if you want to use Symfony Translation's configuration. Otherwise this bundle should be setup separately.",
"symfony/form": "Needed if you want to use forms to translate entities.",
"doctrine/doctrine-bundle": "Needed if you want to use forms to translate entities."
},
"autoload": {
"psr-4": {
"Arxy\\EntityTranslationsBundle\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Arxy\\EntityTranslationsBundle\\Tests\\": "tests"
}
}
}