Zend Skeleton Application - problem 2020

According setting Zend Skeleton Application
https://docs.zendframework.com/tutorials/getting-started/skeleton-application/

$ composer create-project -s dev zendframework/skeleton-application path/to/install

Long time before I had successfully set this application without any problem.

But in new year (06.01.2020) I got a problem.

During installation the program show a message:

Package zendframework/zend-component-installer is abandoned, you should avoid using it. Use laminas/laminas-component-installer instead.
Package zendframework/zend-stdlib is abandoned, you should avoid using it. Use laminas/laminas-stdlib instead.
Package zendframework/zend-loader is abandoned, you should avoid using it. Use laminas/laminas-loader instead.
Package zendframework/zend-eventmanager is abandoned, you should avoid using it. Use laminas/laminas-eventmanager instead.
Package zendframework/zend-json is abandoned, you should avoid using it. Use laminas/laminas-json instead.
Package zendframework/zend-view is abandoned, you should avoid using it. Use laminas/laminas-view instead.
Package container-interop/container-interop is abandoned, you should avoid using it. Use psr/container instead.
Package zendframework/zend-servicemanager is abandoned, you should avoid using it. Use laminas/laminas-servicemanager instead.
Package zendframework/zend-validator is abandoned, you should avoid using it. Use laminas/laminas-validator instead.
Package zendframework/zend-escaper is abandoned, you should avoid using it. Use laminas/laminas-escaper instead.
Package zendframework/zend-uri is abandoned, you should avoid using it. Use laminas/laminas-uri instead.
Package zendframework/zend-http is abandoned, you should avoid using it. Use laminas/laminas-http instead.
Package zendframework/zend-router is abandoned, you should avoid using it. Use laminas/laminas-router instead.
Package zendframework/zend-config is abandoned, you should avoid using it. Use laminas/laminas-config instead.
Package zendframework/zend-modulemanager is abandoned, you should avoid using it. Use laminas/laminas-modulemanager instead.
Package zendframework/zend-mvc is abandoned, you should avoid using it. Use laminas/laminas-mvc instead.
Package zfcampus/zf-development-mode is abandoned, you should avoid using it. Use laminas/laminas-development-mode instead.
Writing lock file
Generating autoload files

And after the question:

Do you want a minimal install (no optional packages)? Y/n

Did not wait an answer from an user and fell down with a message:

[Symfony\Component\Console\Exception\RuntimeException]
Aborted

How to resolve the problem?

If it immediately aborted before you had a chance to answer, then this is a problem in the Composer project and how it waits for responses. Please report it to them.

just use the new docs and therefore the new package names and you will be fine

https://docs.laminas.dev/tutorials/getting-started/skeleton-application/

its now

composer create-project -s dev laminas/laminas-mvc-skeleton path/to/install

i advise you to use “Laminas” instead of “Zend” for all packages. i am using a lot of the mvc modules and the skeleton app on a regular basis, its working fine. You can just replace “Zend” with “Laminas”