Looking to hire Laravel developers? Try LaraJobs

laravel-sms maintained by berzel

Description
Unified API for sending SMS using Laravel
Author
Last update
2021/09/17 17:19 (dev-master)
License
Downloads
30

Comments
comments powered by Disqus

Unified API for sending SMS using Laravel

Installation

You can install the package via composer:

composer require berzel/laravel-sms

You can publish and run the migrations with:

php artisan vendor:publish --provider="Berzel\Sms\SmsServiceProvider" --tag="laravel-sms-migrations"
php artisan migrate

You can publish the config file with:

php artisan vendor:publish --provider="Berzel\Sms\SmsServiceProvider" --tag="laravel-sms-config"

This is the contents of the published config file:

return [
];

Usage

$laravel-sms = new Berzel\Sms();
echo $laravel-sms->echoPhrase('Hello, Berzel!');

Testing

composer test

Changelog

Please see CHANGELOG for more information on what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Security Vulnerabilities

Please review our security policy on how to report security vulnerabilities.

Credits

License

The MIT License (MIT). Please see License File for more information.