alagaccia / skebby
Skebby API
dev-master
2022-01-07 11:34 UTC
Requires
- php: >=7.0
Requires (Dev)
- ext-curl: *
This package is auto-updated.
Last update: 2025-05-07 19:21:58 UTC
README
Package for using Skebby SMS gateway with Laravel projects.
Requirements
- php >= 7.0
- php curl extension
Installation
you can install this package using the following composer command
composer require alagaccia/skebby
How to use
-
Create the following ENV constants:
SKEBBY_USER="your Skebby username"
SKEBBY_PWD="your Skebby password"
SKEBBY_ALIAS="your Skebby alias"
-
Copy
use alagaccia\skebby\Skebby;
in your controller file -
Create a new instance
$skebby = new Skebby;
-
Send your SMS
$skebby->send('phone-number', 'text-message');