{"id":15651138,"url":"https://github.com/unicodeveloper/jusibe-php-lib","last_synced_at":"2025-07-01T01:34:00.955Z","repository":{"id":57075468,"uuid":"55829684","full_name":"unicodeveloper/jusibe-php-lib","owner":"unicodeveloper","description":":package:  PHP Client Library for Jusibe SMS REST API Service","archived":false,"fork":false,"pushed_at":"2020-07-14T13:45:52.000Z","size":49,"stargazers_count":33,"open_issues_count":1,"forks_count":8,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-05-31T14:30:53.991Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://jusibe.com","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/unicodeveloper.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2016-04-09T06:32:04.000Z","updated_at":"2022-01-25T18:18:00.000Z","dependencies_parsed_at":"2022-08-24T14:40:38.039Z","dependency_job_id":null,"html_url":"https://github.com/unicodeveloper/jusibe-php-lib","commit_stats":null,"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/unicodeveloper/jusibe-php-lib","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/unicodeveloper%2Fjusibe-php-lib","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/unicodeveloper%2Fjusibe-php-lib/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/unicodeveloper%2Fjusibe-php-lib/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/unicodeveloper%2Fjusibe-php-lib/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/unicodeveloper","download_url":"https://codeload.github.com/unicodeveloper/jusibe-php-lib/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/unicodeveloper%2Fjusibe-php-lib/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":262879282,"owners_count":23378590,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-10-03T12:37:05.570Z","updated_at":"2025-07-01T01:34:00.889Z","avatar_url":"https://github.com/unicodeveloper.png","language":"PHP","readme":"# jusibe-php-lib\n\n[![Latest Stable Version](https://poser.pugx.org/unicodeveloper/jusibe-php-lib/v/stable.svg)](https://packagist.org/packages/unicodeveloper/jusibe-php-lib)\n[![License](https://poser.pugx.org/unicodeveloper/jusibe-php-lib/license.svg)](LICENSE.md)\n![](https://img.shields.io/badge/unicodeveloper-approved-brightgreen.svg)\n[![Build Status](https://img.shields.io/travis/unicodeveloper/jusibe-php-lib.svg)](https://travis-ci.org/unicodeveloper/jusibe-php-lib)\n[![Coveralls](https://img.shields.io/coveralls/unicodeveloper/jusibe-php-lib/master.svg)](https://coveralls.io/github/unicodeveloper/jusibe-php-lib?branch=master)\n[![Quality Score](https://img.shields.io/scrutinizer/g/unicodeveloper/jusibe-php-lib.svg?style=flat-square)](https://scrutinizer-ci.com/g/unicodeveloper/jusibe-php-lib)\n[![Total Downloads](https://img.shields.io/packagist/dt/unicodeveloper/jusibe-php-lib.svg?style=flat-square)](https://packagist.org/packages/unicodeveloper/jusibe-php-lib)\n\n\u003e Jusibe Library for PHP\n\n## Installation\n\n[PHP](https://php.net) 7.0+ or [HHVM](http://hhvm.com) 3.3+, and [Composer](https://getcomposer.org) are required.\n\nTo get the latest version of jusibe-php-lib, simply add the following line to the require block of your `composer.json` file.\n\n```\n\"unicodeveloper/jusibe-php-lib\": \"1.0.*\"\n```\n\nYou'll then need to run `composer install` or `composer update` to download it and have the autoloader updated.\n\n\n## Usage\n\nAvailable methods for use are:\n```php\n\n/**\n * Send SMS using the Jusibe API\n * @param  array $payload\n * @return object\n */\n$jusibe-\u003esendSMS($payload)-\u003egetResponse();\n\n/**\n * Send Bulk SMS using the Jusibe API\n * @param  array $payload\n * @return object\n */\n$jusibe-\u003esendBulkSMS($payload)-\u003egetResponse();\n\n/**\n * Check the available SMS credits left in your Jusibe account\n * @return object\n */\n$jusibe-\u003echeckAvailableCredits()-\u003egetResponse();\n\n/**\n * Check the delivery status of a sent SMS\n * @param  string $messageID\n * @return object\n */\n$jusibe-\u003echeckDeliveryStatus('8nb1wrgdjw')-\u003egetResponse();\n\n/**\n * Check the delivery status of a sent Bulk SMS\n * @param  string $bulkID\n * @return object\n */\n$jusibe-\u003echeckBulkDeliveryStatus('8nb1wrgdjw')-\u003egetResponse();\n```\n\n### Send an SMS\n\n```php\n\n\u003c?php\n\n// include your composer dependencies\nrequire_once 'vendor/autoload.php';\n\nuse Unicodeveloper\\Jusibe\\Jusibe;\n\n$publicKey = 'xxxxxxxxxxxxxx';\n$accessToken = 'xxxxxxxxxxxxxx';\n\n$jusibe = new Jusibe($publicKey, $accessToken);\n\n$message = \"I LOVE YOU, BABY\";\n\n$payload = [\n    'to' =\u003e '7079740987',\n    'from' =\u003e 'PROSPER DATING NETWORK',\n    'message' =\u003e $message\n];\n\ntry {\n    $response = $jusibe-\u003esendSMS($payload)-\u003egetResponse();\n    print_r($response);\n} catch(Exception $e) {\n    echo $e-\u003egetMessage();\n}\n\n```\n\n**Response Info for Developer**\n\n![SendSMS Response](https://cloud.githubusercontent.com/assets/2946769/14465033/451179c4-00c9-11e6-881e-bcc92665fa7c.png)\n\n### Send a Bulk SMS\n\n```php\n\n\u003c?php\n\n// include your composer dependencies\nrequire_once 'vendor/autoload.php';\n\nuse Unicodeveloper\\Jusibe\\Jusibe;\n\n$publicKey = 'xxxxxxxxxxxxxx';\n$accessToken = 'xxxxxxxxxxxxxx';\n\n$jusibe = new Jusibe($publicKey, $accessToken);\n\n$message = \"You are invited for party!!!\";\n\n$payload = [\n    'to' =\u003e '7079740987,8077139164',\n    'from' =\u003e 'DOZIE GROUP',\n    'message' =\u003e $message\n];\n\ntry {\n    $response = $jusibe-\u003esendBulkSMS($payload)-\u003egetResponse();\n    print_r($response);\n} catch(Exception $e) {\n    echo $e-\u003egetMessage();\n}\n\n```\n\n**Response Info for Developer**\n\n![Send BulkSMS Response](https://user-images.githubusercontent.com/19904579/46137560-cf37bf00-c241-11e8-9dc6-7096bb0278f4.png)\n\n### Check SMS Credits\n\n```php\n\n\u003c?php\n\n// include your composer dependencies\nrequire_once 'vendor/autoload.php';\n\nuse Unicodeveloper\\Jusibe\\Jusibe;\n\n$publicKey = 'xxxxxxxxxxxxxx';\n$accessToken = 'xxxxxxxxxxxxxx';\n\n$jusibe = new Jusibe($publicKey, $accessToken);\n\ntry {\n   $response = $jusibe-\u003echeckAvailableCredits()-\u003egetResponse();\n   print_r($response);\n} catch(Exception $e) {\n    echo $e-\u003egetMessage();\n}\n\n```\n\n**Response Info for Developer**\n\n![Check SMS Credits Response](https://cloud.githubusercontent.com/assets/2946769/14465412/d15361f8-00ca-11e6-8145-7cb8cd2b46d0.png)\n\n### Check Delivery Status\n\n```php\n\n\u003c?php\n\n// include your composer dependencies\nrequire_once 'vendor/autoload.php';\n\nuse Unicodeveloper\\Jusibe\\Jusibe;\n\n$publicKey = 'xxxxxxxxxxxxxx';\n$accessToken = 'xxxxxxxxxxxxxx';\n\n$jusibe = new Jusibe($publicKey, $accessToken);\n\ntry {\n    $response = $jusibe-\u003echeckDeliveryStatus('8nb1wrgdjw')-\u003egetResponse();\n    print_r($response);\n} catch(Exception $e) {\n    echo $e-\u003egetMessage();\n}\n\n```\n\n**Response Info for Developer**\n\n![Check Delivery Status Response](https://cloud.githubusercontent.com/assets/2946769/14465686/bb61e3d2-00cb-11e6-9164-ec73665408f3.png)\n\n\n\n### Check Bulk Delivery Status\n\n```php\n\n\u003c?php\n\n// include your composer dependencies\nrequire_once 'vendor/autoload.php';\n\nuse Unicodeveloper\\Jusibe\\Jusibe;\n\n$publicKey = 'xxxxxxxxxxxxxx';\n$accessToken = 'xxxxxxxxxxxxxx';\n\n$jusibe = new Jusibe($publicKey, $accessToken);\n\ntry {\n    $response = $jusibe-\u003echeckBulkDeliveryStatus('n2v9gby1jy')-\u003egetResponse();\n    print_r($response);\n} catch(Exception $e) {\n    echo $e-\u003egetMessage();\n}\n\n```\n\n**Response Info for Developer**\n\n![Check Bulk Delivery Status Response](https://user-images.githubusercontent.com/19904579/46137669-0a39f280-c242-11e8-9143-8b3ec68ed84f.png)\n\n## Contributing\n\nPlease feel free to fork this package and contribute by submitting a pull request to enhance the functionalities.\n\n## How can I thank you?\n\nWhy not star the github repo? I'd love the attention! Why not share the link for this repository on Twitter or HackerNews? Spread the word!\n\nDon't forget to [follow me on twitter](https://twitter.com/unicodeveloper)!\n\nThanks!\nProsper Otemuyiwa.\n\n## License\n\nThe MIT License (MIT). Please see [License File](LICENSE.md) for more information.\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Funicodeveloper%2Fjusibe-php-lib","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Funicodeveloper%2Fjusibe-php-lib","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Funicodeveloper%2Fjusibe-php-lib/lists"}