nextsms / php-client
Nextsms for PHP
Fund package maintenance!
Patreon
Installs: 1 090
Dependents: 1
Suggesters: 0
Security: 0
Stars: 4
Watchers: 2
Forks: 2
Open Issues: 1
Requires
- php: >=7.2
- ext-json: *
- guzzlehttp/guzzle: ^6.0|^7.0
Requires (Dev)
- phpunit/phpunit: ^7.0|^9.0
This package is auto-updated.
Last update: 2024-11-08 05:38:20 UTC
README
The Nextsms for PHP
makes it easy for developers to access Nextsms services in their PHP code, and build robust applications and software using services like Bulk SMS delivery, Sub customers, and more.
V2: You are currently viewing the documentation for the NextSMS PHP SDK V2. If you are looking for the documentation for the V1 SDK, you can find it here.
Installation
Requirement: PHP 8.0 or higher is required.
You can install the package via Composer:
composer require nextsms/php-client
Usage
require 'vendor/autoload.php'; use Nextsms\Nextsms; $client = Nextsms::create( username: 'YOUR_USERNAME', password: 'YOUR_PASSWORD', from: 'NEXTSMS' ); $helloMessage = $client->messages()->send([ "to": '2557123456789', "text": 'Hello World', // from is optional if you have set it in the constructor ]); // Or $message = Message::create(text: 'Hello World',to: '2557123456789'); $helloMessage = $client->messages()->send($message); // Send Later $messageScheduled = $client->messages()->sendLater( new Message(to: '2557123456789', text: 'Hello World'), \DateTime::createFromFormat('Y-m-d', '2020-12-31') ); // Send to many $manyMessages = $client->messages()->sendMany( MessageCollection::create([ Message::text(to: '2557123456789', text: 'Hello World'), Message::text(to: '2557123456789', text: 'Hello World'), ]) ); // Or $manyMessages = $client->messages()->sendMany( MessageCollection::create([ Message::text(to: '2557123456789', text: 'Hello World'), Message::text(to: [ '2557123456789', '2557123456789' ], text: 'Hello World'), ]); ); // Delivery reports $allReports = $client->reports()->all(); // Query $reports = $client->reports() ->query() // Using date string ->sentFrom(date: '01-01-2022') // Or using date object ->sentUntil(date: \DateTime::create('now')) ->get(); $report = $client->reports()->get($messageId); // // Customer $customer = Customer::create([ "first_name" => "Api", "last_name" => "Customer", "username" => "api_customer", "email" => "apicust@customer.com", "phone_number" => "0738234339", "account_type" => "Sub Customer (Reseller)", "sms_price" => 200 ]); // Create $customer = $client->customers()->create($customer); // Recharge $recharge = $client->customers()->recharge($customer, 1000); // Deduct $deduct = $client->customers()->deduct($customer, 1100);
Testing
Using Pest framework.
composer test
Changelog
Please see CHANGELOG for more information on what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Star this repository
If you enjoy this package, please star this repository to encourage further development.
Security Vulnerabilities
Please review our security policy on how to report security vulnerabilities.
Credits
License
The MIT License (MIT). Please see License File for more information.