forked from thephpleague/openapi-psr7-validator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
46 lines (46 loc) · 1.24 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
{
"name": "league/openapi-psr7-validator",
"description": "Validate PSR-7 messages against OpenAPI (3.0.2) specifications \nexpressed in YAML or JSON",
"keywords": [
"OpenAPI",
"psr7",
"http",
"validation"
],
"homepage": "https://github.com/thephpleague/openapi-psr7-validator",
"license": "MIT",
"type": "library",
"autoload": {
"psr-4": {
"League\\OpenAPIValidation\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"League\\OpenAPIValidation\\Tests\\": "tests/"
}
},
"require": {
"php": ">=7.2",
"ext-json": "*",
"cebe/php-openapi": "^1.3",
"hansott/psr7-cookies": "^3.0.2",
"league/uri": "^6.3",
"psr/cache": "^1.0",
"psr/http-message": "^1.0",
"psr/http-server-middleware": "^1.0",
"respect/validation": "^1.1.3",
"riverline/multipart-parser": "^2.0.3",
"webmozart/assert": "^1.4"
},
"require-dev": {
"doctrine/coding-standard": "^8.0",
"guzzlehttp/psr7": "^1.5",
"phpunit/phpunit": "^7|^8|^9",
"symfony/cache": "^5.1"
},
"config": {
"sort-packages": true
},
"prefer-stable": true
}