-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
45 lines (45 loc) · 1.33 KB
/
composer.json
File metadata and controls
45 lines (45 loc) · 1.33 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
{
"name": "studio-design/openapi-contract-testing",
"description": "Framework-agnostic OpenAPI 3.0/3.1 contract testing for PHPUnit with endpoint coverage tracking",
"keywords": ["openapi", "contract-testing", "phpunit", "api-testing", "coverage"],
"license": "MIT",
"type": "library",
"require": {
"php": "^8.2",
"opis/json-schema": "^2.6",
"phpunit/phpunit": "^11.0 || ^12.0 || ^13.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.94",
"illuminate/testing": "^11.0 || ^12.0",
"phpstan/phpstan": "^2.0"
},
"suggest": {
"illuminate/testing": "Required for the Laravel adapter (ValidatesOpenApiSchema trait)"
},
"autoload": {
"psr-4": {
"Studio\\OpenApiContractTesting\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Studio\\OpenApiContractTesting\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"extra": {
"laravel": {
"providers": [
"Studio\\OpenApiContractTesting\\Laravel\\OpenApiContractTestingServiceProvider"
]
}
},
"minimum-stability": "stable",
"prefer-stable": true
}