-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathcomposer.json
More file actions
37 lines (37 loc) · 963 Bytes
/
composer.json
File metadata and controls
37 lines (37 loc) · 963 Bytes
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
{
"name": "cydrickn/openapi-validator-bundle",
"description": "Open Api Generator and Validator",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Cydrick Nonog",
"email": "cydrick.dev@gmail.com"
}
],
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Cydrickn\\OpenApiValidatorBundle\\": ""
}
},
"autoload-dev": {
"psr-4": {
"Cydrickn\\OpenApiValidatorBundle\\Tests\\": "/Tests"
}
},
"require": {
"php": "^7.4|^8.0",
"ext-json": "*",
"psr/http-message": "^1.0",
"symfony/framework-bundle": "^5.1",
"league/openapi-psr7-validator": "^0.16.0",
"symfony/psr-http-message-bridge": "^2.0",
"nyholm/psr7": "^1.3"
},
"require-dev": {
"symfony/phpunit-bridge": "^5.1",
"phpunit/phpunit": "^9.2",
"ext-pcov": "*"
}
}