{"id":40152235,"url":"https://github.com/absszero/laravel-stackdriver-error-reporting","last_synced_at":"2026-01-19T15:30:37.607Z","repository":{"id":38109353,"uuid":"146889628","full_name":"absszero/laravel-stackdriver-error-reporting","owner":"absszero","description":"Stackdriver Error Reporting for Laravel","archived":false,"fork":false,"pushed_at":"2025-03-15T05:52:44.000Z","size":148,"stargazers_count":9,"open_issues_count":0,"forks_count":3,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-09T13:53:56.619Z","etag":null,"topics":["error-reporting","laravel-5-package","laravel-6-package","stackdriver"],"latest_commit_sha":null,"homepage":null,"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/absszero.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","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},"funding":{"ko_fi":"absszero"}},"created_at":"2018-08-31T12:34:01.000Z","updated_at":"2025-03-15T05:51:02.000Z","dependencies_parsed_at":"2024-01-30T03:52:12.143Z","dependency_job_id":null,"html_url":"https://github.com/absszero/laravel-stackdriver-error-reporting","commit_stats":{"total_commits":64,"total_committers":2,"mean_commits":32.0,"dds":0.0625,"last_synced_commit":"8b0847f1cc8852b4f7fc0631cb58dbdc05b60d94"},"previous_names":[],"tags_count":21,"template":false,"template_full_name":null,"purl":"pkg:github/absszero/laravel-stackdriver-error-reporting","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/absszero%2Flaravel-stackdriver-error-reporting","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/absszero%2Flaravel-stackdriver-error-reporting/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/absszero%2Flaravel-stackdriver-error-reporting/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/absszero%2Flaravel-stackdriver-error-reporting/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/absszero","download_url":"https://codeload.github.com/absszero/laravel-stackdriver-error-reporting/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/absszero%2Flaravel-stackdriver-error-reporting/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28573010,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-19T14:39:55.009Z","status":"ssl_error","status_checked_at":"2026-01-19T14:39:01.217Z","response_time":67,"last_error":"SSL_read: 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":["error-reporting","laravel-5-package","laravel-6-package","stackdriver"],"created_at":"2026-01-19T15:30:37.063Z","updated_at":"2026-01-19T15:30:37.602Z","avatar_url":"https://github.com/absszero.png","language":"PHP","funding_links":["https://ko-fi.com/absszero"],"categories":[],"sub_categories":[],"readme":"# Stackdriver Error Reporting for Laravel\n\n![actions/workflows/run-tests.yaml](https://github.com/absszero/laravel-stackdriver-error-reporting/actions/workflows/run-tests.yaml/badge.svg)\n\n\n## Requirements\n\nLaravel `5.1` ~ `12.x`\n\n## Installation\n\n1. `composer require absszero/laravel-stackdriver-error-reporting`\n\n    (For PHP7 and before version. please install `v1.8.0`)\n2. This package provides Package Auto-Discovery.\n\n    For Laravel versions before 5.5, you need to add the ServiceProvider in `config/app.php`\n    ```php\n    \u003c?php\n    ...\n    'providers' =\u003e [\n        Absszero\\ErrorReportingServiceProvider::class,\n    ```\n3. `php artisan vendor:publish --provider=\"Absszero\\ErrorReportingServiceProvider\"`\n\n## Configuration\n1. Get [service account credentials](https://cloud.google.com/docs/authentication/getting-started)\n    with the role `logging.logWriter` ([docs](https://cloud.google.com/error-reporting/docs/iam?hl=en#iam_roles))\n\n2. Store the key file in your project directory and refer to it in your `.env` like this:\n    ```\n    GOOGLE_APPLICATION_CREDENTIALS=/My_Authentication.json\n    ```\n\n3. For Laravel 11 and after versions. Edit `bootstrap/app.php`.\n\n    ```php\n        -\u003ewithExceptions(function (Exceptions $exceptions) {\n            $exceptions-\u003ereport(function (\\Throwable $e) {\n                (new \\Absszero\\ErrorReporting)-\u003ereport($e);\n            });\n    ```\n\n\n3. For Laravel 10 and before versions. Edit `app/Exceptions/Handler.php`.\n\n   For Laravel 9 and after versions.\n\n    ```php\n    \u003c?php\n        public function register()\n        {\n            $this-\u003ereportable(function (Throwable $e) {\n                (new \\Absszero\\ErrorReporting)-\u003ereport($e);\n            });\n        }\n    ```\n\n    For PHP version before 7, replace `\\Throwable` with `\\Exception`.\n\n    ```php\n    \u003c?php\n        public function report(\\Throwable $exception)\n        {\n            parent::report($exception);\n            if ($this-\u003eshouldReport($exception)) {\n                (new \\Absszero\\ErrorReporting)-\u003ereport($exception);\n            }\n        }\n    ```\n\n\n\n## Contributing\n\n1. Fork it!\n2. Create your feature branch: `git checkout -b my-new-feature`\n3. Commit your changes: `git commit -am 'Add some feature'`\n4. Push to the branch: `git push origin my-new-feature`\n5. Submit a pull request :D\n\n## Credits\n\nTODO: Write credits\n\n## License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fabsszero%2Flaravel-stackdriver-error-reporting","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fabsszero%2Flaravel-stackdriver-error-reporting","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fabsszero%2Flaravel-stackdriver-error-reporting/lists"}