16 lines
463 B
PHP
16 lines
463 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,
|
||
|
],
|
||
|
);
|
||
|
};
|