-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
47 lines (47 loc) · 1.38 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
{
"name": "eleven-labs/api-validator",
"description": "Validate PSR-7 Requests against an OpenAPI/Swagger2 Schema",
"authors": [
{
"name": "Guillem CANAL",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"ElevenLabs\\Api\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ElevenLabs\\Api\\": "tests/"
},
"files": [
"vendor/phpunit/phpunit/src/Framework/Assert/Functions.php"
]
},
"require": {
"php": "^5.6 || ^7.0",
"ext-json": "*",
"psr/http-message": "^1.0",
"psr/cache": "^1.0",
"justinrainbow/json-schema": "^2.0",
"rize/uri-template": "^0.3.0"
},
"require-dev": {
"phpunit/phpunit": "^5.4 || ^7.4",
"guzzlehttp/psr7": "^1.3",
"squizlabs/php_codesniffer": "^3.3",
"symfony/yaml": "^2.7 || ^3.4 || ^4.0",
"symfony/serializer": "^2.7 || ^3.4 || ^4.0"
},
"scripts": {
"test": "vendor/bin/phpunit --disallow-test-output --coverage-text --colors=always",
"cs": "vendor/bin/phpcs",
"phpstan": "sh .travis.analyze.sh"
},
"suggest": {
"symfony/yaml": "Allow the SwaggerSchemaFactory to handle YAML files",
"symfony/serializer": "Implementation that can decode JSON or XML request bodies"
}
}