-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
73 lines (73 loc) · 2.02 KB
/
composer.json
File metadata and controls
73 lines (73 loc) · 2.02 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "phauthentic/phpunit-openapi-assertions",
"type": "library",
"require": {
"php": "^8.1",
"league/openapi-psr7-validator": "^0.22.0"
},
"require-dev": {
"nyholm/psr7": "^1.0",
"phpmd/phpmd": "^2.15",
"phpstan/phpstan": "^2.1",
"phpunit/phpunit": "^10.0||^11.0||^12.0",
"squizlabs/php_codesniffer": "^3.13",
"symfony/http-foundation": "^6.0||^7.0",
"symfony/phpunit-bridge": "^7.2",
"symfony/psr-http-message-bridge": "^6.0||^7.0",
"symfony/test-pack": "^1.0"
},
"suggest": {
"nyholm/psr7": "f you want to use Symfony's HTTP Foundation Response and Request Objects",
"symfony/psr-http-message-bridge": "f you want to use Symfony's HTTP Foundation Response and Request Objects",
"symfony/http-foundation": "If you want to use Symfony's HTTP Foundation Response and Request Objects"
},
"license": "MIT",
"authors": [
{
"name": "Florian Krämer"
}
],
"autoload": {
"psr-4": {
"Phauthentic\\PHPUnit\\OpenAPIValidator\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Phauthentic\\PHPUnit\\OpenAPIValidator\\Tests\\": "tests/"
}
},
"minimum-stability": "stable",
"prefer-stable": true,
"config": {
"sort-packages": true,
"optimize-autoloader": true,
"bin-dir": "bin"
},
"scripts": {
"test": [
"phpunit"
],
"test-coverage": [
"phpunit --coverage-text"
],
"test-coverage-html": [
"phpunit --coverage-html tmp/coverage/"
],
"cscheck": [
"phpcs src/ tests/ -s --standard=phpcs.xml"
],
"csfix": [
"phpcbf src/ tests/"
],
"analyze": [
"phpstan analyse src/"
],
"analyse": [
"phpstan analyse src/"
],
"phpmd": [
"bin/phpmd ./src/ text phpmd.xml"
]
}
}