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(9mo ago)0339↓78.1%MITPHPPHP ^8.0

Since Oct 5Pushed 9mo agoCompare

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

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

32

—

LowBetter than 69% of packages

Maintenance58

Moderate activity, may be stable

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

271d 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.3k127.1M203](/packages/sentry-sentry-laravel)[stayallive/wp-sentry

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

385220.2k](/packages/stayallive-wp-sentry)[helsingborg-stad/municipio

A bootstrap theme for creating municipality sites.

4028.5k10](/packages/helsingborg-stad-municipio)[october/rain

October Rain Library

1601.7M83](/packages/october-rain)[pressbooks/pressbooks

Pressbooks is an open source book publishing tool built on a WordPress multisite platform. Pressbooks outputs books in multiple formats, including PDF, EPUB, web, and a variety of XML flavours, using a theming/templating system, driven by CSS.

45444.2k1](/packages/pressbooks-pressbooks)[mediawiki/maps

Adds various mapping features to MediaWiki

84152.3k3](/packages/mediawiki-maps)

PHPackages © 2026

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