jorisvanw/intercom-laravel

Laravel Intercom PHP wrapper

Downloads

42

Stars

0

Version

4.0.3

intercom-laravel

Laravel 5.x Wrapper for Intercom API

Installation

Using Composer:

composer require jorisvanw/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]'
]);
JorisvanW

Author

JorisvanW