sumocoders/fork-cms-module-generator
最新稳定版本:1.9.0
Composer 安装命令:
composer require sumocoders/fork-cms-module-generator
包简介
The generator for Fork modules
README 文档
README
Installation
Use composer to install the package to your dev dependencies.
composer require --dev sumocoders/fork-cms-module-generator
Register the following bundles in your Fork app/AppKernel.php, but only load them in dev or test mode.
class AppKernel extends Kernel
{
/**
* Load all the bundles we'll be using in our application.
*/
public function registerBundles(): array
{
...
if (in_array($this->getEnvironment(), ['dev', 'test'])) {
...
$bundles[] = new \Matthias\SymfonyConsoleForm\Bundle\SymfonyConsoleFormBundle();
$bundles[] = new \ModuleGenerator\ModuleGeneratorBundle();
}
return $bundles;
}
...
}
Tests
You can run the tests with composer test
统计信息
- 总下载量: 53.21k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 4
- 点击次数: 2
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2017-12-29