duyphan2502/hmvc-tools
Composer 安装命令:
composer require duyphan2502/hmvc-tools
包简介
README 文档
README
Some available tools for HMVC Laravel projects.
Installation
composer require duyphan2502/hmvc-tools
Update your composer.json
{
...,
"repositories": [
{
"type": "path",
"url": "./platform/core/*"
},
{
"type": "path",
"url": "./platform/plugins/*"
},
{
"type": "path",
"url": "./platform/themes/*"
}
]
}
Create new module
php artisan module:create <module-name>
For example
php artisan module:create test-module
After you create your module, open the composer.json file inside your module folder, you can see something like this
{
"name": "plugins/test-module",
"require": {},
"require-dev": {},
"autoload": {
"psr-4": {
"TestModule\\": "src/"
}
},
"extra": [],
"minimum-stability": "dev",
"description": "Test HMVC module"
}
Run this command from terminal
composer require plugins/test-module:*@dev
You might need to register your module provider to config/app.php
If you want Laravel auto register your module, you need to update the module composer.json
{
"name": "plugins/test-module",
"require": {},
"require-dev": {},
"autoload": {
"psr-4": {
"TestModule\\": "src/"
}
},
"extra": [],
"minimum-stability": "dev",
"extra": {
"laravel": {
"providers": [
"TestModule\\Providers\\ModuleServiceProvider"
]
}
},
"description": "Test HMVC module"
}
Don't forget to run composer update.
Or you can skip these actions easier by adding option --autoload when you try module:create
php artisan module:create <module-name> --autoload
Generate Model
php artisan module:make:model <module-name> <YourModelName> <your_table_name>
Generate Controller
php artisan module:make:controller <module-name> <YourControllerName> --resource
Generate Migration
php artisan module:make:migration <module-name> <your_migration_name> {--create=table} {--table=table}
For example
php artisan module:make:migration test-module create_test_table --create=test
Generate Command
php artisan module:make:command <module-name> <YourCommandName>
Generate Facade
php artisan module:make:facade <module-name> <YourFacadeName>
Generate Middleware
php artisan module:make:middleware <module-name> <YourMiddlwareName>
Generate Provider
php artisan module:make:provider <module-name> <YourProviderName>
Generate Form Request
php artisan module:make:request <module-name> <YourRequestName>
Generate Support
php artisan module:make:support <module-name> <YourSupportName>
Generate View Composer
php artisan module:make:composer <module-name> <YourViewComposerName>
Generate View
php artisan module:make:provider <module-name> <your-view-name>
duyphan2502/hmvc-tools 适用场景与选型建议
duyphan2502/hmvc-tools 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 286 次下载、GitHub Stars 达 24, 最近一次更新时间为 2020 年 03 月 28 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 duyphan2502/hmvc-tools 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 duyphan2502/hmvc-tools 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 286
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 24
- 点击次数: 11
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: Unknown
- 更新时间: 2020-03-28