You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Theres an error happening for composer install due to php-cs-fixer dependancy on older php versions. It returns an error unless you have PHP 7.1 or 7.2 installed
friendsofphp/php-cs-fixer v1.12.0 requires php ^5.3.6 || >=7.0 <7.2 -> your PHP version (7.3.11) does not satisfy that requirement.
The fix (at least it worked for me) is to just allow the latest version to install
"friendsofphp/php-cs-fixer": "~1.12"
needs to become
"friendsofphp/php-cs-fixer": "*"
The text was updated successfully, but these errors were encountered:
Theres an error happening for composer install due to php-cs-fixer dependancy on older php versions. It returns an error unless you have PHP 7.1 or 7.2 installed
The fix (at least it worked for me) is to just allow the latest version to install
needs to become
The text was updated successfully, but these errors were encountered: