gentor / intercom
Wrapper on the Intercom class provided by Intercom - with custom methods and support for Laravel 5.x
Installs: 2 015
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 2
Forks: 0
Open Issues: 0
Requires
- php: >= 5.6
- intercom/intercom-php: ^3.0
This package is auto-updated.
Last update: 2024-11-09 14:27:00 UTC
README
Wrapper on the Intercom class provided by Intercom - with custom methods and support for Laravel 5.x
Installation
Installation using composer:
composer require gentor/intercom
Add the service provider in config/app.php
:
Gentor\Intercom\IntercomServiceProvider::class,
Add the facade alias in config/app.php
:
Gentor\Intercom\Facades\Intercom::class,
Configuration
Change your default settings in app/config/intercom.php
:
<?php return [ 'app_id' => env('INTERCOM_APP_ID', '****'), 'api_key' => env('INTERCOM_API_KEY', '********'), ];