-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
40 lines (40 loc) · 1.08 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
{
"name": "umanit/translation-bundle",
"description": "Manages Doctrine translations",
"type": "symfony-bundle",
"keywords": [
"symfony",
"doctrine",
"translation"
],
"homepage": "https://github.com/umanit/translation-bundle",
"license": "MIT",
"authors": [
{
"name": "UmanIT",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.0",
"doctrine/doctrine-bundle": ">=1.6",
"doctrine/orm": ">=2.9",
"ramsey/uuid": ">=3.7",
"symfony/framework-bundle": "^4.4|^5.2|^6.0",
"symfony/yaml": "^4.4|^5.2|^6.0",
"symfony/security-bundle": "^4.4|^5.2|^6.0",
"symfony/property-access": "^4.4|^5.2|^6.0",
"twig/twig": ">=2.7"
},
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Umanit\\TranslationBundle\\": "src/"
}
},
"require-dev": {
"symfony/phpunit-bridge": "^4.4|^5.2|^6.0",
"phpunit/phpunit": ">=6.5",
"jakub-onderka/php-parallel-lint": "^1.0"
}
}