{"id":15318738,"url":"https://github.com/appleboy/codeigniter-nexmo-message","last_synced_at":"2025-04-15T02:29:18.339Z","repository":{"id":1800570,"uuid":"2724561","full_name":"appleboy/CodeIgniter-Nexmo-Message","owner":"appleboy","description":"Class Nexmo Message handles the methods and properties of sending an SMS message.","archived":false,"fork":false,"pushed_at":"2016-09-09T23:31:40.000Z","size":60,"stargazers_count":48,"open_issues_count":0,"forks_count":32,"subscribers_count":12,"default_branch":"master","last_synced_at":"2025-04-10T08:32:29.829Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"http://www.nexmo.com/","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/appleboy.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2011-11-07T06:43:50.000Z","updated_at":"2023-03-24T03:16:01.000Z","dependencies_parsed_at":"2022-07-25T21:18:26.041Z","dependency_job_id":null,"html_url":"https://github.com/appleboy/CodeIgniter-Nexmo-Message","commit_stats":null,"previous_names":[],"tags_count":7,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/appleboy%2FCodeIgniter-Nexmo-Message","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/appleboy%2FCodeIgniter-Nexmo-Message/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/appleboy%2FCodeIgniter-Nexmo-Message/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/appleboy%2FCodeIgniter-Nexmo-Message/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/appleboy","download_url":"https://codeload.github.com/appleboy/CodeIgniter-Nexmo-Message/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248993577,"owners_count":21195220,"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-01T09:02:24.244Z","updated_at":"2025-04-15T02:29:18.306Z","avatar_url":"https://github.com/appleboy.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# What is Nexmo?\n\nNexmo is a cloud based SMS API that lets you send\nand receive high volume of messages at wholesale rates.\nWeb Site: http://www.nexmo.com/index.html\n\n# Requirements\n\n* CodeIgniter 2.0.0+\n* PHP 5.4.0+\n* PHP extension: openssl, pcre, json, xml, curl\n\n# Install\n\nCopy files to your applicaiotn folder\n\n```bash\n$ cp config/nexmo.php application/config/\n$ cp libries/nexmo.php application/libries/\n$ cp controller/nexmo.php application/controller/\n```\n\nOpen config/nexmo.php and put your api key and secret\n\n```php\n$config['api_key'] = 'xxxxxx';\n$config['api_secret'] = 'xxxxxx';\n```\n\nOpen controller/nexmo.php and modified the following changes for sending message\n\n```php\n$from = 'xxxxxxxxxx';\n$to = 'xxxxxxxxxxxx';\n$message = array(\n    'text' =\u003e 'test message'\n);\n```\n\nOpen browser and load the following URL\n\n    http://your_host/example\n\n# Change Log\n\nPlease vist [API documentation](https://docs.nexmo.com/) first\n\nDate: 2014-12-21 (Developer API)\n\n* [Insight: Request](https://docs.nexmo.com/index.php/number-insight/request)\n\nAdded by @lukeprentice202\n\nDate: 2014-12-16 (Developer API)\n\n* [Verify: Request](https://docs.nexmo.com/index.php/verify/verify)\n* [Verify: Check](https://docs.nexmo.com/index.php/verify/check)\n* [Verify: Search](https://docs.nexmo.com/index.php/verify/search)\n\nAdded by @lukeprentice202\n\nDate: 2013-01-23 (Developer API)\n\n* [Account: Top-up](https://docs.nexmo.com/index.php/developer-api/account-top-up)\n* [Number: Update](https://docs.nexmo.com/index.php/developer-api/number-update)\n* [Search: Message](https://docs.nexmo.com/index.php/developer-api/search-message)\n* [Search: Messages](https://docs.nexmo.com/index.php/developer-api/search-messages)\n* [Search: Rejections](https://docs.nexmo.com/index.php/developer-api/search-rejections)\n\nDate: 2011-11-19 (Developer API)\n\n* [Account: Get Balance](https://docs.nexmo.com/index.php/developer-api/account-get-balance)\n* [Account: Get Pricing](https://docs.nexmo.com/index.php/developer-api/account-pricing)\n* [Account: Settings](https://docs.nexmo.com/index.php/developer-api/account-settings)\n* [Account: Numbers](https://docs.nexmo.com/index.php/developer-api/account-numbers)\n* [Number: Search](https://docs.nexmo.com/index.php/developer-api/number-search)\n* [Number: Buy](https://docs.nexmo.com/index.php/developer-api/number-buy)\n* [Number: Cancel](https://docs.nexmo.com/index.php/developer-api/number-cancel)\n\nDate: 2011-10-07 (Messaging References)\n\n* [Send a Message](https://docs.nexmo.com/index.php/sms-api/send-message)\n* [Send Binary Message](https://docs.nexmo.com/index.php/how-to/send-binary-message)\n* [Send WAP Push Message](https://docs.nexmo.com/index.php/how-to/send-wap-push-message)\n\n# Copyright\n\nCopyright (C) 2011-2014 Bo-Yi Wu ( appleboy AT gmail.com )\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fappleboy%2Fcodeigniter-nexmo-message","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fappleboy%2Fcodeigniter-nexmo-message","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fappleboy%2Fcodeigniter-nexmo-message/lists"}