forked from thephpleague/openapi-psr7-validator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
58 lines (58 loc) · 1.71 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
48
49
50
51
52
53
54
55
56
57
58
{
"name": "madwire-media/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": "*",
"devizzent/cebe-php-openapi": "^1.0",
"league/uri": "^6.3 || ^7.0",
"psr/cache": "^1.0 || ^2.0 || ^3.0",
"psr/http-message": "^1.0 || ^2.0",
"psr/http-server-middleware": "^1.0",
"respect/validation": "^1.1.3 || ^2.0",
"riverline/multipart-parser": "^2.0.3",
"symfony/polyfill-php80": "^1.27",
"webmozart/assert": "^1.4"
},
"require-dev": {
"doctrine/coding-standard": "^8.0",
"guzzlehttp/psr7": "^2.0",
"hansott/psr7-cookies": "^3.0.2 || ^4.0",
"phpstan/extension-installer": "^1.0",
"phpstan/phpstan": "^1",
"phpstan/phpstan-phpunit": "^1",
"phpstan/phpstan-webmozart-assert": "^1",
"phpunit/phpunit": "^7 || ^8 || ^9",
"symfony/cache": "^5.1"
},
"repositories": [
{
"type": "composer",
"url": "https://madwire.jfrog.io/artifactory/api/composer/composer-local"
}
],
"config": {
"sort-packages": true,
"allow-plugins": true
},
"prefer-stable": true
}