| Package Data | |
|---|---|
| Maintainer Username: | gentor |
| Maintainer Contact: | evgeni.nurkov@gmail.com (Evgeni Nurkov) |
| Package Create Date: | 2016-09-27 |
| Package Last Update: | 2017-10-23 |
| Home Page: | |
| Language: | PHP |
| License: | MIT |
| Last Refreshed: | 2025-10-30 15:00:55 |
| Package Statistics | |
|---|---|
| Total Downloads: | 2,017 |
| Monthly Downloads: | 0 |
| Daily Downloads: | 0 |
| Total Stars: | 1 |
| Total Watchers: | 1 |
| Total Forks: | 0 |
| Total Open Issues: | 0 |
Wrapper on the Intercom class provided by Intercom - with custom methods and support for Laravel 5.x
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,
Change your default settings in app/config/intercom.php:
<?php
return [
'app_id' => env('INTERCOM_APP_ID', '****'),
'api_key' => env('INTERCOM_API_KEY', '********'),
];