elmage / textng-php
An unofficial textng.xyz SMS API Wrapper for PHP
Requires
- php: ^7.4
- guzzlehttp/guzzle: ^6.3
- psr/http-message: ^1.0
- psr/log: ^1.0
- squizlabs/php_codesniffer: ^3.5
Requires (Dev)
- friendsofphp/php-cs-fixer: ^2.16
- phpunit/phpunit: ^9.0
- styleci/cli: ^0.6.2
- vimeo/psalm: ^3.11
This package is auto-updated.
Last update: 2025-03-20 12:40:49 UTC
README
This is an unofficial client library for the TextNg SMS API. We provide an intuitive, stable interface to integrate TextNG SMS into your PHP project.
Installation
Install the library using Composer. Please read the Composer Documentation if you are unfamiliar with Composer or dependency managers in general.
$ composer require elmage/textng-php
Authentication
API Key
use Elmage\TextNg\Configuration; use Elmage\TextNg\Client; $configuration = new Configuration($apiKey, $senderName); $client = Client::create($configuration);
Usage
This is not intended to provide complete documentation of the API. For more detail, please refer to the Official Documentation.
Get Unit Balance
$response = $client->getBalance();
Send SMS
$response = $client->sendSMS($route, $phoneNumbers, $message, $bypassCode, $optionalParamsArray);
Send OTP
// This method accepts only one phone number // and calls $client->sendSMS(..., [$phoneNumber], ...) // passing the supplied phone number as the single element in an array $response = $client->sendOTP($route, $phoneNumber, $message, $bypassCode, $optionalParamsArray);
Get Delivery Report
$response = $client->getDeliveryReport($reference, $req, $used_route);
$req
can take one of the 3 values all
, dnd
or success
(as specified in the API DOC)
Create Customer
$response = $client->createCustomer($customerName, $customerPhone, $categoryID);
$categoryID
is the category url ID generated for each url link you create. (as specified in the API DOC)
Remove Customer
$response = $client->removeCustomer($customerPhone, $categoryID);
Change log
Please see CHANGELOG for more information on what has changed recently.
Testing
$ composer test
Contributing
Please see CONTRIBUTING and CODE_OF_CONDUCT for details.
Security
If you discover any security related issues, please email mails4mage@gmail.com or use the issue tracker.
Credits
License
The MIT License (MIT). Please see License File for more information.