symfonycomposer-phpdoctrine-migrations

Script cache:clear returned with error code 1


i've tried to update Symfony 4.3 runing the command "composer update". 107 packages were updated . then in the end of the script an error appeared when runing the command "cache:clear"

Executing script cache:clear [KO]
 [KO]
Script cache:clear returned with error code 1
!!
!!  In ArrayNode.php line 327:
!!
!!    Unrecognized options "dir_name, namespace" under "doctrine_migrations". Ava
!!    ilable options are "all_or_nothing", "check_database_platform", "connection
!!    ", "custom_template", "em", "factories", "migrations", "migrations_paths",
!!    "organize_migrations", "services", "storage".
!!
!!
!!
Script @auto-scripts was called via post-update-cmd


Solution

  • i did some reserches and i foud that i have to update the DoctrineMigrations config file config/packages/doctrine_migrations.yaml :

    from

    doctrine_migrations:
        dir_name: '%kernel.project_dir%/src/Migrations'
        # namespace is arbitrary but should be different from App\Migrations
        # as migrations classes should NOT be autoloaded
        namespace: DoctrineMigrations
    
    

    to

    doctrine_migrations:
      migrations_paths:
        "App\\Migrations": "src/Migrations"