-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
50 lines (50 loc) · 1.5 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
48
49
50
{
"name": "eleven-labs/api-service",
"authors": [
{
"name": "Guillem CANAL",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"ElevenLabs\\Api\\Service\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ElevenLabs\\Api\\Service\\": "tests/"
},
"files": [
"vendor/phpunit/phpunit/src/Framework/Assert/Functions.php"
]
},
"require": {
"php": "^5.6 || ^7.0",
"ext-json": "*",
"php-http/httplug": "^1.0",
"php-http/message": "^1.3",
"eleven-labs/api-validator": "^0.5",
"beberlei/assert": "^2.6"
},
"require-dev": {
"phpunit/phpunit": "^5.4 || ^7.4",
"symfony/serializer": "^2.7 || ^3.4 || ^4.0",
"symfony/property-access": "^2.7 || ^3.4 || ^4.0",
"symfony/yaml": "^2.7 || ^3.4 || ^4.0",
"php-http/mock-client": "^0.3.2",
"php-http/guzzle6-adapter": "^1.1",
"guzzlehttp/psr7": "^1.3",
"tedivm/stash": "^0.14.1",
"squizlabs/php_codesniffer": "^3.3"
},
"suggest": {
"tedivm/stash": "PSR-6 Cache implementation tp store an API Schema in cache",
"symfony/cache": "PSR-6 Cache implementation to store an API Schema in cache"
},
"scripts": {
"test": "vendor/bin/phpunit --disallow-test-output --coverage-text --colors=always",
"cs": "vendor/bin/phpcs",
"phpstan": "sh .travis.analyze.sh"
}
}