-
Notifications
You must be signed in to change notification settings - Fork 196
/
composer.json
37 lines (37 loc) · 928 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
{
"name": "hubspot/hubspot-php",
"version": "5.3.0",
"description": "HubSpot PHP API client",
"keywords": [ "hubspot", "api" ],
"license": "Apache-2.0",
"authors": [
{
"name": "Ryan Winchester",
"email": "[email protected]",
"homepage": "http://ryanwinchester.ca"
}
],
"require": {
"php": ">=7.3",
"ext-json": "*",
"guzzlehttp/guzzle": "^7.3",
"psr/http-message": "^1.1 || ^2.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.4",
"phpunit/phpunit": "^9.5",
"phpspec/phpspec": "^7.1"
},
"autoload": {
"psr-4": {
"SevenShores\\Hubspot\\": "src/"
},
"files": [ "src/helpers.php" ]
},
"autoload-dev": {
"psr-4": {
"SevenShores\\Hubspot\\Tests\\": "tests/"
}
},
"minimum-stability": "stable"
}