php-readability icon indicating copy to clipboard operation
php-readability copied to clipboard

Can't install with Laravel 9

Open Stajor opened this issue 3 years ago • 1 comments

Problem 1
    - Root composer.json requires j0k3r/php-readability ^2.0 -> satisfiable by j0k3r/php-readability[2.0.0, 2.0.1].
    - j0k3r/php-readability[2.0.0, ..., 2.0.1] require psr/log ^1.0 -> found psr/log[1.0.0, ..., 1.1.4] but the package is fixed to 3.0.0 (lock file version) by a partial update and that version does not match. Make sure you list it as an argument for the update command.

Stajor avatar Jul 20 '22 17:07 Stajor

Too bad, but without the full composer.json, it's impossible to fix.

j0k3r avatar Jul 21 '22 13:07 j0k3r

You using psr/log ^1.0 (major version fixed). But the current version is already 3.0 and many other packages don't support psr/log 1.0 anymore. So there is always a version conflict between php-readability and other packages.

Laravel seems to have it fixed and still support psr/log 1.0 but maybe you can consider to just change the dependency to: "psr/log": "^1.0|^2.0|^3.0" ?

DerFichtl avatar Oct 12 '22 09:10 DerFichtl