LaravelPackages.net
Acme Inc.
Toggle sidebar
darkin1/intercom

Wrapper on the Intercom class provided by Intercom - with support for Laravel 5.x, 6.x, 7.x

87.901
15
v3.0.0
About darkin1/intercom

darkin1/intercom is a Laravel package for wrapper on the intercom class provided by intercom - with support for laravel 5.x, 6.x, 7.x. It currently has 15 GitHub stars and 87.901 downloads on Packagist (latest version v3.0.0). Install it with composer require darkin1/intercom. Discover more Laravel packages by darkin1 or browse all Laravel packages to compare alternatives.

Last updated

Intercom

Latest Stable Version Donate StyleCI Build Status

Wrapper on the Intercom class provided by Intercom - with support for Laravel 5.x, 6.x, 7.x, 8.x

Installation

Installation using composer:

composer require darkin1/intercom

And add the service provider in config/app.php:

Darkin1\Intercom\IntercomServiceProvider::class,

And add the facade alias in config/app.php:

'Intercom'  => Darkin1\Intercom\Facades\Intercom::class,

Configuration

Change your default settings in app/config/intercom.php:

<?php
return [
    'access_token' => env('INTERCOM_ACCESS_TOKEN', '****'),
    'api_version' => env('INTERCOM_API_VERSION', '1.1'),
];

Review the official docs to see the list of available intercom api versions

Example


use Intercom;

$users = Intercom::users()->getUsers([]);

$leads = Intercom::leads()->getLeads([]);

Documentation

Intercom API

Comments