{"id":19066493,"url":"https://github.com/telebugs/telebugs-php","last_synced_at":"2026-01-29T03:12:44.317Z","repository":{"id":245939940,"uuid":"819264103","full_name":"telebugs/telebugs-php","owner":"telebugs","description":"Telebugs error reporter for PHP","archived":false,"fork":false,"pushed_at":"2024-11-16T21:50:39.000Z","size":63,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-18T16:16:30.250Z","etag":null,"topics":["backtrace","crash-reporting","crash-reporting-tool","crash-reports","error-handling","error-monitoring","error-reporting","error-tracking","php","php-library","stacktrace"],"latest_commit_sha":null,"homepage":"https://telebugs.com/docs/integrations/php","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/telebugs.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","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}},"created_at":"2024-06-24T07:00:35.000Z","updated_at":"2024-11-16T21:50:43.000Z","dependencies_parsed_at":"2024-06-24T23:28:05.760Z","dependency_job_id":"5e32512f-e150-419b-9d73-c5756f3c85a7","html_url":"https://github.com/telebugs/telebugs-php","commit_stats":null,"previous_names":["telebugs/telebugs-php"],"tags_count":4,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/telebugs%2Ftelebugs-php","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/telebugs%2Ftelebugs-php/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/telebugs%2Ftelebugs-php/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/telebugs%2Ftelebugs-php/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/telebugs","download_url":"https://codeload.github.com/telebugs/telebugs-php/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":251313018,"owners_count":21569341,"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":["backtrace","crash-reporting","crash-reporting-tool","crash-reports","error-handling","error-monitoring","error-reporting","error-tracking","php","php-library","stacktrace"],"created_at":"2024-11-09T00:57:03.605Z","updated_at":"2026-01-29T03:12:39.297Z","avatar_url":"https://github.com/telebugs.png","language":"PHP","readme":"# Telebugs for PHP\n\n[![Package Version](https://poser.pugx.org/telebugs/telebugs/v/stable)](https://packagist.org/packages/telebugs/telebugs)\n\nRefreshingly simple error monitoring. Catch production errors automatically and\ninstantly report them to Telegram.\n\n- [Official Documentation](https://telebugs.com/docs/integrations/php)\n- [FAQ](https://telebugs.com/faq)\n- [Telebugs News](https://t.me/TelebugsNews)\n- [Telebugs Community](https://t.me/TelebugsCommunity)\n\n## Introduction\n\nAny PHP application or script can be integrated with\n[Telebugs](https://telebugs.com) using the\n[`telebugs/telebugs`](https://packagist.org/packages/telebugs/telebugs) package.\nThe package is designed to be simple and easy to use. It provides a simple API\nto send errors to Telebugs, which will then be reported to your Telegram\nproject. This guide will help you get started with Telebugs for PHP.\n\nFor full details, please refer to the [Telebugs documentation](https://telebugs.com/docs/integrations/php).\n\n## Installation\n\nInstall the package using Composer by executing:\n\n```sh\ncomposer require telebugs/telebugs\n```\n\n## Usage\n\nThis is the minimal example that you can use to test Telebugs for PHP with your\nproject:\n\n```php\n\u003c?php\nrequire 'vendor/autoload.php';\n\n// Configure Telebugs as early as possible in your application.\nTelebugs\\configure(function ($config) {\n    $config-\u003esetApiKey(\"YOUR_API_KEY\");\n});\n\ntry {\n    1 / 0;\n} catch (DivisionByZeroError $e) {\n    Telebugs\\report($e)-\u003ewait();\n}\n\necho \"An error was sent to Telebugs.\" .\n    \"It will appear in your dashboard shortly.\" .\n    \"A notification was also sent to your Telegram chat.\"\n?\u003e\n```\n\nReplace `YOUR_API_KEY` with your actual API key. You can ask\n[@TelebugsBot](http://t.me/TelebugsBot) for your API key or find it in\nyour project's dashboard.\n\n## Telebugs for PHP integrations\n\nTelebugs for PHP is a standalone package that can be used with any PHP\napplication or script. It can be integrated with any PHP framework or library.\n\nWe provide official integrations for the following PHP platforms:\n\n- [Laravel](https://github.com/telebugs/telebugs-laravel)\n\n## PHP support policy\n\nTelebugs for PHP supports the following PHP versions:\n\n- PHP 8.1+\n\nIf you need support older PHP versions, please contact us at\n[help@telebugs.com](mailto:help@telebugs.com).\n\n## Development\n\nAfter checking out the repo, run `composer install` to install dependencies.\nThen, run `composer test` to run the tests.\n\nTo check the code with PHPStan, run `composer phpstan`.\n\nTo release a new version, simply push a new tag to the repository. Packagist\nwill automatically update the package.\n\n## Contributing\n\nBug reports and pull requests are welcome on GitHub at https://github.com/telebugs/telebugs-php.\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftelebugs%2Ftelebugs-php","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftelebugs%2Ftelebugs-php","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftelebugs%2Ftelebugs-php/lists"}