{"id":27078986,"url":"https://github.com/netlogix/nxsentry","last_synced_at":"2025-07-09T18:05:01.856Z","repository":{"id":40995368,"uuid":"428629967","full_name":"netlogix/nxsentry","owner":"netlogix","description":null,"archived":true,"fork":false,"pushed_at":"2022-12-22T14:09:05.000Z","size":37,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":4,"default_branch":"main","last_synced_at":"2025-04-06T01:21:42.334Z","etag":null,"topics":["php","sentry","typo3"],"latest_commit_sha":null,"homepage":null,"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/netlogix.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}},"created_at":"2021-11-16T11:34:19.000Z","updated_at":"2024-12-19T06:42:51.000Z","dependencies_parsed_at":"2023-01-30T11:01:06.679Z","dependency_job_id":null,"html_url":"https://github.com/netlogix/nxsentry","commit_stats":null,"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/netlogix/nxsentry","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/netlogix%2Fnxsentry","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/netlogix%2Fnxsentry/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/netlogix%2Fnxsentry/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/netlogix%2Fnxsentry/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/netlogix","download_url":"https://codeload.github.com/netlogix/nxsentry/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/netlogix%2Fnxsentry/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":264502342,"owners_count":23618575,"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","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":["php","sentry","typo3"],"created_at":"2025-04-06T01:20:18.162Z","updated_at":"2025-07-09T18:05:01.767Z","avatar_url":"https://github.com/netlogix.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![MIT license](http://img.shields.io/badge/license-MIT-brightgreen.svg)](http://opensource.org/licenses/MIT)\n[![Packagist](https://img.shields.io/packagist/v/netlogix/nxsentry.svg)](https://packagist.org/packages/netlogix/nxsentry)\n[![Maintenance level: Love](https://img.shields.io/badge/maintenance-%E2%99%A1%E2%99%A1%E2%99%A1-ff69b4.svg)](https://websolutions.netlogix.de/)\n[![stability-wip](https://img.shields.io/badge/stability-wip-lightgrey.svg)](hhttps://github.com/netlogix/nxsentry)\n[![TYPO3 V10](https://img.shields.io/badge/TYPO3-10-orange.svg)](https://get.typo3.org/version/10)\n[![TYPO3 V11](https://img.shields.io/badge/TYPO3-11-orange.svg)](https://get.typo3.org/version/11)\n[![Minimum PHP Version](https://img.shields.io/badge/php-%3E%3D%207.4-8892BF.svg)](https://php.net/)\n[![GitHub CI status](https://github.com/netlogix/nxsentry/actions/workflows/ci.yml/badge.svg?branch=main)](https://github.com/netlogix/nxsentry/actions)\n\n# Sentry integration for TYPO3\n\nThis [TYPO3](https://typo3.org/) extension allows you to automate reporting of errors to [Sentry](https://www.sentry.io)\n\n## Installation\n\nThe Sentry integration is installed as a composer package. For your existing project, simply include `netlogix/nxsentry`\ninto the dependencies of your TYPO3 distribution:\n\n```bash\n$ composer require netlogix/nxsentry\n```\n\n## Configuration\n\nThe new Sentry SDK 3.x has some environment variables which can be used, for example in a .env file:\n```apacheconfig\nSENTRY_DSN='http://public_key@your-sentry-server.com/project-id'\nSENTRY_RELEASE='1.0.7'\nSENTRY_ENVIRONMENT='Staging'\n```\n\nAdd this to your `LocalConfiguration.php`\n```php\nreturn [\n    'LOG' =\u003e [\n        'writerConfiguration' =\u003e [\n            \\TYPO3\\CMS\\Core\\Log\\LogLevel::ERROR =\u003e [\n                'Netlogix\\Nxsentry\\Log\\Writer\\SentryBreadcrumbWriter' =\u003e [],\n                'Netlogix\\Nxsentry\\Log\\Writer\\SentryWriter' =\u003e [],\n            ],\n        ],\n    ],\n];\n```\n\nOverwriting default options in the `LocalConfiguration.php`\n```php\nreturn [\n    'EXTENSIONS' =\u003e [\n        'nxsentry' =\u003e [\n            'options' =\u003e [\n                'dsn' =\u003e 'http://public_key@your-sentry-server.com/project-id'\n            ]\n        ],\n    ],\n];\n```\n\nAdd own integration to add custom data to the event.\n```php\nreturn [\n    'EXTENSIONS' =\u003e [\n        'nxsentry' =\u003e [\n            'integrations' =\u003e [\n                new MyCustomIntegration()\n            ]\n        ],\n    ],\n];\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnetlogix%2Fnxsentry","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnetlogix%2Fnxsentry","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnetlogix%2Fnxsentry/lists"}