-
Notifications
You must be signed in to change notification settings - Fork 12
/
composer.json
50 lines (50 loc) · 1.37 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
47
48
49
50
{
"name": "elao/form-translation-bundle",
"type": "symfony-bundle",
"description": "Generate translation key for forms",
"keywords": ["elao", "form", "translation"],
"homepage": "https://github.com/Elao/ElaoFormTranslationBundle",
"license": "MIT",
"authors": [
{
"name": "Elao",
"homepage": "http://www.elao.com"
},
{
"name": "Thomas Jarrand",
"homepage": "https://github.com/Tom32i"
}
],
"require": {
"php": "^7.4|^8.0",
"symfony/framework-bundle": "^5.4|^6.0|^7.0",
"symfony/form": "^5.4|^6.0|^7.0",
"symfony/property-access": "^5.4|^6.0|^7.0"
},
"require-dev": {
"ekino/phpstan-banned-code": "^1.0",
"friendsofphp/php-cs-fixer": "^3.10",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan": "^1.8",
"phpstan/phpstan-symfony": "^1.2",
"symfony/phpunit-bridge": "^5.0",
"phpstan/phpstan-phpunit": "^1.1"
},
"autoload": {
"psr-4": {
"Elao\\Bundle\\FormTranslationBundle\\": "."
}
},
"prefer-stable": true,
"minimum-stability": "dev",
"extra": {
"branch-alias": {
"dev-master": "4.x-dev"
}
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
}
}
}