PHPackages                             cakemanager/cakephp-analyzer - 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. [Utility &amp; Helpers](/categories/utility)
4. /
5. cakemanager/cakephp-analyzer

ActiveCakephp-plugin[Utility &amp; Helpers](/categories/utility)

cakemanager/cakephp-analyzer
============================

Analyzer plugin for CakePHP

1923PHP

Since Oct 23Pushed 10y ago1 watchersCompare

[ Source](https://github.com/cakemanager/cakephp-analyzer)[ Packagist](https://packagist.org/packages/cakemanager/cakephp-analyzer)[ RSS](/packages/cakemanager-cakephp-analyzer/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependenciesVersions (1)Used By (0)

Analyzer plugin for CakePHP 3.X
===============================

[](#analyzer-plugin-for-cakephp-3x)

This Analyzer Plugin is a plugin that tracks and reports website traffic.

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

[](#installation)

You can install this plugin into your CakePHP application using [composer](http://getcomposer.org).

The recommended way to install composer packages is:

```
composer require cakemanager/cakephp-analyzer:dev-master

```

Now load the plugin via your shell:

```
$ bin/cake plugin load -b -r Analyzer

```

Or put the following in your `config/bootstrap.php`:

```
Plugin::load('Analyzer', ['bootstrap' => true, 'routes' => true]);

```

Run the migrations:

```
$ bin/cake migrations migrate -p Analyzer

```

From now on all requests will be reported!

Usage
-----

[](#usage)

### Ignore

[](#ignore)

You can ignore to register request by putting the following code in your `config/bootstrap.php`:

```
Configure::write('Analyzer.Ignore.key', [
    'plugin' => 'DebugKit'
    'controller' => 'UsersController',
    'action' => 'index',
    'prefix' => 'admin',
]);

```

So, for example; this code will ignore all `DebugKit` requests:

```
Configure::write('Analyzer.Ignore.debug_kit', [
    'plugin' => 'DebugKit'
]);

```

### Finders

[](#finders)

The `RequestsTable` has the following finders:

#### Between

[](#between)

Set start- and end-date:

```
    $query->find('Between', [
        'start' => '-3 days',
        'end' => 'now',
    ]);

```

#### UniqueVisitors

[](#uniquevisitors)

> Not valid yet!

Find only unique visitors:

```
    $query->find('UniqueVisitors');

```

### AnalyzerComponent

[](#analyzercomponent)

The `AnalyzerComponent` allows you to get insights in your traffic. The following methods are available:

> There are no methods yet, they will probably be replaced by the Table's finders.

###  Health Score

23

—

LowBetter than 27% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity13

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity41

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.

### Community

Maintainers

![](https://www.gravatar.com/avatar/db071075007a1fb258b395c5e618b3e2409fdf69a07006ae0d847a38be3d8ade?d=identicon)[bobmulder](/maintainers/bobmulder)

---

Top Contributors

[![bobmulder](https://avatars.githubusercontent.com/u/5465074?v=4)](https://github.com/bobmulder "bobmulder (2 commits)")

### Embed Badge

![Health badge](/badges/cakemanager-cakephp-analyzer/health.svg)

```
[![Health](https://phpackages.com/badges/cakemanager-cakephp-analyzer/health.svg)](https://phpackages.com/packages/cakemanager-cakephp-analyzer)
```

###  Alternatives

[microman/kirby-form-block-suite

Contactform based on Kirby blocks.

412.7k1](/packages/microman-kirby-form-block-suite)[digitv/yii2bootstrap4

Yii2 Bootstrap 4 widgets

142.5k](/packages/digitv-yii2bootstrap4)

PHPackages © 2026

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