forked from PaddleHQ/openapi-validator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (42 loc) · 1.02 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
{
"name": "paddlehq/openapi-validator",
"type": "package",
"description": "Validate Responses against an OpenApi v3 schema",
"keywords": ["openapi","swagger", "json-schema", "psr-7"],
"homepage": "https://github.com/PaddleHQ/open-api-validator",
"license": "Apache-2.0",
"authors": [
{
"name": "Paddle.com",
"email": "engineering@paddle.com",
"homepage": "https://www.paddle.com"
},
{
"name": "Daniel Fosbery",
"email": "daniel@paddle.com",
"homepage": "https://www.paddle.com",
"role": "Developer"
}
],
"require": {
"php": "^7.1",
"psr/http-message": "^1.0",
"justinrainbow/json-schema": "^5.2"
},
"require-dev": {
"phpunit/phpunit": "~7.0",
"guzzlehttp/guzzle": "~6.0",
"sempro/phpunit-pretty-print": "^1.0",
"friendsofphp/php-cs-fixer": "^2.12"
},
"autoload": {
"psr-4": {
"PaddleHq\\OpenApiValidator\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"PaddleHq\\OpenApiValidator\\Tests\\": "tests"
}
}
}