techneedz / responsive-debug-bundle
A bundle adding some debug tools for responsiveness
Installs: 167
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:bundle
Requires
- symfony/config: ^2.8|^3.0
- symfony/dependency-injection: ^2.8|^3.0
- symfony/http-kernel: ^2.8|^3.0
- symfony/web-profiler-bundle: ^2.8|^3.0
Requires (Dev)
- friendsofphp/php-cs-fixer: ^2.0
- phpunit/phpunit: ^5.7
This package is not auto-updated.
Last update: 2018-02-14 17:05:05 UTC
README
A bundle adding some debug tools for responsiveness.
Installation
-
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.
-
Enable the Bundle
Add the following line in the
app/AppKernel.php
file to enable this bundle only for thedev
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.