panelis-php/module
Composer 安装命令:
composer require panelis-php/module
包简介
Monitor installed Panelis packages, including versions, dependencies, and module details
关键字:
README 文档
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).
统计信息
- 总下载量: 0
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 1
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2026-06-24