ProfilercommandBundle -- DEV
, (*1)
Commands tools in your Symfonyprofiler. This is the master version, it can be unstable.
You must user me 1.0 version (stable)., (*2)
, (*3)
Add in your composer.json, (*4)
{
"require": {
"juanber84/profilercommand-bundle": "dev-master"
}
}
Add in your app/AppKernel.php, (*5)
<?php
// app/AppKernel.php
public function registerBundles()
{
return array(
// ...
new Juanber84\Bundle\ProfilercommandBundle\Juanber84ProfilercommandBundle(),
// ...
);
}
Add in your app/routing.yml, (*6)
juanber84_profilercommand:
resource: "@Juanber84ProfilercommandBundle/Resources/config/routing.yml"
prefix: /
Your parameters.yml must will be..., (*7)
parameters:
// ...
// ...
// ...
profilercommand:
front:
cacheclear:
name: cache:clear
command: cache:clear
assetsinstall:
name: assets:install
command: assets:install /Users/juanberzal/Desktop/Symfony/web
schemaupdate:
name: schema:update
command: doctrine:schema:update --force
dump:
name: dump
command: assetic:dump
profiler:
cacheclear:
name: cache:clear
command: cache:clear
assetsinstall:
name: assets:install
command: assets:install /Users/juanberzal/Desktop/Symfony/web