forked from egeloen/ivory-ordered-form
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
32 lines (32 loc) · 902 Bytes
/
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
{
"name": "shopsys/ordered-form",
"description": "Provides a form ordering support with the Symfony Form component.",
"keywords": [ "symfony", "form", "order" ],
"license": "MIT",
"authors": [
{
"name": "Eric GELOEN",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1",
"symfony/form": "^4.0|^5.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.0",
"phpunit/phpunit": "^9.5",
"symfony/phpunit-bridge": "^4.0|^5.0",
"phpstan/phpstan": "^1.8"
},
"autoload": {
"psr-4": { "Ivory\\OrderedForm\\": "src/" }
},
"autoload-dev": {
"psr-4": { "Ivory\\Tests\\OrderedForm\\": "tests/" }
},
"scripts": {
"phpstan": "phpstan analyse --level=5 src tests",
"tests": "SYMFONY_DEPRECATIONS_HELPER=weak phpunit"
}
}