This is a Laravel package for sms gateway integration. This package requires PHP 8.4+ and supports Laravel 12 and
Laravel 13.
Donate me if you like this package 😎 ![]()
This package works with multiple drivers, and you can create custom drivers if you can't find them in the current drivers list below.
- List of available drivers
- Install
- Configure
- How to use
- Testing
- Change log
- Contributing
- Security
- Credits
- License
| Driver | Gateway | Needs |
|---|---|---|
clockwork |
Clockwork | composer require mediaburst/clockworksms |
farazsms |
Faraz SMS | — |
kavenegar |
Kavenegar | composer require kavenegar/php |
linkmobility |
LINK Mobility | — |
melipayamak |
Melipayamak | composer require melipayamak/php |
smsgatewayme |
SMSGateway.me | composer require smsgatewayme/client |
smsir |
SMS.ir | — |
sns |
Amazon SNS | composer require aws/aws-sdk-php |
textlocal |
Textlocal | — |
tsms |
TSMS | ext-soap |
twilio |
Twilio | composer require twilio/sdk |
Only the drivers you actually use have to be installed — the package itself pulls none of the gateway SDKs in.
Via Composer
$ composer require shetabit/smsThe service provider and the Sms facade are registered by package discovery, so there is nothing to add to
config/app.php.
Publish the configuration file:
$ php artisan vendor:publish --tag=sms-configThe published config/sms.php holds three things: the driver that is used when none is named, the settings of every
driver and the class each driver name maps to.
return [
'default' => 'textlocal',
'drivers' => [
'kavenegar' => [
'apiKey' => 'Your Api Key',
'from' => 'Your Default From Number',
],
// ...
],
'map' => [
'kavenegar' => \Shetabit\Sms\Drivers\Kavenegar::class,
// ...
],
];Publishing is optional. The shipped configuration is merged in, so config('sms.drivers') is readable right after
installation and your own config/sms.php only has to carry the keys you want to change.
use Shetabit\Sms\Facades\Sms;
Sms::to(['09xxxxxxxxx'])
->message('Hello world')
->send();send() returns the answer of the gateway: for a single recipient the bare answer, for several of them a Collection
keyed by recipient number.
Sms::via('kavenegar')
->to(['09xxxxxxxxx'])
->message('Hello world')
->send();Sms::via('kavenegar')
->config('from', '10004346')
->to(['09xxxxxxxxx'])
->message('Hello world')
->send();Several settings can be handed over at once:
Sms::via('kavenegar')->config(['from' => '10004346', 'apiKey' => '...']);config() overwrites the settings of the driver that is currently selected, so call it after via().
$answers = Sms::to(['09xxxxxxxx1', '09xxxxxxxx2'])
->message('Hello world')
->send();
$answers->get('09xxxxxxxx1');Gateways that deliver from a template of their own — Kavenegar's VerifyLookup for instance — are addressed through
the message:
use Shetabit\Sms\Facades\Sms;
use Shetabit\Sms\Message;
$message = new Message('Hello world');
$message->useTemplateIfSupports('registration-verify', ['token' => '12345']);
Sms::via('kavenegar')->to(['09xxxxxxxxx'])->message($message)->send();Drivers that do not know templates ignore them and send the plain text instead.
The package ships a notification channel. Let via() return it and build the message in a toSms() method:
use Illuminate\Notifications\Notification;
use Shetabit\Sms\Channels\SmsChannel;
use Shetabit\Sms\Facades\Sms;
class OrderShipped extends Notification
{
public function via($notifiable)
{
return [SmsChannel::class];
}
public function toSms($notifiable)
{
return Sms::to([$notifiable->mobile])->message('Your order has been shipped.');
}
}toSms() has to hand back a Shetabit\Sms\Sms instance, or null to send nothing at all.
Add the settings of your driver to the drivers array and its class to the map array of config/sms.php:
'drivers' => [
'my_driver' => [
'apiKey' => '...',
'from' => '...',
],
],
'map' => [
'my_driver' => \App\Sms\MyDriver::class,
],The class has to extend Shetabit\Sms\Abstracts\Driver and implement sendTo(), which delivers the message to one
recipient and returns the answer of the gateway. Walking the list of recipients is the job of the abstract driver:
namespace App\Sms;
use Shetabit\Sms\Abstracts\Driver;
class MyDriver extends Driver
{
protected function sendTo(string $recipient) : mixed
{
return $this->client->send([
'apiKey' => $this->setting('apiKey'),
'from' => $this->setting('from'),
'to' => $recipient,
'text' => $this->message->toString(),
]);
}
}setting() and booleanSetting() read a single value out of the settings the driver was given.
Every pull request and every push to master is checked by GitHub Actions: the test suite runs on
PHP 8.4 and 8.5, against Laravel 12 and 13 and against both the lowest and the highest supported dependencies, the
coding style is checked with PHP_CodeSniffer, the sources are analysed with PHPStan and the code coverage of the test
suite is measured and has to stay above 95%.
No test talks to a gateway. The driver tests answer the HTTP calls of a driver from a queue of prepared responses, and
the drivers that go through an SDK of their own are given a fake of that SDK — see tests/Unit/Drivers/DriverTestCase.php
and tests/Fakes/. The feature tests boot a real Laravel application with Testbench and send through a driver that
records what it was asked to deliver.
You can run the same checks locally. With PHP and Composer installed on your machine:
composer install
composer test # run the test suite
composer test-coverage # run the test suite and report code coverage
composer check-style # check the coding style
composer fix-style # fix the coding style where possible
composer analyse # run static analysis
composer ci # run all of the checks aboveIf you would rather not install PHP on your machine, the shipped Dockerfile and Makefile run everything inside a
container:
make test # run the test suite
make coverage # run the test suite and report code coverage
make check-style # check the coding style
make fix-style # fix the coding style where possible
make analyse # run static analysis
make ci # run all of the checks above
make shell # open a shell inside the container
make help # list every available targetAnother PHP version can be used with make test PHP_VERSION=8.5, and a single Laravel version with
make test-laravel LARAVEL=12.
Please see CHANGELOG for more information on what has changed recently.
Please see CONTRIBUTING and CONDUCT for details.
If you discover any security related issues, please email khanzadimahdi@gmail.com instead of using the issue tracker.
The MIT License (MIT). Please see License File for more information.
