{"id":16674408,"url":"https://github.com/settermjd/send-sms-with-php-and-twilio","last_synced_at":"2026-04-12T08:31:16.002Z","repository":{"id":232709087,"uuid":"784990567","full_name":"settermjd/send-sms-with-php-and-twilio","owner":"settermjd","description":"See how to send an SMS with PHP in one function call; or about seven nicely formatted lines of code.","archived":false,"fork":false,"pushed_at":"2024-04-11T01:28:43.000Z","size":13,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-12-26T20:14:47.027Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/settermjd.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-04-11T01:00:08.000Z","updated_at":"2025-03-06T11:40:48.000Z","dependencies_parsed_at":null,"dependency_job_id":"4ef7d3c0-9f56-4cac-8613-9b0ef277b3f1","html_url":"https://github.com/settermjd/send-sms-with-php-and-twilio","commit_stats":null,"previous_names":["settermjd/send-sms-with-php-and-twilio"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/settermjd/send-sms-with-php-and-twilio","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/settermjd%2Fsend-sms-with-php-and-twilio","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/settermjd%2Fsend-sms-with-php-and-twilio/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/settermjd%2Fsend-sms-with-php-and-twilio/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/settermjd%2Fsend-sms-with-php-and-twilio/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/settermjd","download_url":"https://codeload.github.com/settermjd/send-sms-with-php-and-twilio/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/settermjd%2Fsend-sms-with-php-and-twilio/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31709293,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-12T06:22:27.080Z","status":"ssl_error","status_checked_at":"2026-04-12T06:21:52.710Z","response_time":58,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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-12T12:43:05.625Z","updated_at":"2026-04-12T08:31:15.985Z","avatar_url":"https://github.com/settermjd.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Send an SMS with PHP and Twilio's Programmable Messaging API\n\n[![License](https://img.shields.io/badge/License-Apache--2.0-blue)](#license)\n[![Issues](https://img.shields.io/github/issues/settermjd/send-sms-with-php-and-twilio)](https://github.com/settermjd/send-sms-with-php-and-twilio/issues)\n![GitHub Release](https://img.shields.io/github/v/release/settermjd/send-sms-with-php-and-twilio)\n\nSee how to send an SMS with PHP in one function call; or about seven nicely formatted lines of code.\n\n## Getting Started\n\n### Requirements\n\nTo use the code, you need the following:\n\n- [PHP](https://php.net) 8.3\n- [Composer](https://getcomposer.org) installed globally\n- A Twilio account (free or paid). If you are new to Twilio, [click here to create a free account](https://www.twilio.com/referral/QlBtVJ)\n\n### Setup the code\n\nTo use the project only requires three things:\n\n1. Clone the code\n1. Install the required dependencies\n1. Create a _.env_ file from _.env.example_\n1. Set your Twilio credentials and mobile phone number in _.env_\n1. Run the code\n\nDo steps 1 - 3 with the following commands:\n\n```php\n# Clone the source code locally into a directory named send-sms-with-php-and-twilio\ngit clone git@github.com:settermjd/send-sms-with-php-and-twilio.git\n\n# Install PHP's dependencies\ncomposer install\n\ncp -v .env.example .env\n```\n\nYou can retrieve your Twilio credentials and phone number from the [Twilio Console](https://console.twilio.com/).\n\nAfter running the code, you should receive an SMS to your mobile/cell phone.\n\n## Contributing\n\nThis repository is Open Source under the [Apache License 2.0](LICENSE), and is the [copyright of its contributors](NOTICE). \nIf you would like to contribute to the software, you must:\n\n1. Read the [Developer Certificate of Origin Version 1.1]()\n2. Sign all commits to the project\n\nThis ensures that users, distributors, and other contributors can rely on all the software related to Daytona being contributed under the terms of the [License](LICENSE). No contributions will be accepted without following this process.\n\nAfterward, navigate to the [contributing guide](CONTRIBUTING.md) to get started.\n\n## License\n\nThis repository is covered under the [Apache License 2.0](LICENSE), except where noted.\n\n## Code of Conduct\n\nThis project has adapted the Code of Conduct from the [Contributor Covenant](https://www.contributor-covenant.org/). For more information see the [Code of Conduct](CODE_OF_CONDUCT.md) or contact [matthew@matthewsetter.com](mailto:matthew@matthewsetter.com) with any additional questions or comments.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsettermjd%2Fsend-sms-with-php-and-twilio","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsettermjd%2Fsend-sms-with-php-and-twilio","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsettermjd%2Fsend-sms-with-php-and-twilio/lists"}