dem3trio / carbon-profiler-bundle
Symfony 2/3 profiler extension, to change the Carbon php date in the whole project.
Installs: 2 422
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 2
Forks: 1
Open Issues: 0
Requires
- php: >=5.3.9
- nesbot/carbon: ^1.22
- symfony/event-dispatcher: ~2.8|~3.0|~4.0
- symfony/form: ~2.8|~3.0|~4.0
- symfony/framework-bundle: ~2.8|~3.0|~4.0
- symfony/http-foundation: ~2.8|~3.0|~4.0
- symfony/http-kernel: ~2.8|~3.0|~4.0
- symfony/routing: ~2.8|~3.0|~4.0
- symfony/web-profiler-bundle: ~2.8|~3.0|~4.0
Requires (Dev)
- mikey179/vfsstream: ^1.6
- phpunit/phpunit: ^5.0
README
Symfony 2/3/4 profiler extension, to change the Carbon php date in the whole project.
Installation
Install the package with composer.
composer require dem3trio/carbon-profiler-bundle --dev
Configuration Symfony >= 2.8 and SF <= 3.3
As the package adds a new panel in the Symfony profiler, you should add the bundle under
the dev
section.
// app/AppKernel.php public function registerBundles() { $bundles = [ // ... prod bundles ]; if (in_array($this->getEnvironment(), ['dev', 'test'], true)) { // ... dev bundles if ('dev' === $this->getEnvironment()) { $bundles[] = new Dem3trio\Bundle\CarbonProfilerBundle\CarbonProfilerBundle(); } } } //
Add the routing file under the routing_dev.yml file
# app/config/routing_dev.yml _time_machine: resource: '@CarbonProfilerBundle/Resources/config/routing.yml' prefix: /_time_machine
Configuration for Symfony 3.4 and 4.x
Add the bundle to your bundles.php
// config/bundles.php <?php return [ // ... Dem3trio\Bundle\CarbonProfilerBundle\CarbonProfilerBundle::class => ['dev' => true], ];
And add the routing file:
# config/routes/dev/carbon_profiler.yml _time_machine: resource: '@CarbonProfilerBundle/Resources/config/routing.yml' prefix: /_time_machine