Some issues upgrading Laravel from version 10.x to 11.x composer libraries #php #laravel #shorts

preview_player
Показать описание
Recently I've faced some issues upgrading Laravel from version 10.x to 11.x with the following composer libraries:

"hedii/laravel-gelf-logger": "^8.0"
and
"barryvdh/laravel-ide-helper": "^2.13"

both of them were not compatible with Laravel 11.x. The solution is to remove them using commands below:

composer remove hedii/laravel-gelf-logger
composer remove barryvdh/laravel-ide-helper

Then to make Laravel upgrade to version 11.x using the command below:
composer update

And then to re-install both packages using commands:
composer install hedii/laravel-gelf-logger
composer install --dev barryvdh/laravel-ide-helper
Рекомендации по теме
Комментарии
Автор

Thank you for this interesting and useful video. It will be helpful to people who upgrading their Laravel web applications

TarasShkodenko
join shbcf.ru