clavicula-nox/toolbox-bundle

Symfony ToolboxBundle

1.2.3 2020-05-04 13:10 UTC

This package is auto-updated.

Last update: 2024-09-04 22:26:05 UTC


README

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