Download the PHP package zgabievi/sms without Composer
On this page you can find all versions of the php package zgabievi/sms. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Informations about the package sms
laravel-georgian-sms
Georgian SMS providers service integration for Laravel 5.* :sunglasses: Trying to make it perfect, easy to use and awesome package :tada: Pull requests are welcome.
Table of Contents
- Installation
- Methods
- Config
- ENV
- License
Installation
Composer
Run composer command in your terminal.
composer require zgabievi/sms
Laravel
For Laravel 5.5
If you are using Laravel 5.5, than installation is done. Otherwise follow next steps.
For Laravel <= 5.4
Open config/app.php
, find the providers
and add SMSServiceProvider
to the array.
Find the aliases
and add Facade
to the array.
Methods
Method | MAGTI | SMSOFFICE | SMSCO |
---|---|---|---|
SMS::send($numbers, $message, $params = []) | + | + | + |
SMS::schedule($numbers, $message, $datetime) | - | - | + |
SMS::status($msg_id) | + | - | + |
SMS::balance() | - | + | - |
$numbers
- comma separated numbers or number, with format: 9955XXXXXXXX$message
- Text message which will be sent to the numbers.$params
- Array of key => values that will be used as http query. (Use this only if you know what you are doing)$datetime
- Datetime in formatY-m-d H:i:s
.$msg_id
- Message ID, which you will get from provider, to check status in future.
Allowed symbols to use in message:
Symbol | Description |
---|---|
a-z | Characters in the range between a and z (case sensitive) |
A-Z | Characters in the range between A and Z (case sensitive) |
0-9 | Character in the range between 0 and 9 |
. | Point |
_ | Undercsore |
- | Dash |
" | Double Quotes |
' | Single Quote |
Space |
Config
Publish SMS config file using command:
php artisan vendor:publish
This will create file config\sms.php
:
Default SMS Provider
You can specify any allowed sms service provider from list below:
Allowed providers are: 'magti', 'smsoffice', 'smsco'
SMS Provider Credentials
Here you must specify credentials required from provider
This credentials will be used in protocol
.ENV
You can configure provider credentials in your config or .env
file
KEY | MAGTI | SMSOFFICE | SMSCO |
---|---|---|---|
SMS_GATEWAY | + | + | + |
SMS_USERNAME | + | BRAND | + |
SMS_PASSWORD | + | KEY | + |
SMS_CLIENT_ID | + | - | - |
SMS_SERVICE_ID | + | - | - |
License
laravel-georgian-sms is licensed under a MIT License.