{"id":14983786,"url":"https://github.com/symfony/novu-notifier","last_synced_at":"2026-01-25T00:07:29.571Z","repository":{"id":201230079,"uuid":"656259920","full_name":"symfony/novu-notifier","owner":"symfony","description":"Provides Novu integration for Symfony Notifier.","archived":false,"fork":false,"pushed_at":"2025-11-27T13:47:35.000Z","size":32,"stargazers_count":5,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"7.3","last_synced_at":"2025-11-30T06:53:21.627Z","etag":null,"topics":["component","notifier","novu","php","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":{"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},"funding":{"github":["fabpot","nicolas-grekas"],"custom":"https://symfony.com/sponsor","tidelift":"packagist/symfony/symfony"}},"created_at":"2023-06-20T15:19:15.000Z","updated_at":"2025-05-20T08:36:20.000Z","dependencies_parsed_at":"2023-11-15T17:31:29.479Z","dependency_job_id":"9f7a2258-8d67-47c6-bee4-2e412cdf35fa","html_url":"https://github.com/symfony/novu-notifier","commit_stats":{"total_commits":8,"total_committers":5,"mean_commits":1.6,"dds":0.625,"last_synced_commit":"5f0e65580050e93a39cd08ff60eea1efc9a66c18"},"previous_names":["symfony/novu-notifier"],"tags_count":33,"template":false,"template_full_name":null,"purl":"pkg:github/symfony/novu-notifier","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/symfony%2Fnovu-notifier","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/symfony%2Fnovu-notifier/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/symfony%2Fnovu-notifier/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/symfony%2Fnovu-notifier/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/symfony","download_url":"https://codeload.github.com/symfony/novu-notifier/tar.gz/refs/heads/7.3","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/symfony%2Fnovu-notifier/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28739343,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-24T22:12:27.248Z","status":"ssl_error","status_checked_at":"2026-01-24T22:12:10.529Z","response_time":89,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6: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","notifier","novu","php","symfony","symfony-component"],"created_at":"2024-09-24T14:07:55.119Z","updated_at":"2026-01-25T00:07:29.556Z","avatar_url":"https://github.com/symfony.png","language":"PHP","funding_links":["https://github.com/sponsors/fabpot","https://github.com/sponsors/nicolas-grekas","https://symfony.com/sponsor","https://tidelift.com/funding/github/packagist/symfony/symfony"],"categories":[],"sub_categories":[],"readme":"Novu Notifier\n=============\n\nProvides [Novu](https://novu.co/) integration for Symfony Notifier.\n\nDSN example\n-----------\n\n```\nNOVU_DSN=novu://API_KEY@default\n```\n\nNotification example\n--------------------\n\n```php\nclass NovuNotification extends Notification implements PushNotificationInterface\n{\n    public function asPushMessage(\n        NovuSubscriberRecipient|RecipientInterface $recipient,\n        ?string $transport = null,\n    ): ?PushMessage {\n        return new PushMessage(\n            $this-\u003egetSubject(),\n            $this-\u003egetContent(),\n            new NovuOptions(\n                $recipient-\u003egetSubscriberId(),\n                $recipient-\u003egetFirstName(),\n                $recipient-\u003egetLastName(),\n                $recipient-\u003egetEmail(),\n                $recipient-\u003egetPhone(),\n                $recipient-\u003egetAvatar(),\n                $recipient-\u003egetLocale(),\n                $recipient-\u003egetOverrides(),\n                [],\n            ),\n        );\n    }\n}\n```\n\n```php\n$notification = new NovuNotification;\n$notification-\u003esubject('test');\n$notification-\u003echannels(['push']);\n$notification-\u003econtent(\n    json_encode(\n        [\n            'param1' =\u003e 'Lorum Ipsum',\n        ]\n    )\n);\n\n$this-\u003enotifier-\u003esend(\n    $notification,\n    new NovuSubscriberRecipient(\n        \"123\",\n        'Wouter',\n        'van der Loop',\n        'woutervdl@toppy.nl',\n        null,\n        null,\n        null,\n        [\n            'email' =\u003e [\n                'from' =\u003e 'no-reply@toppy.nl',\n                'senderName' =\u003e 'No-Reply',\n            ],\n        ],\n    ),\n);\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%2Fnovu-notifier","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsymfony%2Fnovu-notifier","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsymfony%2Fnovu-notifier/lists"}