deniztezcan / laravel-channable
Laravel package for the Channable API
0.3.0
2023-07-12 07:41 UTC
Requires
- guzzlehttp/guzzle: ^6.3|^7.0
- illuminate/support: ^8.0|^9.0|^10.0
This package is auto-updated.
Last update: 2024-11-12 11:11:37 UTC
README
A Laravel package for the Channable API.
Instalation
composer require deniztezcan/laravel-channable
Add the facade to the facades array:
'aliases' => [ //other things here 'Channable' => DenizTezcan\Channable\Facades\Channable::class, ];
Finally, publish the configuration files:
php artisan vendor:publish --provider="DenizTezcan\Channable\ChannableServiceProvider"
Configuration
Please set your API key: CHANNABLE_BEARER_TOKEN
and CHANNABLE_COMPANY_ID
in your .env file.