LaravelPackages.net
Acme Inc.
Toggle sidebar
slaughter550/intercom-laravel

Laravel 5.x wrapper for Intercom-PHP

15.349
7
3.2.0
About slaughter550/intercom-laravel

slaughter550/intercom-laravel is a Laravel package for laravel 5.x wrapper for intercom-php. It currently has 7 GitHub stars and 15.349 downloads on Packagist (latest version 3.2.0). Install it with composer require slaughter550/intercom-laravel. Discover more Laravel packages by slaughter550 or browse all Laravel packages to compare alternatives.

Last updated

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]'
]);

Star History Chart