-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
42 lines (42 loc) · 1.05 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": "pugx/i18n-bundle",
"type": "symfony-bundle",
"description": "Manage i18n",
"keywords": ["symfony", "i18n", "translation"],
"homepage": "https://github.com/PUGX",
"license": "MIT",
"authors": [
{
"name": "Leonardo Proietti",
"email": "leonardo.proietti@gmail.com"
},
{
"name": "Community",
"homepage": "https://github.com/PUGX/PUGXI118nBundle/contributors"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^7.2",
"doctrine/orm": "^2.6",
"symfony/framework-bundle": "dev-master"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.13",
"phpunit/phpunit": "^6.0 || ^7.0",
"symfony/yaml": "dev-master"
},
"autoload": {
"psr-4": { "PUGX\\I18nBundle\\": "" }
},
"config": {
"bin-dir": "bin",
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "4.2.x-dev"
}
}
}