{"id":14983838,"url":"https://github.com/symfony/message-bird-notifier","last_synced_at":"2026-03-04T21:02:15.643Z","repository":{"id":44439238,"uuid":"359054348","full_name":"symfony/message-bird-notifier","owner":"symfony","description":"Symfony MessageBird Notifier Bridge","archived":false,"fork":false,"pushed_at":"2025-08-01T16:53:59.000Z","size":57,"stargazers_count":9,"open_issues_count":0,"forks_count":3,"subscribers_count":2,"default_branch":"7.3","last_synced_at":"2025-10-19T20:33:50.807Z","etag":null,"topics":["component","message-bird","notifier","php","sms","symfony","symfony-component"],"latest_commit_sha":null,"homepage":"https://symfony.com/notifier","language":"PHP","has_issues":false,"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/symfony.png","metadata":{"funding":{"github":"fabpot","tidelift":"packagist/symfony/symfony","custom":"https://symfony.com/sponsor"},"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2021-04-18T05:36:43.000Z","updated_at":"2025-05-20T08:37:21.000Z","dependencies_parsed_at":"2023-11-29T11:42:35.887Z","dependency_job_id":"189d5add-f01a-4901-b27c-60f1a27e8672","html_url":"https://github.com/symfony/message-bird-notifier","commit_stats":{"total_commits":34,"total_committers":12,"mean_commits":"2.8333333333333335","dds":0.5588235294117647,"last_synced_commit":"53b0424463a325eeced9f80ea0e35e2d0c764ff1"},"previous_names":[],"tags_count":62,"template":false,"template_full_name":null,"purl":"pkg:github/symfony/message-bird-notifier","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/symfony%2Fmessage-bird-notifier","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/symfony%2Fmessage-bird-notifier/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/symfony%2Fmessage-bird-notifier/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/symfony%2Fmessage-bird-notifier/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/symfony","download_url":"https://codeload.github.com/symfony/message-bird-notifier/tar.gz/refs/heads/7.3","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/symfony%2Fmessage-bird-notifier/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30092869,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-04T20:42:30.420Z","status":"ssl_error","status_checked_at":"2026-03-04T20:42:30.057Z","response_time":59,"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":["component","message-bird","notifier","php","sms","symfony","symfony-component"],"created_at":"2024-09-24T14:08:01.139Z","updated_at":"2026-03-04T21:02:15.620Z","avatar_url":"https://github.com/symfony.png","language":"PHP","funding_links":["https://github.com/sponsors/fabpot","https://tidelift.com/funding/github/packagist/symfony/symfony","https://symfony.com/sponsor"],"categories":[],"sub_categories":[],"readme":"MessageBird Notifier\n====================\n\nProvides [MessageBird](https://www.messagebird.com/) integration for Symfony Notifier.\n\nDSN example\n-----------\n\n```\nMESSAGEBIRD_DSN=messagebird://TOKEN@default?from=FROM\n```\n\nwhere:\n - `TOKEN` is your MessageBird token\n - `FROM` is your sender\n\nAdding Options to a Message\n---------------------------\n\nWith a MessageBird Message, you can use the `MessageBirdOptions` class to add\n[message options](https://developers.messagebird.com/api/sms-messaging/#send-outbound-sms).\n\n```php\nuse Symfony\\Component\\Notifier\\Message\\SmsMessage;\nuse Symfony\\Component\\Notifier\\Bridge\\MessageBird\\MessageBirdOptions;\n\n$sms = new SmsMessage('+1411111111', 'My message');\n\n$options = (new MessageBirdOptions())\n    -\u003etype('test_type')\n    -\u003escheduledDatetime('test_scheduled_datetime')\n    -\u003ecreatedDatetime('test_created_datetime')\n    -\u003edataCoding('test_data_coding')\n    -\u003egateway(999)\n    -\u003egroupIds(['test_group_ids'])\n    -\u003emClass(888)\n    -\u003ereference('test_reference')\n    -\u003ereportUrl('test_report_url')\n    -\u003eshortenUrls(true)\n    -\u003etypeDetails('test_type_details')\n    -\u003evalidity(777)\n    // ...\n    ;\n\n// Add the custom options to the sms message and send the message\n$sms-\u003eoptions($options);\n\n$texter-\u003esend($sms);\n```\n\nResources\n---------\n\n * [Contributing](https://symfony.com/doc/current/contributing/index.html)\n * [Report issues](https://github.com/symfony/symfony/issues) and\n   [send Pull Requests](https://github.com/symfony/symfony/pulls)\n   in the [main Symfony repository](https://github.com/symfony/symfony)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsymfony%2Fmessage-bird-notifier","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsymfony%2Fmessage-bird-notifier","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsymfony%2Fmessage-bird-notifier/lists"}