-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
47 lines (47 loc) · 1.21 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
{
"name": "meetmatt/open-api-coverage",
"description": "OpenAPI specification coverage",
"keywords": [
"openapi",
"coverage"
],
"type": "library",
"license": "MIT",
"minimum-stability": "stable",
"authors": [
{
"name": "Yuriy Golikov",
"email": "[email protected]"
}
],
"require": {
"php": "^8.2",
"ext-json": "*",
"cebe/php-openapi": "^1.7",
"psr/http-message": "^2.0",
"symfony/console": "^7.1"
},
"require-dev": {
"codeception/codeception": "^5.1",
"codeception/module-asserts": "^3.0",
"guzzlehttp/psr7": "^2.7"
},
"autoload": {
"psr-4": {
"MeetMatt\\OpenApiSpecCoverage\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"MeetMatt\\OpenApiSpecCoverage\\Test\\Suite\\Integration\\": "test/suite/integration",
"MeetMatt\\OpenApiSpecCoverage\\Test\\Suite\\Unit\\": "test/suite/unit",
"MeetMatt\\OpenApiSpecCoverage\\Test\\Support\\": "test/support"
}
},
"config": {
"sort-packages": true,
"platform": {
"php": "8.2.5"
}
}
}