Skip to content

Symfony ToolboxBundle. Some tools to make life easier.

License

Notifications You must be signed in to change notification settings

Clavicula-Nox/ToolboxBundle

Repository files navigation

ToolboxBundle

SensioLabsInsight Latest Stable Version License Total Downloads Symfony codecov Build Status

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(),
        );
    }

    // ...
}

Documentation