forked from Maks3w/SwaggerAssertions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
40 lines (40 loc) · 1.04 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
{
"name": "ac-dc/swagger-assertions",
"description": "Test your API requests and responses against your swagger definition",
"keywords": [
"api",
"assertion",
"phpunit",
"swagger",
"test",
"testing"
],
"license": "BSD-2-Clause",
"homepage": "https://github.com/Maks3w/SwaggerAssertions",
"require": {
"php": ">= 7.1",
"justinrainbow/json-schema": "^5",
"phpunit/phpunit": "^6.0||^7.0||^8",
"rize/uri-template": "^0.3.0",
"zendframework/zend-http": "2.5 - 3"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.0",
"guzzlehttp/guzzle": "^6.0",
"psr/http-message": "^1.0",
"symfony/http-foundation": "2.7 - 3"
},
"suggest": {
"symfony/http-foundation": "For Symfony constraints"
},
"autoload": {
"psr-4": {
"FR3D\\SwaggerAssertions\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"FR3D\\SwaggerAssertions\\": "tests/"
}
}
}