vemcogroup / laravel-smsapi
Laravel implementation to easy sent sms via SMSAPI
Installs: 5 279
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 2
Forks: 3
Open Issues: 1
Requires
- php: ^8.0
- laravel/framework: ^7.0|^8.0|^9.0
- smsapi/php-client: ^3.0
README
Description
This package allows you to quickly send SMS in Laravel via the SMSAPI service.
This is first version and only support to send SMS.
Further versions will support more of SMSAPI features.
Remember to register an account at SMSAPI before using this package.
Installation
You can install the package via composer:
composer require vemcogroup/laravel-smsapi
The package will automatically register its service provider.
To publish the config file to config/translation.php
run:
php artisan vendor:publish --provider="Vemcogroup\SmsApi\SmsApiServiceProvider"
This is the default contents of the configuration:
return [ /* |-------------------------------------------------------------------------- | Token |-------------------------------------------------------------------------- | | Here you define your API TOKEN for smsapi | | More info: https://www.smsapi.com/docs/#authentication | */ 'token' => env('SMSAPI_TOKEN'), ];
Usage
You are now able to send sms with this code
use Vemcogroup\SmsApi\SmsApi; SmsApi::send($to, $from, $message);