techneedz/responsive-debug-bundle

This package is abandoned and no longer maintained. No replacement package was suggested.

A bundle adding some debug tools for responsiveness

1.0.0 2016-12-04 18:56 UTC

This package is not auto-updated.

Last update: 2018-02-14 17:05:05 UTC


README

SensioLabsInsight Scrutinizer Code Quality Build Status Code Coverage Total Downloads Latest Stable Version License

A bundle adding some debug tools for responsiveness.

Installation

  1. Download the Bundle

    Open a command console, enter your project directory and execute the following command to download the latest stable version of this bundle:

    $ composer require --dev techneedz/responsive-debug-bundle

    This command requires you to have Composer installed globally, as explained in the installation chapter of the Composer documentation.

  2. Enable the Bundle

    Add the following line in the app/AppKernel.php file to enable this bundle only for the dev environment:

    <?php
    // app/AppKernel.php
    
    // ...
    class AppKernel extends Kernel
    {
        public function registerBundles()
        {
            // ...
            if (in_array($this->getEnvironment(), array('dev', 'test'))) {
                $bundles[] = new TechNeedz\ResponsiveDebugBundle\TechNeedzResponsiveDebugBundle();
            }
    
            return $bundles;
        }
    
        // ...
    }

Documentation

The main documentation can be found here.

License

TechNeedzResponsiveDebugBundle is licensed under MIT license.
For more information, read LICENSE file.