oidconnect-laravel icon indicating copy to clipboard operation
oidconnect-laravel copied to clipboard

Issue with installing package in laravel 5.5

Open mithublue opened this issue 7 years ago • 1 comments

When require the package in composer it shows me the following error

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

Problem 1 - Installation request for furdarius/oidconnect-laravel dev-master -> satisf iable by furdarius/oidconnect-laravel[dev-master]. - furdarius/oidconnect-laravel dev-master requires lcobucci/jwt ^4.0-dev -> satisfiable by lcobucci/jwt[4.0.0-alpha1, 4.0.x-dev] but these conflict with you r requirements or minimum-stability.

Installation failed, reverting ./composer.json to its original content.

mithublue avatar Jan 31 '18 13:01 mithublue

You can resolve this error by adding these lines to your composer.json file:

    "minimum-stability": "dev",
    "prefer-stable": true,

This allows dev requirements to be installed, while preferring stable releases if available.

ColinBohn avatar Feb 06 '18 18:02 ColinBohn