-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
46 lines (46 loc) · 1.21 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
{
"name": "mckltech/thinkific-php",
"description": "Thinkific API client. Requires Guzzle 6 or 7 (Or HTTP client of your choice)",
"keywords": [
"api",
"guzzle",
"thinkific"
],
"license": "Apache-2.0",
"authors": [
{
"name": "Highways.io",
"homepage": "https://www.highways.io"
}
],
"support": {
"issues": "https://github.com/MCKLtech/thinkific-php/issues",
"source": "https://github.com/MCKLtech/thinkific-php"
},
"autoload": {
"psr-4": {
"Thinkific\\": [
"src"
]
}
},
"require": {
"php": "^7.3|^8.0",
"ext-json": "*",
"php-http/client-common": "^1.9 || ^2.0",
"php-http/client-implementation": "^1.0",
"php-http/discovery": "^1.4",
"php-http/httplug": "^1.0 || ^2.0",
"php-http/message": "^1.7",
"psr/http-message": "^1.0"
},
"require-dev": {
"guzzlehttp/psr7": "^1.7.0",
"php-http/mock-client": "^1.4",
"phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
"squizlabs/php_codesniffer": "^3.1"
},
"config": {
"sort-packages": true
}
}