Composer Problem nach Update auf Version 6.3.4.0

Hallo zusammen,

nach dem Update auf 6.3.4.0 war ich nicht mehr in der Lage composer require/install etc. auszuführen. Es kommt folgende Meldung:

[RuntimeException]
  The `url` supplied for the path (repos/core) repository does not exist

Dies liegt an folgenden Einträgen in composer.json

"repositories": [
    {
      "type": "path",
      "url": "repos/core",
      "options": {
        "symlink": false
      }
    },
    {
      "type": "path",
      "url": "repos/administration",
      "options": {
        "symlink": false
      }
    },
    {
      "type": "path",
      "url": "repos/storefront",
      "options": {
        "symlink": false
      }
    },
    {
      "type": "path",
      "url": "repos/elasticsearch",
      "options": {
        "symlink": false
      }
    },

Diese habe ich entfernt. Dann funktioniert wieder alles.

 

Composer Repository type path:

Wenn ich es richtig verstanden habe, benutzt man  Path, wenn man z.B. ein Projekt hat, mit mehrern Packages( Core Funktionalitäten),  um nicht Satis oder ähnlich zu benutzen. So kann man direkt die Änderungen sehen, oder verstehe ich da was falsch?