-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathcomposer.json
40 lines (40 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
{
"name": "fr3d/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.2",
"ext-json": "*",
"justinrainbow/json-schema": "^5",
"phpunit/phpunit": "^8.0||^9.0",
"rize/uri-template": "^0.3.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"guzzlehttp/guzzle": "^7.0",
"psr/http-message": "^1.0",
"symfony/http-foundation": ">=3.4"
},
"suggest": {
"symfony/http-foundation": "For Symfony constraints"
},
"autoload": {
"psr-4": {
"FR3D\\SwaggerAssertions\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"FR3D\\SwaggerAssertions\\": "tests/"
}
}
}