seansch / interspire
Interspire API Wrapper for Laravel 5
Installs: 142
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 1
Open Issues: 0
pkg:composer/seansch/interspire
Requires
- php: >=5.4.0
- guzzlehttp/guzzle: ^6.0
This package is not auto-updated.
Last update: 2025-12-07 00:17:51 UTC
README
Installation
First, pull in the package through Composer.
"require": { "seansch/interspire": "dev-master" }
And then, if using Laravel 5, include the service provider within app/config/app.php.
'providers' => [ 'Seansch\Interspire\InterspireServiceProvider' ];
And, for convenience, add a facade alias to this same file at the bottom:
'aliases' => [ 'Interspire' => 'Seansch\Interspire\InterspireFacade' ];
Publish the config file app/config/interspire.php and edit with your details
php artisan vendor:publish
Usage
Returns bool based on success
$result = Interspire::addSubscriberToList($email, $list_id, array $fields); $result = Interspire::deleteSubscriber($email, $list_id) $result = Interspire::isOnList($email, $list_id) $result = Interspire::getCustomFields($list_id)