akaunting/laravel-module 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

akaunting/laravel-module

最新稳定版本:4.0.3

Composer 安装命令:

composer require akaunting/laravel-module

包简介

Module management package for Laravel

README 文档

README

Downloads StyleCI License

This package intends to make your Laravel app extensible via modules. A module is a kinda small Laravel app, shipping with its own views, controllers, models, etc.

Getting Started

1. Install

Run the following command:

composer require akaunting/laravel-module

2. Register

Service provider and facade will be registered automatically. If you want to register them manually in config/app.php:

Akaunting\Module\Facade::class,
Akaunting\Module\Providers\Laravel::class,

3. Publish

Publish config file.

php artisan vendor:publish --tag=module

4. Configure

You can change the configuration from config/module.php file

5. Autoloading

By default, the module classes are not loaded automatically. You can autoload your modules using psr-4. For example:

{
  "autoload": {
    "psr-4": {
      "App\\": "app/",
      "Modules\\": "modules/"
    }
  }
}

Tip: don't forget to run composer dump-autoload afterwards.

Usage

Check out the wiki about the usage and further documentation.

Changelog

Please see Releases for more information what has changed recently.

Contributing

Pull requests are more than welcome. You must follow the PSR coding standards.

Credits

License

The MIT License (MIT). Please see LICENSE for more information.

统计信息

  • 总下载量: 224.49k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 125
  • 点击次数: 1
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 125
  • Watchers: 11
  • Forks: 32
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2021-03-05