-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathcomposer.json
38 lines (38 loc) · 1.04 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
{
"name": "linio/dynamic-form-bundle",
"description": "Generates symfony forms based on YAML configuration files",
"keywords": ["symfony", "symfony2", "dynamic", "forms"],
"type": "library",
"license": "BSD-3-Clause",
"require": {
"php": "^8.0",
"symfony/form": "^2.8 || ^3.0 || ^4.0 || ^5.0 || ^6.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"symfony/validator": "^2.8 || ^3.0 || ^4.0 || ^5.0 || ^6.0",
"friendsofphp/php-cs-fixer": "^3.0",
"symfony/security-bundle": "^5.0",
"jaschilz/php-coverage-badger": "^2.0",
"phpspec/prophecy-phpunit": "^2.0"
},
"autoload": {
"psr-4": {
"Linio\\DynamicFormBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Linio\\DynamicFormBundle\\": "tests/"
}
},
"scripts": {
"lint": "vendor/bin/php-cs-fixer fix --verbose --show-progress=dots",
"lint:check": "vendor/bin/php-cs-fixer fix --dry-run --verbose --show-progress=dots",
"phpunit": "vendor/bin/phpunit",
"test": [
"@lint:check",
"@phpunit"
]
}
}