Laravel 9 Support
nabeeljavaid opened this issue · 3 comments
nabeeljavaid commented
Please add Laravel9 support in the package
bastiaandewaele commented
I am having the same problem here, because another package called cviebrock/eloquent-sluggable uses this one as a dependency :)
When I try updating Laravel 8 to 9 by using composer, I am seeing this error.
Problem 1
- laravel/framework[v9.0.0-beta.1, ..., 9.x-dev] require egulias/email-validator ^3.1 -> found egulias/email-validator[3.1.0, ..., 3.x-dev] but the package is fixed to 2.1.25 (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.
- Root composer.json requires laravel/framework ^9.0 -> satisfiable by laravel/framework[v9.0.0-beta.1, ..., 9.x-dev].
Use the option --with-all-dependencies (-W) to allow upgrades, downgrades and removals for packages currently locked to specific versions.
This is because your lock file is stuck at 2.1.25 (egulias/email-validator) and should become ^3.1.
Lines 383 to 390 in c8c58a2
florianeckerstorfer commented
I'm happy to merge a Pull Request that addresses this
bastiaandewaele commented
Ok, great! I will try making the PR next week :)