Package Data | |
---|---|
Maintainer Username: | zizou86 |
Maintainer Contact: | aziz.trabelsi@gmail.com (Aziz Trabelsi) |
Package Create Date: | 2017-08-17 |
Package Last Update: | 2017-08-18 |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-11-23 03:03:13 |
Package Statistics | |
---|---|
Total Downloads: | 15,929 |
Monthly Downloads: | 202 |
Daily Downloads: | 2 |
Total Stars: | 5 |
Total Watchers: | 1 |
Total Forks: | 1 |
Total Open Issues: | 1 |
Start send sms with Unifonic right away using your favorite PHP framework.
composer require zizou86/laravel-unifonic
.
Add the service provider to your config/app.php
:
'providers' => [
Zizou86\Unifonic\UnifonicServiceProvider::class,
],
...run php artisan vendor:publish
to copy the config file.
Edit the config/unifonic.php
or add Unifonic app id in your .env
file
UNIFONIC_APPS_ID={YOUR_DEFAULT_APP_ID}
Add the alias to your config/app.php
:
'aliases' => [
'Unifonic' => Zizou86\Unifonic\Unifonic::class,
],
Please refer to the Api Documentation for more info, or read the docblocks !
use Zizou86\Unifonic\Unifonic;
// messages API methods
Unifonic::send(int $recipient,string $message);
Unifonic::sendBulk(array $recipient, string $message);
Unifonic::getMessageIDStatus(int $messageId);
Unifonic::getBalance();
If you use many apps id, you can do this :
use Zizou86\Unifonic\Unifonic;
$sms = new App('second');
The key 'second' will be defined in your config/unifonic.php
'appsid' => [
'default' => env('UNIFONIC_APPS_ID', ''),
'second' => env('UNIFONIC_SECOND_APPS_ID', '')
],