-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
41 lines (41 loc) · 1016 Bytes
/
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
{
"name": "jdecool/clubhouse-api",
"type": "library",
"description": "PHP SDK for Clubhouse",
"license": "MIT",
"authors": [
{
"name": "Jérémy DECOOL",
"email": "contact@jdecool.fr"
}
],
"require": {
"php": "^7.3|^8.0",
"ext-json": "*",
"php-http/client-common": "^2.3",
"php-http/discovery": "^1.12",
"php-http/httplug": "^2.1"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0.0",
"guzzlehttp/guzzle": "^7.0",
"http-interop/http-factory-guzzle": "^1.0",
"nunomaduro/collision": "^5.0",
"pestphp/pest": "^1.20",
"phpstan/phpstan": "^0.12",
"phpunit/phpunit": "^9.0"
},
"autoload": {
"psr-4": {
"JDecool\\Clubhouse\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"JDecool\\Clubhouse\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true
}
}