Cannot install package in Laravel 8 project
KaragiannidesAgapios opened this issue · 2 comments
KaragiannidesAgapios commented
- Laravel Version: 8.0.1
- PHP Version 7.4.9
Description:
Package cannot be installed inside fresh laravel 8 project
Steps to reproduce:
run laravel new blog
Change directory to the new project
run $ composer require jeroen-g/laravel-packager --dev
At this point this is on my terminal:
Your requirements could not be resolved to an installable set of packages.
Problem 1
- Installation request for laravel/framework (locked at v8.0.3, required as ^8.0) -> satisfiable by laravel/framework[v8.0.3].
- Installation request for jeroen-g/laravel-packager ^2.5 -> satisfiable by jeroen-g/laravel-packager[2.5, V2.5.1, V2.5.2].
- Can only install one of: guzzlehttp/guzzle[6.5.x-dev, 7.0.1].
- Can only install one of: guzzlehttp/guzzle[7.0.1, 6.5.x-dev].
- Can only install one of: guzzlehttp/guzzle[6.5.x-dev, 7.0.1].
- Conclusion: install guzzlehttp/guzzle 6.5.x-dev
- Installation request for guzzlehttp/guzzle (locked at 7.0.1, required as ^7.0.1) -> satisfiable by guzzlehttp/guzzle[7.0.1].
Installation failed, reverting ./composer.json to its original content.
Expected behaviour:
Normal installation of the laravel-packager
Jeroen-G commented
I just merged a PR to add Laravel 8, next release will fix it! :)
KaragiannidesAgapios commented
Thank you very much for the quick reply and fix!