clavicula-nox / toolbox-bundle
Symfony ToolboxBundle
Installs: 7
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
Type:symfony-bundle
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
Requirements
- php 7.1+
- Symfony 3.4
Reporting an issue or a feature request
Issues and feature requests are tracked in the Github issue tracker.
Installation
Step 1: Download the Bundle
$ composer require clavicula-nox/toolbox-bundle
This command requires you to have Composer installed globally, as explained in the Composer documentation.
Step 2: Enable the Bundle
<?php // app/AppKernel.php // ... class AppKernel extends Kernel { public function registerBundles() { $bundles = array( // ... new ClaviculaNox\ToolboxBundle\ToolboxBundle(), ); } // ... }