PHPackages                             jeffersongoncalves/filament-matomo - 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. jeffersongoncalves/filament-matomo

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

jeffersongoncalves/filament-matomo
==================================

Filament plugin for Matomo Analytics with Settings Page — manage tracking configuration directly from your Filament panel via spatie/laravel-settings.

v3.1.1(2mo ago)410MITPHPPHP ^8.2CI passing

Since Mar 5Pushed 1mo ago1 watchersCompare

[ Source](https://github.com/jeffersongoncalves/filament-matomo)[ Packagist](https://packagist.org/packages/jeffersongoncalves/filament-matomo)[ Docs](https://github.com/jeffersongoncalves/filament-matomo)[ GitHub Sponsors](https://github.com/jeffersongoncalves)[ RSS](/packages/jeffersongoncalves-filament-matomo/feed)WikiDiscussions 3.x Synced 1mo ago

READMEChangelog (9)Dependencies (6)Versions (13)Used By (0)

[![Filament Matomo](https://raw.githubusercontent.com/jeffersongoncalves/filament-matomo/3.x/art/jeffersongoncalves-filament-matomo.jpg)](https://raw.githubusercontent.com/jeffersongoncalves/filament-matomo/3.x/art/jeffersongoncalves-filament-matomo.jpg)

Filament Matomo
===============

[](#filament-matomo)

[![Latest Version on Packagist](https://camo.githubusercontent.com/67650ed35948449ef362612d328f350c7bd3d807c3b63779c5ab48646b2fd5d1/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6a6566666572736f6e676f6e63616c7665732f66696c616d656e742d6d61746f6d6f2e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/jeffersongoncalves/filament-matomo)[![GitHub Code Style Action Status](https://camo.githubusercontent.com/28d31154409e750e3de1ef7de7e6ab96003d204be2d4ecadb240d30b0c8f3149/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f6a6566666572736f6e676f6e63616c7665732f66696c616d656e742d6d61746f6d6f2f6669782d7068702d636f64652d7374796c652d6973737565732e796d6c3f6272616e63683d332e78266c6162656c3d636f64652532307374796c65267374796c653d666c61742d737175617265)](https://github.com/jeffersongoncalves/filament-matomo/actions?query=workflow%3A%22Fix+PHP+code+styling%22+branch%3A3.x)[![Total Downloads](https://camo.githubusercontent.com/53a2486e76f7df8fc0c119de53fce722d4f5327b34228ef10d6d47970bb9b2b1/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6a6566666572736f6e676f6e63616c7665732f66696c616d656e742d6d61746f6d6f2e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/jeffersongoncalves/filament-matomo)[![License](https://camo.githubusercontent.com/c6c590d57bc44f1f17eff50188b22dca8abd5cd23cf738c7031babc53ec4182f/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f6c2f6a6566666572736f6e676f6e63616c7665732f66696c616d656e742d6d61746f6d6f2e7376673f7374796c653d666c61742d737175617265)](LICENSE.md)

Filament plugin for Matomo Analytics with **Settings Page** — manage tracking configuration directly from your Filament panel via [spatie/laravel-settings](https://github.com/spatie/laravel-settings).

Requirements
------------

[](#requirements)

- PHP 8.2 or higher
- Laravel 11.28 or higher
- Filament 5.x
- [jeffersongoncalves/laravel-matomo](https://github.com/jeffersongoncalves/laravel-matomo) ^2.0

Version Compatibility
---------------------

[](#version-compatibility)

BranchFilamentPHP1.x^3.0^8.22.x^4.0^8.23.x^5.0^8.2Installation
------------

[](#installation)

You can install the package via composer:

Install the package via Composer:

```
composer require jeffersongoncalves/filament-matomo
```

This package depends on [`jeffersongoncalves/laravel-matomo`](https://github.com/jeffersongoncalves/laravel-matomo) which provides the core Matomo integration for Laravel. It will be automatically installed as a dependency.

Publish and run the settings migration from `laravel-matomo`:

```
php artisan vendor:publish --tag=matomo-settings-migrations
php artisan migrate
```

Usage
-----

[](#usage)

Register the plugin in your Filament `PanelProvider`:

```
use JeffersonGoncalves\Filament\Matomo\MatomoPlugin;

public function panel(Panel $panel): Panel
{
    return $panel
        // ...
        ->plugins([
            MatomoPlugin::make(),
        ]);
}
```

Once registered, the plugin will:

1. **Inject the Matomo tracking script** into the `` of your Filament panels automatically
2. **Add a Settings Page** where you can manage all Matomo tracking configuration directly from the admin panel

### Disabling the Settings Page

[](#disabling-the-settings-page)

If you only want the tracking script injection without the settings page:

```
MatomoPlugin::make()
    ->settingsPage(false),
```

### Available Settings

[](#available-settings)

SettingDescription**Domains**Domain(s) to track**Site ID**Your Matomo Site ID**Matomo Host**Matomo server URL (without protocol)**PHP Tracking File**PHP tracking endpoint (default: `matomo.php`)**JS Tracking File**JavaScript tracking file (default: `matomo.js`)### Translations

[](#translations)

The plugin includes translations for English and Brazilian Portuguese (`pt_BR`). You can publish the translations to customize them:

```
php artisan vendor:publish --tag=filament-matomo-translations
```

Changelog
---------

[](#changelog)

Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.

Contributing
------------

[](#contributing)

Please see [CONTRIBUTING](.github/CONTRIBUTING.md) for details.

Security Vulnerabilities
------------------------

[](#security-vulnerabilities)

Please review [our security policy](../../security/policy) on how to report security vulnerabilities.

Credits
-------

[](#credits)

- [Jèfferson Gonçalves](https://github.com/jeffersongoncalves)
- [All Contributors](../../contributors)

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

44

—

FairBetter than 92% of packages

Maintenance89

Actively maintained with recent releases

Popularity10

Limited adoption so far

Community11

Small or concentrated contributor base

Maturity57

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 72.3% 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 ~36 days

Recently: every ~7 days

Total

12

Last Release

40d ago

Major Versions

v2.0.0 → v3.0.02026-02-16

v1.1.0 → v2.1.02026-02-22

v2.1.0 → v3.1.02026-02-22

v2.1.1 → v3.1.12026-03-04

1.x-dev → 3.x-dev2026-04-03

PHP version history (2 changes)v1.0.0PHP ^8.2|^8.3

v3.0.0PHP ^8.2

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/411493?v=4)[Jefferson Gonçalves](/maintainers/jeffersongoncalves)[@jeffersongoncalves](https://github.com/jeffersongoncalves)

---

Top Contributors

[![jeffersongoncalves](https://avatars.githubusercontent.com/u/411493?v=4)](https://github.com/jeffersongoncalves "jeffersongoncalves (34 commits)")[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (9 commits)")[![github-actions[bot]](https://avatars.githubusercontent.com/in/15368?v=4)](https://github.com/github-actions[bot] "github-actions[bot] (3 commits)")[![renovate[bot]](https://avatars.githubusercontent.com/in/2740?v=4)](https://github.com/renovate[bot] "renovate[bot] (1 commits)")

---

Tags

analyticsfilamentfilament-pluginfilament-settings-pagelaravelmatomomatomo-analyticsphpspatie-settingslaraveljeffersongoncalvesfilament-matomo

###  Code Quality

Static AnalysisPHPStan

### Embed Badge

![Health badge](/badges/jeffersongoncalves-filament-matomo/health.svg)

```
[![Health](https://phpackages.com/badges/jeffersongoncalves-filament-matomo/health.svg)](https://phpackages.com/packages/jeffersongoncalves-filament-matomo)
```

###  Alternatives

[guava/calendar

Adds support for vkurko/calendar to Filament PHP.

298241.0k3](/packages/guava-calendar)[bezhansalleh/filament-google-analytics

Google Analytics integration for FilamentPHP

205144.8k5](/packages/bezhansalleh-filament-google-analytics)[jibaymcs/filament-tour

Bring the power of DriverJs to your Filament panels and start a tour !

12247.8k](/packages/jibaymcs-filament-tour)[marcelweidum/filament-expiration-notice

Customize the livewire expiration notice

9169.0k4](/packages/marcelweidum-filament-expiration-notice)[hydrat/filament-table-layout-toggle

Filament plugin adding a toggle button to tables, allowing user to switch between Grid and Table layouts.

6292.3k1](/packages/hydrat-filament-table-layout-toggle)[outerweb/filament-settings

Filament integration for the outerweb/settings package

3690.9k4](/packages/outerweb-filament-settings)

PHPackages © 2026

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