Skip to content
This repository has been archived by the owner on Jan 12, 2023. It is now read-only.

Latest commit

 

History

History
51 lines (26 loc) · 882 Bytes

README.md

File metadata and controls

51 lines (26 loc) · 882 Bytes

Installation

deps

        [WebProfilerExtraBundle]
            git=http://github.com/Elao/WebProfilerExtraBundle.git
            target=bundles/Elao/WebProfilerExtraBundle

(add to deps file and run ./bin/vendors install)

AppKernel

        //...


        if (in_array($this->getEnvironment(), array('dev', 'test'))) {
            //.. (just add)
            $bundles[] = new Elao\WebProfilerExtraBundle\WebProfilerExtraBundle();
        }

        //...

Autoloading

        //...

        'Elao'             => __DIR__.'/../vendor/bundles',

        //...

app/config/config_dev.yml

    web_profiler_extra:
        routing:    true
        container:  true
        assetic:    true
        twig:       true

Install assets

    $ `app/console assets:install web`