Last active
July 18, 2024 09:51
-
-
Save lyrixx/2ea147609dc632d26e366aef60f61a9f to your computer and use it in GitHub Desktop.
Symfony Playgound with its Container and a custom configuration
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
use App\Kernel; | |
require __DIR__.'/vendor/autoload_runtime.php'; | |
use Symfony\Component\Console\Output\StreamOutput; | |
use Symfony\Component\DependencyInjection\Compiler\CompilerPassInterface; | |
use Symfony\Component\DependencyInjection\ContainerBuilder; | |
return function () { | |
$k = new class('dev', true) extends Kernel implements CompilerPassInterface { | |
public function process(ContainerBuilder $container) | |
{ | |
$container->getAlias('logger')->setPublic(true); | |
$container->getDefinition('monolog.handler.console')->setPublic(true); | |
} | |
}; | |
$k->boot(); | |
$c = $k->getContainer(); | |
$c->get('monolog.handler.console')->setOutput( | |
new StreamOutput(fopen('php://stdout', 'w'), | |
StreamOutput::VERBOSITY_VERY_VERBOSE, | |
)); | |
$logger = $c->get('logger'); | |
$em = $c->get('doctrine.orm.entity_manager'); | |
// Start of playground | |
}; |
Oh ok, gotcha you.
Very good! Thanks you.
It is worth mentioning that this command can be executed using symfony php test.php
Very useful, thx for sharing! 🔥
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I often need to test "something" in my application, and it helps me to test that thing.
For example
It could be also solved with
But I have this habit for a very long time, and I like to be able to "hack" and prototype quickly. So in almost every projects I work on have this
test.php
file.