Laravel 10.x upgrade #415
-
I've a project Laravel 9.52.4 and Backpack 5.5 I've tried to do it manually but i've this msg: Problem 1 Use the option --with-all-dependencies (-W) to allow upgrades, downgrades and removals for packages currently locked to specific versions. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Hey @blondie63 , Backpack does offer L10 support, starting with CRUD v5.5. So your problem shouldn't be Backpack. I know these composer errors can be confusing sometimes, maybe I can help debug this time. To me it looks like the "problem package" for you isn't Backpack/CRUD, but
I think you should be using version 6 of that package - that's the one that has L10 support - https://github.com/kitloong/laravel-migrations-generator Hope it helps. |
Beta Was this translation helpful? Give feedback.
-
@blondie63 1 change the version checker in backpack config
\PackageVersions\Versions changed to \Composer\InstalledVersions 2 remove composer.lock 3 (backup composer.json) remove from composer.json all backpack modules 4 make dependencies like this 5 remove from autoload section "files" section if were added 6 run composer install 7 run composer update Let me know if it goes ok |
Beta Was this translation helpful? Give feedback.
Hey @blondie63 ,
Backpack does offer L10 support, starting with CRUD v5.5. So your problem shouldn't be Backpack.
I know these composer errors can be confusing sometimes, maybe I can help debug this time. To me it looks like the "problem package" for you isn't Backpack/CRUD, but
kitloong/laravel-migrations-generator
. See:I think you should be using version 6 of that package - that's the one that has L10 support - https://github.com/kitloong/laravel-migrations-generator
Hope it helps.
Cheers!