PHPackages                             pieceofcake2/sentry - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Logging &amp; Monitoring](/categories/logging)
4. /
5. pieceofcake2/sentry

ActiveCakephp-plugin[Logging &amp; Monitoring](/categories/logging)

pieceofcake2/sentry
===================

v1.0.0(7mo ago)0288↓50%MITPHPPHP ^8.0

Since Oct 5Pushed 7mo agoCompare

[ Source](https://github.com/pieceofcake2/sentry)[ Packagist](https://packagist.org/packages/pieceofcake2/sentry)[ RSS](/packages/pieceofcake2-sentry/feed)WikiDiscussions 1.x Synced 1mo ago

READMEChangelogDependencies (4)Versions (2)Used By (0)

CakePHP2 Sentry Plugin
======================

[](#cakephp2-sentry-plugin)

[![GitHub License](https://camo.githubusercontent.com/4d1a2f951bd4bcbd42f84352d2b00d846b2feaa690a0918332fee537d8085f56/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6c6963656e73652f70696563656f6663616b65322f73656e7472793f6c6162656c3d4c6963656e7365)](LICENSE)[![Packagist Version](https://camo.githubusercontent.com/9683afba398cc0771c084349ea7afd0491049f520b543255880bbda63060cd56/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f70696563656f6663616b65322f73656e7472793f6c6162656c3d5061636b6167697374)](https://packagist.org/packages/pieceofcake2/sentry)[![PHP](https://camo.githubusercontent.com/c935830e3514efa32460435da174c3b646f91a7f2fbd6d698360e06ee293eb14/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f646570656e64656e63792d762f70696563656f6663616b65322f73656e7472792f7068703f6c6f676f3d706870266c6f676f436f6c6f723d253233464646464646266c6162656c3d504850266c6162656c436f6c6f723d25323337373742423426636f6c6f723d253233464646464646)](https://camo.githubusercontent.com/c935830e3514efa32460435da174c3b646f91a7f2fbd6d698360e06ee293eb14/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f646570656e64656e63792d762f70696563656f6663616b65322f73656e7472792f7068703f6c6f676f3d706870266c6f676f436f6c6f723d253233464646464646266c6162656c3d504850266c6162656c436f6c6f723d25323337373742423426636f6c6f723d253233464646464646)[![CakePHP](https://camo.githubusercontent.com/8c83e42cce5d2878d742e5f37eb14bd138127a19cc13636cdc7a1bd8104e3db0/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f646570656e64656e63792d762f70696563656f6663616b65322f73656e7472792f70696563656f6663616b65322f63616b657068703f6c6f676f3d63616b65706870266c6f676f436f6c6f723d253233464646464646266c6162656c3d43616b65504850266c6162656c436f6c6f723d25323344333343343326636f6c6f723d253233464646464646)](https://camo.githubusercontent.com/8c83e42cce5d2878d742e5f37eb14bd138127a19cc13636cdc7a1bd8104e3db0/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f646570656e64656e63792d762f70696563656f6663616b65322f73656e7472792f70696563656f6663616b65322f63616b657068703f6c6f676f3d63616b65706870266c6f676f436f6c6f723d253233464646464646266c6162656c3d43616b65504850266c6162656c436f6c6f723d25323344333343343326636f6c6f723d253233464646464646)[![Tests](https://camo.githubusercontent.com/fffbe7683be9294ea630a748bd62524fb94d0e00b15d12b601635c8801b6718d/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f70696563656f6663616b65322f73656e7472792f74657374732e796d6c3f6c6162656c3d5465737473)](https://github.com/pieceofcake2/sentry/actions/workflows/tests.yml)[![Codecov](https://camo.githubusercontent.com/a6eeef603287b68bc107796a1162140c99ea393fcf42fd731d4992e8830c9815/68747470733a2f2f696d672e736869656c64732e696f2f636f6465636f762f632f67682f70696563656f6663616b65322f73656e7472793f6c6162656c3d436f766572616765)](https://codecov.io/gh/pieceofcake2/sentry)

Installation
------------

[](#installation)

```
composer require pieceofcake2/sentry

```

Config
------

[](#config)

`Config/core.php`

```
Configure::write('Sentry', [
    'dsn' => 'SENTRY_DSN',
    'options' => [
        'environment' => 'SENTRY_ENVIRONMENT',
        'release' => 'SENTRY_RELEASE',
    ],
    'ignoredExceptions' => [
        NotFoundException::class,
        MissingControllerException::class,
        MissingActionException::class,
    ]
]);
App::uses('SentryErrorHandler', 'Sentry.Lib/Error');
```

```
Configure::write('Error', [
    'handler' => 'SentryErrorHandler::handleError',
    'level' => E_ALL & ~E_DEPRECATED & ~E_USER_DEPRECATED,
    'trace' => true,
]);
```

```
Configure::write('Exception', [
    'handler' => 'SentryErrorHandler::handleException',
    'renderer' => 'ExceptionRenderer',
    'log' => true,
]);
```

###  Health Score

33

—

LowBetter than 75% of packages

Maintenance63

Regular maintenance activity

Popularity14

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity40

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~0 days

Total

2

Last Release

225d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/578548?v=4)[TSURU](/maintainers/ttsuru)[@ttsuru](https://github.com/ttsuru)

---

Top Contributors

[![ttsuru](https://avatars.githubusercontent.com/u/578548?v=4)](https://github.com/ttsuru "ttsuru (11 commits)")

### Embed Badge

![Health badge](/badges/pieceofcake2-sentry/health.svg)

```
[![Health](https://phpackages.com/badges/pieceofcake2-sentry/health.svg)](https://phpackages.com/packages/pieceofcake2-sentry)
```

###  Alternatives

[sentry/sentry-laravel

Laravel SDK for Sentry (https://sentry.io)

1.3k114.3M154](/packages/sentry-sentry-laravel)[stayallive/wp-sentry

A (unofficial) WordPress plugin to report PHP and JavaScript errors to Sentry.

379197.9k](/packages/stayallive-wp-sentry)[mito/yii2-sentry

Yii 2 extension for Sentry

92377.7k](/packages/mito-yii2-sentry)[lukeyouell/craft-sentry

Error tracking that helps developers monitor and fix crashes in real time. Iterate continuously. Boost efficiency. Improve user experience.

17123.4k1](/packages/lukeyouell-craft-sentry)[sandreu/cake-sentry

Sentry error handler plugin for CakePHP2

1640.2k](/packages/sandreu-cake-sentry)[itgalaxy/sentry-integration

A (unofficial) WordPress plugin to report PHP and JavaScript errors to Sentry

105.6k](/packages/itgalaxy-sentry-integration)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
