-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
35 lines (35 loc) · 1.3 KB
/
composer.json
File metadata and controls
35 lines (35 loc) · 1.3 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
{
"name": "choz/request-validation-bundle",
"description": "a bundle that's inspired in Laravel request validation",
"keywords": ["request", "symfony", "bundle", "validation", "validate", "validator", "api"],
"homepage": "https://github.com/ferchoz/request-validation-bundle",
"license": "MIT",
"type": "symfony-bundle",
"autoload": {
"psr-4": {
"Choz\\RequestValidationBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Choz\\RequestValidationBundle\\Tests\\": "tests/"
}
},
"require": {
"php": ">=7.4 || ^8.0",
"symfony/framework-bundle": "^4.3 || ^5.0 || ^6.0",
"symfony/validator": "^4.3 || ^5.0 || ^6.0",
"symfony/property-access": "^4.3 || ^5.0 || ^6.0",
"adbario/php-dot-notation": "^3.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"phpstan/phpstan": "1.9.1"
},
"scripts": {
"format": "tools/php-cs-fixer/vendor/bin/php-cs-fixer fix --config=tools/php-cs-fixer/.php-cs-fixer.dist.php --verbose --show-progress=dots",
"stan": "vendor/bin/phpstan analyse src tests --level=max",
"test": "vendor/bin/phpunit tests",
"test-coverage": "XDEBUG_MODE=coverage vendor/bin/phpunit tests --coverage-html=coverage"
}
}