slaughter550/intercom-laravel

Laravel 5.x wrapper for Intercom-PHP

Downloads

15327

Stars

7

Version

3.2.0

intercom-laravel

Laravel 5.x Wrapper for Intercom API

Installation

Using Composer:

composer require slaughter550/intercom-laravel

Configuration

config/app.php

'providers' => [
    'Shadow\IntercomLaravel\ServiceProvider',
],
'aliases' => [
    'Intercom' => 'Shadow\IntercomLaravel\Facade',
],

config/services.php

'intercom' => [
    'app_id' => 'appIdGoesHere',
    'api_key' => 'apiKeyGoesHere',
],

Usage

// Create/update a user
Intercom::users()->create([
    'email' => '[email protected]'
]);
slaughter550

Author

slaughter550