forked from HubSpot/hubspot-php
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
34 lines (34 loc) · 859 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
{
"name": "felixmaier1989/hubspot-php",
"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": ">=5.5.0",
"guzzlehttp/guzzle": "~6.0"
},
"require-dev": {
"phpspec/phpspec": "~2.0",
"phpunit/phpunit": "~4.0",
"codeclimate/php-test-reporter": " dev-master@dev"
},
"autoload": {
"psr-4": {
"SevenShores\\Hubspot\\": "src/"
},
"files": [ "src/helpers.php" ]
},
"autoload-dev": {
"psr-4": {
"SevenShores\\Hubspot\\Tests\\": "tests/"
}
},
"minimum-stability": "stable"
}