{"id":30671528,"url":"https://github.com/programmerhasan/twilio-whatsapp","last_synced_at":"2026-01-20T16:39:50.030Z","repository":{"id":309901547,"uuid":"1037952148","full_name":"ProgrammerHasan/twilio-whatsapp","owner":"ProgrammerHasan","description":"A Laravel package to send WhatsApp OTPs and SMS messages using Twilio.","archived":false,"fork":false,"pushed_at":"2025-08-14T11:40:25.000Z","size":11,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-08-14T13:22:41.812Z","etag":null,"topics":["laravel","laravel-twilio","twilio","twilio-api","twilio-whatsapp"],"latest_commit_sha":null,"homepage":"","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/ProgrammerHasan.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-08-14T11:33:29.000Z","updated_at":"2025-08-14T11:40:29.000Z","dependencies_parsed_at":"2025-08-14T13:22:43.342Z","dependency_job_id":"2827bd8a-49eb-40a1-a248-88c2816c07e0","html_url":"https://github.com/ProgrammerHasan/twilio-whatsapp","commit_stats":null,"previous_names":["programmerhasan/twilio-whatsapp"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/ProgrammerHasan/twilio-whatsapp","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ProgrammerHasan%2Ftwilio-whatsapp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ProgrammerHasan%2Ftwilio-whatsapp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ProgrammerHasan%2Ftwilio-whatsapp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ProgrammerHasan%2Ftwilio-whatsapp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ProgrammerHasan","download_url":"https://codeload.github.com/ProgrammerHasan/twilio-whatsapp/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ProgrammerHasan%2Ftwilio-whatsapp/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":273068856,"owners_count":25039911,"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","status":"online","status_checked_at":"2025-09-01T02:00:09.058Z","response_time":120,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["laravel","laravel-twilio","twilio","twilio-api","twilio-whatsapp"],"created_at":"2025-09-01T03:19:02.458Z","updated_at":"2026-01-20T16:39:49.985Z","avatar_url":"https://github.com/ProgrammerHasan.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ProgrammerHasan/TwilioWhatsApp\n\nA Laravel package to send **WhatsApp OTPs** and **SMS messages** using Twilio.\n\nSupports:\n- WhatsApp messages \u0026 OTPs\n- SMS messages\n\n---\n\n## **Requirements**\n\n1. PHP \u003e= 8.0\n2. Laravel \u003e= 9.x\n3. Twilio SDK (included via composer)\n\n---\n\n## **Twilio Setup**\n\n### **1. Create a WhatsApp Service**\n- Go to [Twilio WhatsApp Services](https://console.twilio.com/us1/develop/sms/services)\n- Create a new WhatsApp Service\n- Note down your **Service SID**\n\n### **2. Content Template**\n- Go to [Twilio Content Template Builder](https://console.twilio.com/us1/develop/sms/content-template-builder)\n- Create your template for OTP or messages\n- Copy the **Content SID**\n- For OTP - use default Verification Content SID\n\n### **3. WhatsApp Sender**\n- Go to [WhatsApp Senders](https://console.twilio.com/us1/develop/sms/senders/whatsapp-senders)\n- Register your WhatsApp number\n- Use the number in your config as `whatsapp_from` (without the `whatsapp:` prefix)\n\n---\n\n## **Installation**\n\n```bash\ncomposer require programmerhasan/twilio-whatsapp\n```\n## Publishing config file\n```\nphp artisan vendor:publish --provider=\"ProgrammerHasan\\TwilioWhatsApp\\TwilioWhatsAppServiceProvider\" --tag=config\n```\n\nAdd your .env values:\n```\nTWILIO_SID=your_twilio_sid\nTWILIO_AUTH_TOKEN=your_twilio_auth_token\nTWILIO_CONTENT_SID=your_whatsapp_content_sid\nTWILIO_WHATSAPP_FROM=+1415XXXXXXX\n```\n\n## Usage\n### WhatsApp OTP\n```\nuse TwilioWhatsApp;\n\n$otp = TwilioWhatsApp::sendOtp('+88017XXXXXXXX');\n```\n\n### Send WhatsApp Message\n```\nuse TwilioWhatsApp;\n\nTwilioWhatsApp::sendMessage('+88017XXXXXXXX', 'Hello from Twilio WhatsApp!');\n```\n\n### Support: programmerhasan.s@gmail.com or +8801975568604\n\n## License\n\nThis repository is licensed under the [MIT License](http://opensource.org/licenses/MIT).\n\nCopyright 2025 [ProgrammerHasan](https://github.com/ProgrammerHasan). ","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fprogrammerhasan%2Ftwilio-whatsapp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fprogrammerhasan%2Ftwilio-whatsapp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fprogrammerhasan%2Ftwilio-whatsapp/lists"}