-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
36 lines (36 loc) · 834 Bytes
/
composer.json
File metadata and controls
36 lines (36 loc) · 834 Bytes
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
{
"name": "basekit/php-api-client",
"description": "BaseKit PHP API client.",
"license": "MIT",
"authors": [
{
"name": "Simon Best",
"email": "simon@basekit.com"
},
{
"name": "Ade Slade",
"email": "adrian.slade@basekit.com"
}
],
"minimum-stability": "dev",
"autoload": {
"psr-4": {
"BaseKit\\Api\\": "src/"
}
},
"require": {
"guzzlehttp/guzzle": "7.*",
"guzzlehttp/guzzle-services": "1.3.*",
"guzzlehttp/command": "1.2.*",
"guzzlehttp/oauth-subscriber": "0.6.*"
},
"require-dev": {
"squizlabs/php_codesniffer": "3.*",
"phpunit/phpunit": "^9.5"
},
"config": {
"platform": {
"php": "8.0.0"
}
}
}