{"id":18767464,"url":"https://github.com/codekandis/tiphy-sentry-client-integration","last_synced_at":"2026-05-01T17:33:47.239Z","repository":{"id":47389374,"uuid":"237741710","full_name":"codekandis/tiphy-sentry-client-integration","owner":"codekandis","description":"`codekandis/tiphy-sentry-client-integration` is a library to integrate `codekandis/sentry-client` into `codekandis/tiphy`.","archived":false,"fork":false,"pushed_at":"2022-07-20T18:44:01.000Z","size":72,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-09-19T01:53:05.621Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","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/codekandis.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":"docs/CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2020-02-02T08:36:23.000Z","updated_at":"2021-10-18T22:30:17.000Z","dependencies_parsed_at":"2022-09-22T14:26:07.607Z","dependency_job_id":null,"html_url":"https://github.com/codekandis/tiphy-sentry-client-integration","commit_stats":null,"previous_names":[],"tags_count":11,"template":false,"template_full_name":null,"purl":"pkg:github/codekandis/tiphy-sentry-client-integration","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codekandis%2Ftiphy-sentry-client-integration","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codekandis%2Ftiphy-sentry-client-integration/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codekandis%2Ftiphy-sentry-client-integration/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codekandis%2Ftiphy-sentry-client-integration/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/codekandis","download_url":"https://codeload.github.com/codekandis/tiphy-sentry-client-integration/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codekandis%2Ftiphy-sentry-client-integration/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32507087,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-30T13:12:12.517Z","status":"online","status_checked_at":"2026-05-01T02:00:05.856Z","response_time":64,"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":[],"created_at":"2024-11-07T19:07:33.057Z","updated_at":"2026-05-01T17:33:47.210Z","avatar_url":"https://github.com/codekandis.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# codekandis/tiphy-sentry-client-integration\n\n[![Version][xtlink-version-badge]][srclink-changelog]\n[![License][xtlink-license-badge]][srclink-license]\n[![Minimum PHP Version][xtlink-php-version-badge]][xtlink-php-net]\n![Code Coverage][xtlink-code-coverage-badge]\n\n`codekandis/tiphy-sentry-client-integration` is a library to integrate [`codekandis/sentry-client`][xtlink-github-codekandis-sentry-client] into [`codekandis/tiphy`][xtlink-github-codekandis-tiphy].\n\n## Index\n\n* [Installation](#installation)\n* [How to use](#how-to-use)\n\n## Installation\n\nInstall the latest version with\n\n```bash\n$ composer require codekandis/tiphy-sentry-client-integration\n```\n\n## How to use\n\n### Create a configuration\n\nJust inject the [`InternalServerErrorThrowableHandler`][srclink-throwable-handler] into the [`ActionDispatcher`][xtlink-github-codekandis-tiphy-action-dispatcher].\n\n```php\n\u003c?php declare( strict_types = 1 );\nnamespace Vendor\\Project;\n\nuse CodeKandis\\SentryClient\\SentryClient;\nuse CodeKandis\\Tiphy\\Actions\\ActionDispatcher;\nuse CodeKandis\\TiphySentryClientIntegration\\Throwables\\Handlers\\InternalServerErrorThrowableHandler;\nuse CodeKandis\\TiphySentryClientIntegration\\Throwables\\SentryClientConfiguration;\n\n$routesConfiguration = /** ... */;\n$preDispatcher       = /** ... */;\n$throwableHandler    = new InternalServerErrorThrowableHandler(\n\tnew SentryClient(\n\t\tnew SentryClientConfiguration(\n\t\t\t[ /** ... */ ]\n\t\t)\n\t)\n);\n\n( new ActionDispatcher( $routesConfiguration, $preDispatcher, $throwableHandler ) )\n-\u003edispatch();\n```\n\n\n[xtlink-version-badge]: https://img.shields.io/badge/version-0.10.0-blue.svg\n[xtlink-license-badge]: https://img.shields.io/badge/license-MIT-yellow.svg\n[xtlink-php-version-badge]: https://img.shields.io/badge/php-%3E%3D%207.4-8892BF.svg\n[xtlink-code-coverage-badge]: https://img.shields.io/badge/coverage-0%25-red.svg\n[xtlink-php-net]: https://php.net\n[xtlink-github-codekandis-sentry-client]: https://github.com/codekandis/sentry-client\n[xtlink-github-codekandis-tiphy]: https://github.com/codekandis/tiphy\n[xtlink-github-codekandis-tiphy-action-dispatcher]: https://github.com/codekandis/tiphy/blob/master/src/Actions/ActionDispatcher.php\n\n[srclink-changelog]: ./CHANGELOG.md\n[srclink-license]: ./LICENSE\n[srclink-throwable-handler]: ./src/Throwables/Handlers/InternalServerErrorThrowableHandler.php\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodekandis%2Ftiphy-sentry-client-integration","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcodekandis%2Ftiphy-sentry-client-integration","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodekandis%2Ftiphy-sentry-client-integration/lists"}