-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
45 lines (45 loc) · 1.19 KB
/
Copy pathcomposer.json
File metadata and controls
45 lines (45 loc) · 1.19 KB
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
{
"name": "ansien/rapid-form-bundle",
"description": "A bundle that will help you quickly create forms for your Symfony application",
"license": "MIT",
"keywords": [
"ansien",
"rapid-form-bundle",
"symfony",
"bundle",
"form"
],
"type": "symfony-bundle",
"require": {
"php": ">=8.0",
"symfony/config": "^5.2|^6.0|^7.0",
"symfony/form": "^5.2|^6.0|^7.0",
"symfony/framework-bundle": "^5.2|^6.0|^7.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.18",
"phpro/grumphp": "^1.3",
"phpunit/phpunit": "^9.5",
"symfony/var-dumper": "^5.2|^6.0|^7.0"
},
"autoload": {
"psr-4": {
"Ansien\\RapidFormBundle\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Ansien\\RapidFormBundle\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-coverage": "vendor/bin/phpunit --coverage-html coverage",
"format": "vendor/bin/php-cs-fixer fix --allow-risky=yes"
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}