lsnepomuceno / laravel-locasms
SMS integration with LocaSMS service.
0.0.2
2021-07-12 15:04 UTC
Requires
- php: ^7.4 || ^8.0
- ext-json: *
- ext-mbstring: *
- illuminate/http: ^8.0
- illuminate/support: ^8.0
Requires (Dev)
- nunomaduro/collision: dev-stable
- orchestra/testbench: 6.x-dev
- phpunit/phpunit: 9.5.x-dev
Suggests
None
Provides
None
Conflicts
None
Replaces
None
README
Require this package in your composer.json and update composer. This will download the package and the dependencies libraries also.
composer require lsnepomuceno/laravel-locasms
Sign up before you start
Register at LocaSMS to obtain login and password.
Usage
<?php use LSNepomuceno\LaravelLocasms\SMS; class ExampleController() { public function dummyFunction(){ $sms = new SMS('login', 'password'); // IMPORTANT: // - Service is limited to 200 characters // - Sending SMS works only in Brazil // - The country code has been discarded $response = $sms->send(['+55(27)99999-8888', '2799988-7766'], 'Test message from Laravel integration!!!')); // See http client for more details: https://laravel.com/docs/8.x/http-client dd($respone->body()); } }