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.
$ composer require clavicula-nox/toolbox-bundle
This command requires you to have Composer installed globally, as explained in the Composer documentation.
<?php
// app/AppKernel.php
// ...
class AppKernel extends Kernel
{
public function registerBundles()
{
$bundles = array(
// ...
new ClaviculaNox\ToolboxBundle\ToolboxBundle(),
);
}
// ...
}