boot(); $application = new \Symfony\Bundle\FrameworkBundle\Console\Application($kernel); $application->setAutoExit(false); $application->setCatchExceptions(false); $application->run(new \Symfony\Component\Console\Input\StringInput('doctrine:database:drop --force --quiet')); $application->run(new \Symfony\Component\Console\Input\StringInput('doctrine:database:create --quiet')); $application->run(new \Symfony\Component\Console\Input\StringInput('doctrine:schema:create --quiet')); $application->run(new \Symfony\Component\Console\Input\StringInput('doctrine:fixtures:load --no-interaction --group=without-images')); $kernel->shutdown();