skip to Main Content

I never encounter this error before now I’m stucked with it, can someone helped how to fix these?

It returns this red background error

Your requirements could not be resolved to an installable set of packages.

Heres the full errors:
enter image description here

My php version is 7.2.0. Im using windows10. I already create a laravelv6 project before. I dont why I receive the error above. someone help?
enter image description here

2

Answers


  1. If you are installing a new Laravel project I imagine it is a version 6 project. Laravel 6 requires at least PHP 7.2 per their documentation. Not sure what system you’re installing it on but it needs at least php 7.2. See the full docs here.

    Laravel installation requirements

    Login or Signup to reply.
  2. The problem seems to be what the error message says:

    symfony/css-selector v5.0.0 requies php ^7.2.5 -> your PHP version
    (7.2.0) does not satisfy that requirement.

    Solution: Update your PHP with the latest version

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search