forked from a2lix/AutoFormBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
65 lines (65 loc) · 1.89 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "a2lix/auto-form-bundle",
"type": "symfony-bundle",
"description": "Automate form building",
"keywords": ["symfony", "form", "field", "automate", "automation", "magic", "building"],
"homepage": "https://github.com/a2lix/AutoFormBundle",
"license": "MIT",
"authors": [
{
"name": "David ALLIX",
"homepage": "http://a2lix.fr"
},
{
"name": "Contributors",
"homepage": "https://github.com/a2lix/AutoFormBundle/contributors"
}
],
"require": {
"php": ">=7.2.5",
"symfony/config": "^3.4.30|^4.3|^5.0",
"symfony/dependency-injection": "^3.4.30|^4.3|^5.0",
"symfony/doctrine-bridge": "^3.4.30|^4.3|^5.0",
"symfony/form": "^3.4.30|^4.3|^5.0",
"symfony/http-kernel": "^3.4.30|^4.3|^5.0",
"doctrine/persistence": "^1.3|^2.0"
},
"require-dev": {
"doctrine/orm": "^2.7",
"edgedesign/phpqa": "^1.23.3",
"friendsofphp/php-cs-fixer": "^2.15",
"phpstan/phpstan": "^0.12",
"sensiolabs/security-checker": "^6.0",
"symfony/phpunit-bridge": "^4.3|^5.0",
"symfony/validator": "^3.4.30|^4.3|^5.0",
"vimeo/psalm": "^3.6"
},
"suggest": {
"a2lix/translation-form-bundle": "For translation form"
},
"scripts": {
"cs-fixer": [
"php-cs-fixer fix --verbose"
],
"psalm": [
"psalm"
],
"phpunit": [
"SYMFONY_PHPUNIT_VERSION=9 SYMFONY_PHPUNIT_REMOVE_RETURN_TYPEHINT=1 simple-phpunit"
]
},
"config": {
"sort-packages": true
},
"autoload": {
"psr-4": { "A2lix\\AutoFormBundle\\": "src/" }
},
"autoload-dev": {
"psr-4": { "A2lix\\AutoFormBundle\\Tests\\": "tests/" }
},
"extra": {
"branch-alias": {
"dev-master": "0.x-dev"
}
}
}