-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
34 lines (34 loc) · 982 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
33
34
{
"name": "ferror/openapi-coverage",
"type": "library",
"license": "MIT",
"require": {
"php": "^8.2",
"nelmio/api-doc-bundle": "^4.12",
"symfony/console": "^5.4 || ^6.4",
"symfony/dependency-injection": "^5.4 || ^6.4",
"symfony/http-kernel": "^5.4 || ^6.4",
"symfony/routing": "^5.4 || ^6.4"
},
"require-dev": {
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-symfony": "^1.3",
"phpstan/phpstan-phpunit": "^1.3",
"phpunit/phpunit": "^10.5"
},
"autoload": {
"psr-4": {
"Ferror\\OpenapiCoverage\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Ferror\\OpenapiCoverage\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"coverage": "vendor/bin/phpunit --coverage-html=var/coverage --coverage-clover var/coverage/clover.xml",
"analyse": "vendor/bin/phpstan analyse"
}
}