Bundle 包 Module 模块化 Laravel5 Bundles-Modules

码农软件 · 软件分类 · 常用工具包 · 2019-08-13 22:43:32

软件介绍

Laravel 5 Bundles-Modules

Bundles-Modules 是一个把应用分成多个包,一个包分成若干个小模块。

这是 laravel5 框架的 bundle 包系统,每个 bundle 都 module 模块化,模块与模块之前互不影响,全新开发目录,适合团队开发,松耦合,可以抛弃自带的 APP 目录了,使用全新的开发目录结构/,使开发变得更简单。

开发目录结构:

bundles
  ├── [Frontend|Backend|Wechat|Mobile|Api]
    ├── Modules/
      ├── Home/
        ├── Assets/
        ├── Console/
        ├── Database/
          ├── Migrations/
          ├── Seeders/
        ├── Entities/
        ├── HttpApi/
          ├── Controllers/
          ├── Middleware/
          ├── Requests/
          ├── routes.php
        ├── HttpView/
          ├── Controllers/
          ├── Middleware/
          ├── Requests/
          ├── routes.php
        ├── Providers/
           ├── HomeServiceProvider.php
        ├── Resources/
          ├── lang/
          ├── views/
            ├── api/
            ├── view/
        ├── Repositories/
        ├── Middleware/
        ├── Events/
        ├── Listeners/
        ├── Jobs/
        ├── Exceptions/
        ├── composer.json
        ├── HomeModule.php
    ├── Services/
      ├── Service.php
      ├── //....
    ├── composer.json
    ├── [Frontend|Backend|Wechat|Mobile|Api]Bundle.php
  ├── AppKernl.php

本文地址:https://codercto.com/soft/d/12311.html

The Effective Engineer

The Effective Engineer

Edmond Lau / The Effective Bookshelf, Palo Alto, CA. / 2015-3-19 / USD 39.00

Introducing The Effective Engineer — the only book designed specifically for today's software engineers, based on extensive interviews with engineering leaders at top tech companies, and packed with h......一起来看看 《The Effective Engineer》 这本书的介绍吧!

Markdown 在线编辑器
Markdown 在线编辑器

Markdown 在线编辑器

正则表达式在线测试
正则表达式在线测试

正则表达式在线测试

RGB HSV 转换
RGB HSV 转换

RGB HSV 互转工具