panelis-php/module

Monitor installed Panelis packages, including versions, dependencies, and module details

Maintainers

Package info

github.com/panelis-php/module

pkg:composer/panelis-php/module

Statistics

Installs: 13

Dependents: 1

Suggesters: 0

Stars: 0

Open Issues: 1

v1.2.0 2026-06-25 03:00 UTC

README

Manage installed Panelis modules and packages from the admin panel.

Features

  • View installed Panelis modules
  • Display package information and descriptions
  • Display installed package versions
  • Display package dependencies
  • Composer-based module discovery
  • Automatic Panelis plugin discovery

Requirements

  • PHP 8.3+
  • Laravel 13+
  • Filament 5+

Installation

Install the package via Composer:

composer require panelis-php/module

Run migrations:

php artisan migrate

Usage

After installation, a Modules menu will be available in the Panelis admin panel.

The module manager automatically discovers installed Panelis packages through Composer metadata and displays information about each module.

Available information includes:

  • Package name
  • Description
  • Version
  • Dependencies

Example:

Translation
Package: panelis-php/translation
Version: 1.0.0

Manage application translations directly from the admin panel.

Module Discovery

Panelis modules are discovered automatically from Composer packages that define the panelis configuration inside their composer.json file.

Example:

{
    "name": "panelis-php/translation",
    "extra": {
        "panelis": {
            "plugins": [
                "Panelis\\Translation\\Plugins\\TranslationPlugin"
            ]
        }
    }
}

Installed modules are automatically registered and displayed in the module manager.

Creating a Module

A Panelis module is a standard Composer package that provides one or more Panelis plugins.

Example:

{
    "name": "panelis-php/example",
    "description": "Example Panelis module",
    "extra": {
        "laravel": {
          "providers": [
            "Panelis\\Example\\Providers\\ExampleServiceProvider"
          ]
        },
        "panelis": {
            "plugins": [
                "Panelis\\Example\\Plugins\\ExamplePlugin"
            ]
        }
    }
}

Once installed, the module will be discovered automatically without additional configuration.

License

The MIT License (MIT).