-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
49 lines (49 loc) · 1.05 KB
/
composer.json
File metadata and controls
49 lines (49 loc) · 1.05 KB
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
{
"name": "gohighlevel/api-client",
"description": "Official PHP SDK for the GoHighLevel API",
"keywords": [
"gohighlevel",
"highlevel",
"ghl",
"api",
"sdk",
"php",
"crm",
"marketing"
],
"homepage": "https://github.com/gohighlevel/highlevel-api-php",
"license": "MIT",
"authors": [
{
"name": "GoHighLevel",
"homepage": "https://www.gohighlevel.com"
}
],
"require": {
"php": ">=7.4",
"ext-json": "*",
"guzzlehttp/guzzle": "^7.0",
"mongodb/mongodb": "^2.0"
},
"suggest": {
"ext-curl": "Recommended for better HTTP performance with Guzzle",
"ext-mongodb": "Required for MongoDB session storage support"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.89",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^9.5",
"squizlabs/php_codesniffer": "^3.7"
},
"autoload": {
"psr-4": {
"HighLevel\\": "lib/"
}
},
"config": {
"sort-packages": true,
"optimize-autoloader": true
},
"minimum-stability": "stable",
"prefer-stable": true
}