mobtexting / sdk
A boilerplate for contributions.
Installs: 3 959
Dependents: 1
Suggesters: 0
Security: 0
Stars: 0
Watchers: 3
Forks: 2
Open Issues: 0
Requires
- php: ^7.4|^8.0|^8.1
- mobtexting/message-sdk: ^1.0
Requires (Dev)
- mockery/mockery: ^0.9.5
- phpunit/phpunit: 4.*
This package is auto-updated.
Last update: 2024-01-08 14:09:33 UTC
README
This package makes it easy to send Mobtexting notifications.
Contents
Installation
You can install the package via composer:
composer require mobtexting/mobtexting-php
Usage
Send an SMS
<?php $token = "YYYYYY"; $client = new Mobtexting\Client($token); $message = $client->messages->send( '1234567890', // Text this number array( 'from' => 'MOBtxt', 'text' => 'Hello from MOBTEXTING!' ) ); print_r($message->json());
Testing
$ composer test
Security
If you discover any security related issues, please email support@mobtexting.com instead of using the issue tracker.
Contributing
Please see CONTRIBUTING for details.
License
The MIT License (MIT). Please see License File for more information.