html: can't install laravelcollective on laravel 5.5

when try to install in this way “laravelcollective/html”: “5.5.*” get this error

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

  Problem 1
    - The requested package laravelcollective/html ^5.5.0 is satisfiable by laravelcollective/html[5.5.x-dev] but these conflict with your requirements or minimum-stability.

About this issue

  • Original URL
  • State: closed
  • Created 7 years ago
  • Comments: 21 (3 by maintainers)

Most upvoted comments

Go to - > https://laravelcollective.com/docs/master/html
or Copy this to you composer.json file “laravelcollective/html”:“^5.4.0” Go to your command line and update your composer like " composer update "

and image added with this post you can follow it 😃 laravel

Just wait for upgrading.

Have you updated your composer.json like that with a "laravelcollective/html": "dev-master" until the PR is merged ?

    "repositories": [
        {
            "type": "vcs",
            "url": "https://github.com/cmizzi/html"
        },
    ]

@robertnicjoo This issue already solved by this merged PR. 😃

open your composer and copy paste this link composer require “laravelcollective/html”:“5.4.0”. That means remove “^” symbol. It will install current version rather than installing the latest. Then, composer update

Hi Guys

I was able to resolve the problem by adding “firebase/php-jwt”: “~3.0|~4.0|~5.0”, in a composer.json

Then composer update --Works well on me

@Hussam3bd No I didn’t solve it I just removed "laravelcollective/html": "^5.5.0", from my composer.jason also it’s codes from app.php and upgraded my laravel.

It’s better to just wait for merged PR.

anyway this might help you if you want to do the same http://tjd-studio.com/blog/article/upgrade-laravel-54-to-55

same as mine