{"id":37235078,"url":"https://github.com/astrotomic/notifynder-sender-twilio","last_synced_at":"2026-01-15T04:00:34.061Z","repository":{"id":62488969,"uuid":"78197904","full_name":"Astrotomic/notifynder-sender-twilio","owner":"Astrotomic","description":"Twilio Sender for the Notifynder package.","archived":true,"fork":false,"pushed_at":"2017-02-09T13:35:22.000Z","size":6,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2026-01-14T14:37:38.333Z","etag":null,"topics":["laravel","notification-api","notification-service","notifications","notifynder","package","php","sms","twilio","twilio-sender"],"latest_commit_sha":null,"homepage":"http://notifynder.info/","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/Astrotomic.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2017-01-06T10:35:14.000Z","updated_at":"2023-01-28T16:52:33.000Z","dependencies_parsed_at":"2022-11-02T11:02:23.802Z","dependency_job_id":null,"html_url":"https://github.com/Astrotomic/notifynder-sender-twilio","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/Astrotomic/notifynder-sender-twilio","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Astrotomic%2Fnotifynder-sender-twilio","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Astrotomic%2Fnotifynder-sender-twilio/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Astrotomic%2Fnotifynder-sender-twilio/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Astrotomic%2Fnotifynder-sender-twilio/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Astrotomic","download_url":"https://codeload.github.com/Astrotomic/notifynder-sender-twilio/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Astrotomic%2Fnotifynder-sender-twilio/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28442357,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-15T00:55:22.719Z","status":"online","status_checked_at":"2026-01-15T02:00:08.019Z","response_time":62,"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","notification-api","notification-service","notifications","notifynder","package","php","sms","twilio","twilio-sender"],"created_at":"2026-01-15T04:00:28.758Z","updated_at":"2026-01-15T04:00:34.041Z","avatar_url":"https://github.com/Astrotomic.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Notifynder 4 Twilio Sender - Laravel 5\n\n[![GitHub release](https://img.shields.io/github/release/astrotomic/notifynder-sender-twilio.svg?style=flat-square)](https://github.com/astrotomic/notifynder-sender-twilio/releases)\n[![GitHub license](https://img.shields.io/badge/license-MIT-blue.svg?style=flat-square)](https://raw.githubusercontent.com/astrotomic/notifynder-sender-twilio/master/LICENSE)\n[![GitHub issues](https://img.shields.io/github/issues/astrotomic/notifynder-sender-twilio.svg?style=flat-square)](https://github.com/astrotomic/notifynder-sender-twilio/issues)\n[![Total Downloads](https://img.shields.io/packagist/dt/astrotomic/notifynder-sender-twilio.svg?style=flat-square)](https://packagist.org/packages/astrotomic/notifynder-sender-twilio)\n\n[![StyleCI](https://styleci.io/repos/78197904/shield)](https://styleci.io/repos/78197904)\n\n[![Code Climate](https://img.shields.io/codeclimate/github/Astrotomic/notifynder-sender-twilio.svg?style=flat-square)](https://codeclimate.com/github/Astrotomic/notifynder-sender-twilio)\n\n[![Slack Team](https://img.shields.io/badge/slack-astrotomic-orange.svg?style=flat-square)](https://astrotomic.slack.com)\n[![Slack join](https://img.shields.io/badge/slack-join-green.svg?style=social)](https://notifynder.signup.team)\n\n\nDocumentation: **[Notifynder Docu](http://notifynder.info)**\n\n-----\n\n## Installation\n\n### Step 1\n\n```\ncomposer require astrotomic/notifynder-sender-twilio\n```\n\n### Step 2\n\nAdd the following string to `config/app.php`\n\n**Providers array:**\n\n```\nAstrotomic\\Notifynder\\NotifynderSenderTwilioServiceProvider::class,\n```\n\n### Step 3\n\nAdd the following array to `config/notifynder.php`\n\n```php\n'senders' =\u003e [\n    'twilio' =\u003e [\n        'sid' =\u003e '',\n        'token' =\u003e '',\n        'store' =\u003e false, // wether you want to also store the notifications in database\n    ],\n],\n```\n\nRegister the sender callback in your `app/Providers/AppServiceProvider.php`\n\n```php\n\u003c?php\nnamespace App\\Providers;\n\nuse Illuminate\\Support\\ServiceProvider;\nuse Astrotomic\\Notifynder\\Senders\\TwilioSender;\nuse Astrotomic\\Notifynder\\Senders\\Messages\\SmsMessage;\nuse Fenos\\Notifynder\\Builder\\Notification;\n\nclass AppServiceProvider extends ServiceProvider\n{\n    public function boot()\n    {\n        app('notifynder.sender')-\u003esetCallback(TwilioSender::class, function (SmsMessage $message, Notification $notification) {\n            return $message\n                -\u003efrom('0123456789')\n                -\u003eto('9876543210')\n                -\u003etext($notification-\u003egetText());\n        });\n    }\n}\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fastrotomic%2Fnotifynder-sender-twilio","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fastrotomic%2Fnotifynder-sender-twilio","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fastrotomic%2Fnotifynder-sender-twilio/lists"}