forked from guilty-as/hubspot-connector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
43 lines (43 loc) · 1.15 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
{
"name": "guilty/hubspot-connector",
"description": "Expose Hubspot API features in Twig and pull in content from your HubSpot Portal.",
"type": "craft-plugin",
"version": "1.0.4",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"hubspot connector"
],
"license": "MIT",
"authors": [
{
"name": "Guilty AS",
"homepage": "https://guilty.no"
}
],
"require": {
"craftcms/cms": "^3.0.0-RC1",
"ryanwinchester/hubspot-php": "~1.0",
"kevinrob/guzzle-cache-middleware": "3.2.1"
},
"autoload": {
"psr-4": {
"Guilty\\HubspotConnector\\": "src/"
}
},
"extra": {
"name": "HubSpot Connector",
"handle": "hubspot-connector",
"hasCpSettings": true,
"hasCpSection": false,
"developer": "Guilty AS",
"developerEmail": "[email protected]",
"developerUrl": "https://guilty.no",
"components": {
"hubspot": "Guilty\\HubspotConnector\\services\\Hubspot"
},
"class": "Guilty\\HubspotConnector\\HubspotConnector"
}
}