forked from Saritasa/php-openapi-testing
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
62 lines (62 loc) · 1.58 KB
/
Copy pathcomposer.json
File metadata and controls
62 lines (62 loc) · 1.58 KB
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
59
60
61
62
{
"name": "devalto/openapi-httpfoundation-testing",
"type": "library",
"description": "Strengthen your API tests by validating HttpFoundation responses against OpenAPI (3.0.x) definitions",
"keywords": [
"openapi",
"httpfoundation",
"symfony",
"laravel",
"http",
"validation",
"testing",
"api"
],
"homepage": "https://github.com/osteel/openapi-httpfoundation-testing",
"license": "MIT",
"authors": [
{
"name": "Yannick Chenot",
"email": "hello@yannickchenot.com",
"homepage": "https://github.com/osteel",
"role": "Maintainer"
}
],
"require": {
"php": "^7.2",
"ext-json": "*",
"league/openapi-psr7-validator": "^0.12.1",
"nyholm/psr7": "^1.3",
"psr/http-message": "^1.0",
"symfony/http-foundation": "^4.4 || ^5.0",
"symfony/psr-http-message-bridge": "^2.0"
},
"require-dev": {
"phpunit/phpunit" : ">=8.0",
"squizlabs/php_codesniffer": "^3.5"
},
"autoload": {
"psr-4": {
"Osteel\\OpenApi\\Testing\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Osteel\\OpenApi\\Testing\\Tests\\": "tests"
}
},
"scripts": {
"test": "phpunit",
"check-style": "phpcs src tests",
"fix-style": "phpcbf src tests"
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"config": {
"sort-packages": true
},
"prefer-stable": true
}