forked from umanit/translation-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (42 loc) · 1.11 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
{
"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": "contact@umanit.fr"
}
],
"require": {
"php": ">=7.0",
"doctrine/doctrine-bundle": ">=1.6",
"doctrine/orm": ">=2.5",
"ramsey/uuid": ">=3.7",
"symfony/framework-bundle": ">=3.4",
"symfony/yaml": ">=3.4",
"symfony/security-bundle": ">=3.4",
"symfony/property-access": ">=3.4",
"twig/twig": ">=2.0"
},
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Umanit\\TranslationBundle\\": "src/"
}
},
"require-dev": {
"symfony/phpunit-bridge": ">=4.0",
"phpunit/phpunit": ">=6.5",
"symfony/var-dumper": ">=3.4",
"phpro/grumphp": "^0.15.2",
"jakub-onderka/php-parallel-lint": "^1.0"
}
}