clavicula-nox / toolbox-bundle
Symfony ToolboxBundle
1.2.3
2020-05-04 13:10 UTC
Requires
- php: ^7.1
- symfony/console: ^3.0
- symfony/framework-bundle: ^3.0
- symfony/yaml: ^3.2|^4.1
Requires (Dev)
- phpunit/phpunit: ~6.0
README
需求
- php 7.1+
- Symfony 3.4
报告问题或功能请求
问题和功能请求在 Github 问题跟踪器中跟踪。
安装
步骤 1: 下载组件
$ composer require clavicula-nox/toolbox-bundle
此命令要求您全局安装 Composer,如Composer 文档中所述。
步骤 2: 启用组件
<?php // app/AppKernel.php // ... class AppKernel extends Kernel { public function registerBundles() { $bundles = array( // ... new ClaviculaNox\ToolboxBundle\ToolboxBundle(), ); } // ... }