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

Laravel Intercom PHP wrapper

44
0
4.0.3
About jorisvanw/intercom-laravel

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

Last updated

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

Star History Chart