Download the PHP package tyrans/laravel_module without Composer
On this page you can find all versions of the php package tyrans/laravel_module. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Please rate this library. Is it a good library?
Informations about the package laravel_module
Laravel 模块化开发脚手架
创建模块:
你可以通过在终端中运行 create-project
命令来创建一个 ProductModule
:
项目创建完成后需要对项目 composer.json
文件进行初始化配置:
也可以使用简化命令:
然后执行 composer
命令:
目录结构说明
使用说明
模块中的开发过程与在 laravel
框架中无异:
模块化开发规范 (概述)
使用模块化开发,主要为了最终达到以下目的:
- 针对相同问题选择统一的解决方案
- 规范化代码结构
- 抽象业务核心,便于在不同的业务场景使用
代码分离
- 使用
Request
处理表单、权限验证 Model
只提供属性申明、依赖关系、读写器controller
实现针对具体的场景实现业务拼接业务核心代码
创建到自建类、扩展、抽象接口中- 模块允许存在本地调试路由,但禁止上传到版本管理服务器
- 模块中不建议创建控制器
- 模块独立的配置信息申明在模块中,一般配置信息通过
env
完成 - 项目中主要实现对模块的调用、环境配置、控制器、路由的申明;
详情查看 《laravel模块化开发规范》 - 待补充.
All versions of laravel_module with dependencies
PHP Build Version
Package Version
The package tyrans/laravel_module contains the following files
Loading the files please wait ....