PHPackages                             eclipsephp/plugin-template - 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. eclipsephp/plugin-template

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

eclipsephp/plugin-template
==========================

Eclipse template for Filament plugins

v1.0.0(1y ago)00MITPHPPHP ^8.2CI passing

Since Mar 21Pushed 10mo agoCompare

[ Source](https://github.com/DataLinx/eclipsephp-plugin-template)[ Packagist](https://packagist.org/packages/eclipsephp/plugin-template)[ Docs](https://github.com/DataLinx/eclipsephp-plugin-template)[ RSS](/packages/eclipsephp-plugin-template/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (1)Dependencies (7)Versions (3)Used By (0)

Eclipse Filament plugin template
================================

[](#eclipse-filament-plugin-template)

[![Packagist PHP Version Support](https://camo.githubusercontent.com/e877b33924217ee9891a5e8fea67ac9c11c86925e6dd66d0c382e62cdc512390/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f7068702d762f65636c697073657068702f706c7567696e2d74656d706c617465)](https://camo.githubusercontent.com/e877b33924217ee9891a5e8fea67ac9c11c86925e6dd66d0c382e62cdc512390/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f7068702d762f65636c697073657068702f706c7567696e2d74656d706c617465)[![Packagist Version](https://camo.githubusercontent.com/635dc9706f1a679a9f862e178f9a86887b4aa42c7dd21ad92c80849b3bdecc11/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f65636c697073657068702f706c7567696e2d74656d706c617465)](https://camo.githubusercontent.com/635dc9706f1a679a9f862e178f9a86887b4aa42c7dd21ad92c80849b3bdecc11/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f65636c697073657068702f706c7567696e2d74656d706c617465)[![Packagist Downloads](https://camo.githubusercontent.com/d3d7fab2852b08a1417d274cb622e2056b7672a4a063e959360378b0e329334f/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f65636c697073657068702f706c7567696e2d74656d706c617465)](https://camo.githubusercontent.com/d3d7fab2852b08a1417d274cb622e2056b7672a4a063e959360378b0e329334f/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f65636c697073657068702f706c7567696e2d74656d706c617465)[![Tests](https://github.com/DataLinx/eclipsephp-plugin-template/actions/workflows/test-runner.yml/badge.svg)](https://github.com/DataLinx/eclipsephp-plugin-template/actions/workflows/test-runner.yml)[![codecov](https://camo.githubusercontent.com/0926cab0b23fe0834b1dbc1c166142e3386264b8ec8c1e14448288a0f5b65af8/68747470733a2f2f636f6465636f762e696f2f67682f446174614c696e782f65636c697073657068702d706c7567696e2d74656d706c6174652f67726170682f62616467652e7376673f746f6b656e3d31484b5359354f364957)](https://codecov.io/gh/DataLinx/eclipsephp-plugin-template)[![Conventional Commits](https://camo.githubusercontent.com/9f7a75f0e3af8cca0597d218e8708da4791128679178573a9806a514be52d2eb/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f436f6e76656e74696f6e616c253230436f6d6d6974732d312e302e302d2532334645353139363f6c6f676f3d636f6e76656e74696f6e616c636f6d6d697473266c6f676f436f6c6f723d7768697465)](https://conventionalcommits.org)[![Packagist License](https://camo.githubusercontent.com/8251396ac71722aebf98a006d25564e56c9b551e51e27545d878d6b091dee506/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f6c2f65636c697073657068702f706c7567696e2d74656d706c617465)](https://camo.githubusercontent.com/8251396ac71722aebf98a006d25564e56c9b551e51e27545d878d6b091dee506/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f6c2f65636c697073657068702f706c7567696e2d74656d706c617465)

About
-----

[](#about)

This package serves as a Filament plugin template for plugins developed by DataLinx for [Eclipse](https://github.com/DataLinx/eclipsephp-app), our web app based on Filament. It is also a reference of how such a package should be configured.

The template is opinionated — it's based on our tech stack, which includes JetBrains PhpStorm.

This template works on and expands our [PHP package template](https://github.com/DataLinx/php-package-template).

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

[](#requirements)

- PHP &gt;= 8.2 (due to Pest 3 requirement)
- Filament 3
- Filament Shield plugin (to manage permissions)

See [composer.json](composer.json) for details.

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

[](#installation)

1. Download the plugin with composer:

```
  composer require eclipsephp/plugin-template
```

2. Add it to your panel's plugins:

```
class AdminPanelProvider extends PanelProvider
{
    public function panel(Panel $panel): Panel
    {
        $panel
            ->default()
            ->id('admin')
            ->path('admin')
            ->discoverResources(in: app_path('Filament/Resources'), for: 'App\\Filament\\Resources')
            ->discoverPages(in: app_path('Filament/Pages'), for: 'App\\Filament\\Pages')
            ->plugins([
                \Eclipse\PluginTemplate\PluginTemplate::make(),
            ]);

        return $panel;
    }
}
```

3. Run migrations

```
php artisan migrate
```

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

[](#contributing)

### Issues

[](#issues)

If you have some suggestions how to make this package better, please open an issue or even better, submit a pull request.

Should you want to contribute, please see the development guidelines in the [DataLinx PHP package template](https://github.com/DataLinx/php-package-template).

### Development

[](#development)

1. All development is subject to our [PHP package development guidelines](https://github.com/DataLinx/php-package-template/blob/bc39ae340e7818614ae2aaa607e97088318dd754/docs/Documentation.md).
2. Our [Filament app development docs](https://datalinx.github.io/eclipsephp-app/) will also be helpful.
3. Any PRs will generally need to adhere to these before being merged.

#### Requirements

[](#requirements-1)

See [here](https://datalinx.github.io/eclipsephp-app/introduction/requirements.html).

#### Get started

[](#get-started)

1. Clone the git repo
2. Start the Lando container ```
    lando start
    ```
3. Install dependencies (this also runs the setup composer script) ```
    lando composer install
    ```
4. You can now develop and run tests. Happy coding 😉

💡 To manually test the plugin in the browser, see our [recommendation](https://datalinx.github.io/eclipsephp-app/plugin-development/setting-up.html), which is also [how Filament suggests package development](https://filamentphp.com/docs/3.x/support/contributing#developing-with-a-local-copy-of-filament).
However, the plugin should be universal and not dependent on our app setup or core package.

### Changelog

[](#changelog)

All notable changes to this project are automatically documented in the [CHANGELOG.md](CHANGELOG.md) file using the release workflow, based on the [release-please](https://github.com/googleapis/release-please) GitHub action.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

For all this to work, commit messages must follow the [Conventional commits](https://www.conventionalcommits.org/) specification, which is also enforced by a Git hook.

###  Health Score

29

—

LowBetter than 59% of packages

Maintenance51

Moderate activity, may be stable

Popularity0

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity51

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 98.1% 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

Unknown

Total

1

Last Release

424d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/131700?v=4)[Omer Sabic](/maintainers/SlimDeluxe)[@SlimDeluxe](https://github.com/SlimDeluxe)

---

Top Contributors

[![SlimDeluxe](https://avatars.githubusercontent.com/u/131700?v=4)](https://github.com/SlimDeluxe "SlimDeluxe (52 commits)")[![github-actions[bot]](https://avatars.githubusercontent.com/in/15368?v=4)](https://github.com/github-actions[bot] "github-actions[bot] (1 commits)")

---

Tags

laravelfilamentEclipse

###  Code Quality

TestsPest

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/eclipsephp-plugin-template/health.svg)

```
[![Health](https://phpackages.com/badges/eclipsephp-plugin-template/health.svg)](https://phpackages.com/packages/eclipsephp-plugin-template)
```

###  Alternatives

[pboivin/filament-peek

Full-screen page preview modal for Filament

253319.6k12](/packages/pboivin-filament-peek)[dotswan/filament-map-picker

Easily pick and retrieve geo-coordinates using a map-based interface in your Filament applications.

124139.3k2](/packages/dotswan-filament-map-picker)[creagia/filament-code-field

A Filamentphp input field to edit or view code data.

58289.3k3](/packages/creagia-filament-code-field)[jibaymcs/filament-tour

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

12247.8k](/packages/jibaymcs-filament-tour)[aymanalhattami/filament-context-menu

context menu (right click menu) for filament

9838.0k](/packages/aymanalhattami-filament-context-menu)[schmeits/filament-character-counter

This is a Filament character counter TextField and Textarea form field for Filament v4 and v5

33184.7k6](/packages/schmeits-filament-character-counter)

PHPackages © 2026

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