omt / core-modules
核心模块管理
6.1.2
2019-11-06 15:54 UTC
Requires
- php: >=7.2
- ext-json: *
Requires (Dev)
- friendsofphp/php-cs-fixer: ^2.15
- laravel/framework: 6.0.*
- mockery/mockery: ~1.0
- orchestra/testbench: ^4.0
- phpstan/phpstan: ^0.9.2
- phpunit/phpunit: ~7.0|~8.0
- spatie/phpunit-snapshot-assertions: ^2.1.0
- 6.1.2
- 6.1.0
- dev-master / 6.0.x-dev
- 6.0.0
- 5.1.0
- 5.0.x-dev
- 5.0.1
- 5.0.0
- 4.1.0
- 4.0.x-dev
- 4.0.0
- 3.3.1
- 3.3.0
- 3.2.1
- 3.2.0
- 3.1.0
- 3.0.x-dev
- 3.0.1
- 3.0.0
- 2.7.0
- 2.6.0
- 2.5.0
- 2.4.1
- 2.4.0
- 2.3.0
- 2.2.1
- 2.2.0
- 2.1.0
- 2.0.x-dev
- 2.0.0
- 1.27.2
- 1.27.1
- 1.27.0
- 1.26.0
- 1.25.1
- 1.25.0
- 1.24.0
- 1.23.0
- 1.22.0
- 1.21.0
- 1.20.0
- 1.19.0
- 1.18.0
- 1.17.1
- 1.17.0
- 1.16.0
- 1.15.0
- 1.14.0
- 1.13.1
- 1.13.0
- 1.0.x-dev
- 0.12.0
- 0.11.2
- 0.11.1
- 0.11.0
- 0.10
- 0.9
- 0.8
- 0.7
- 0.6
- 0.5
- 0.4
- 0.3
- 0.2
- 0.1
- dev-feature/use-laravel-migrator
- dev-feature/database-modules
This package is auto-updated.
Last update: 2024-09-07 03:13:41 UTC
README
maoht87/core-modules
是一个Laravel包,用于通过模块来管理你的大型Laravel应用程序。模块就像是一个Laravel包,它包含一些视图、控制器或模型。此包支持并已在Laravel 6中进行了测试。
安装
要通过Composer安装,请运行以下命令
composer require maoht87/core-modules
此包将自动注册服务提供者和别名。
可选地,通过运行以下命令发布包的配置文件
php artisan vendor:publish --provider="Omt\Modules\LaravelModulesServiceProvider"
自动加载
默认情况下,模块类不会自动加载。你可以使用 psr-4
来自动加载你的模块。例如
{ "autoload": { "psr-4": { "App\\": "app/", "Modules\\": "Modules/" } } }
提示:别忘了之后运行 composer dump-autoload
。
许可证
MIT许可证(MIT)。请参阅 许可证文件 了解更多信息。