-
Notifications
You must be signed in to change notification settings - Fork 82
/
composer.json
40 lines (40 loc) · 924 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
{
"name": "hubspot/api-client",
"version": "12.0.0",
"description": "Hubspot API client",
"keywords": [
"hubspot",
"swagger",
"php",
"sdk",
"api"
],
"homepage": "https://hubspot.com/",
"license": "Apache-2.0",
"authors": [
{
"name": "HubSpot",
"homepage": "https://hubspot.com/"
}
],
"require": {
"php": ">=7.4",
"ext-curl": "*",
"ext-json": "*",
"ext-mbstring": "*",
"guzzlehttp/guzzle": "^7.3",
"guzzlehttp/psr7": "^1.7 || ^2.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.4",
"phpunit/phpunit": "^9.5",
"phpspec/phpspec": "^7.1"
},
"autoload": {
"psr-4": {
"HubSpot\\Client\\" : "codegen/",
"HubSpot\\" : "lib/",
"Hubspot\\Tests\\": "tests/"
}
}
}