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
When running on php 8.3.x and running
composer global update
Results in a composer requirement error
`Your requirements could not be resolved to an installable set of packages.
Problem 1
- Root composer.json requires weprovide/valet-plus 3.x -> satisfiable by weprovide/valet-plus[3.0.0, 3.0.1, 3.0.2, 3.0.3].
- weprovide/valet-plus[3.0.0, ..., 3.0.3] require php >=7.1 <8.3 -> your php version (8.3.9) does not satisfy that requirement.`
The text was updated successfully, but these errors were encountered:
kenseiatwork
changed the title
Composer requirement error on 8.3.x
Composer requirement error on php 8.3.x
Jul 26, 2024
We ran into the same thing, and here's how we resolved it: composer global require weprovide/valet-plus --update-with-dependencies --ignore-platform-req=php
Laravel/valet php requirement is: "php": "^7.1|^8.0"
valet-plus uses: "php": ">=7.1 <8.3"
When running on php 8.3.x and running
composer global update
Results in a composer requirement error
`Your requirements could not be resolved to an installable set of packages.
Problem 1
- Root composer.json requires weprovide/valet-plus 3.x -> satisfiable by weprovide/valet-plus[3.0.0, 3.0.1, 3.0.2, 3.0.3].
- weprovide/valet-plus[3.0.0, ..., 3.0.3] require php >=7.1 <8.3 -> your php version (8.3.9) does not satisfy that requirement.`
The text was updated successfully, but these errors were encountered: