prestissimo icon indicating copy to clipboard operation
prestissimo copied to clipboard

can't install Prestissimo

Open adeguntoro opened this issue 5 years ago • 3 comments

  Package hirak/prestissimo at version 0.3.8 has a PHP requirement
  incompatible with your PHP version, PHP extensions and Composer version

Right now i use Windows 7 Pro SP1, PHP 7.3.9 from XAMPP, and Composer 2.0.2. Is this normal ?

adeguntoro avatar Oct 26 '20 13:10 adeguntoro

Same here, this is breaking our CI builds. We're running it in Ubuntu in docker containers.

leimd avatar Oct 26 '20 22:10 leimd

Actually, if you're getting this error, you are probably running composer v2 now, which means it will download packaged in parallel by default, so that means you don't need this plugin anymore. see here: https://github.com/hirak/prestissimo/issues/230

leimd avatar Oct 26 '20 23:10 leimd

Yep, Composer changed their latest tag to version 2. That's another reminder not to use latest in your builds. So if you have this magic line in your docker: COPY --from=composer /usr/bin/composer /usr/bin/composer add :1 after composer like the following, to keep using version one, until you figure out the impact. COPY --from=composer:1 /usr/bin/composer /usr/bin/composer

Rakhmanov avatar Oct 27 '20 16:10 Rakhmanov