Home > OS >  composer install error for Symfony 6 on php 8.1
composer install error for Symfony 6 on php 8.1

Time:02-17

I try install Smyfony 6 om linux mint with php 8.1. Composer install bundles, but when i try run I see this error

Composer detected issues in your platform: Your Composer dependencies require a PHP version ">= 8.0.2".

CodePudding user response:

Well, the problem is very explicit, you need a PHP version equal or superior to 8.0.2....

CodePudding user response:

Try running php -v in the terminal. If your version is higher than 8.0.2. please upload more information, for example the whole stacktrace.

  • Related