fungku / laravel-hubspot
PHP HubSpot API wrapper for Laravel 4
Installs: 25 903
Dependents: 0
Suggesters: 0
Security: 0
Stars: 9
Watchers: 5
Forks: 4
Open Issues: 0
Requires
- fungku/hubspot: 1.0.*
This package is not auto-updated.
Last update: 2024-10-29 11:03:31 UTC
README
PHP HubSpot API package for Laravel 4
Most of the hard-working code is modified classes from HubSpot/haPiHP.
Setup
In composer.json:
"require": {
"fungku/laravel-hubspot": "1.1.*"
}
then run composer install
or composer update
Open app/config/app.php
and add this to the providers array:
'Fungku\HubSpot\HubSpotServiceProvider',
TO SET YOUR API KEY:
Run the following command: $ php artisan config:publish fungku/laravel-hubspot
This will generate a config file to: app/config/packages/fungku/laravel-hubspot/api.php
You can then update this file with your api key from HubSpot and set the user agent.
You could also set an environment variable called, HUBSPOT_APIKEY
Examples
Contacts:
$contacts = HubSpot::contacts(); // Get 100 contacts $contacts->get_all_contacts(array('count'=>100)); // Get a contact by email address $contacts->get_contact_by_email('example@somedomain.com');
Lists
$lists = HubSpot::lists(); // Get 20 lists $lists->get_lists(array('count'=>20));