-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
58 lines (58 loc) · 1.99 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
{
"name": "digitalrevolution/symfony-request-validation",
"description": "Automatic request validation for symfony",
"type": "symfony-bundle",
"license": "MIT",
"minimum-stability": "stable",
"config": {
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true
},
"lock": false
},
"require": {
"php": ">=8.1",
"symfony/config": "^6.2 || ^7.0",
"symfony/dependency-injection": "^6.2 || ^7.0",
"symfony/http-foundation": "^6.2 || ^7.0",
"symfony/http-kernel": "^6.2 || ^7.0",
"symfony/validator": "^6.2 || ^7.0",
"digitalrevolution/symfony-validation-shorthand": "^1.2"
},
"require-dev": {
"digitalrevolution/phpunit-file-coverage-inspection": "^v2.0.0",
"roave/security-advisories": "dev-latest",
"squizlabs/php_codesniffer": "^3.6",
"phpmd/phpmd": "^2.14",
"phpunit/phpunit": "^9.6",
"phpstan/phpstan": "^2.0",
"phpstan/phpstan-phpunit": "^2.0",
"phpstan/phpstan-strict-rules": "^2.0",
"phpstan/phpstan-symfony": "^2.0",
"phpstan/extension-installer": "^1.3"
},
"autoload": {
"psr-4": {
"DigitalRevolution\\SymfonyRequestValidation\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"DigitalRevolution\\SymfonyRequestValidation\\Tests\\": "tests/"
}
},
"scripts": {
"baseline": ["@baseline:phpstan"],
"baseline:phpstan": "phpstan --generate-baseline",
"check": ["@check:phpstan", "@check:phpmd", "@check:phpcs"],
"check:phpstan": "phpstan analyse",
"check:phpmd": "phpmd src,tests text phpmd.xml.dist --suffixes php",
"check:phpcs": "phpcs src tests",
"fix": "@fix:phpcbf",
"fix:phpcbf": "phpcbf src tests",
"test": "phpunit",
"test:integration": "phpunit --testsuite integration",
"test:unit": "phpunit --testsuite unit"
}
}