13 lines
420 B
PHP
13 lines
420 B
PHP
|
<?php declare(strict_types=1);
|
||
|
|
||
|
use Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator;
|
||
|
|
||
|
return static function (ContainerConfigurator $containerConfigurator): void {
|
||
|
$containerConfigurator->extension('doctrine_migrations', [
|
||
|
'migrations_paths' => [
|
||
|
'DoctrineMigrations' => '%kernel.project_dir%/migrations',
|
||
|
],
|
||
|
'enable_profiler' => false,
|
||
|
]);
|
||
|
};
|