I migrated from cakephp 4.2 to version 4.4, when I execute the command bin/cake bake all gives me this exception:
How can I solve this issue?
I migrated from cakephp 4.2 to version 4.4, when I execute the command bin/cake bake all gives me this exception:
thats not an exception, its just a notice. All your files still generated successfully.
I’d recommend you make sure your cakephp/bake
package is up2date as well.
You can do that via checking your composer.json should contain the same version string as
Then do a composer update -W
or if you just want to update the bake package composer update cakephp/bake -W
Thank you @KevinPfeifer, it worked perfect, now it doesn’t show me that message.
Now I have another problem, I execute the command bin\cake acl_extras aco_sync and it gives me this fatal error:
Looks like you need to upgrade your Migrations plugin version?
Maybe, how can I do that?
I could solve this issue by deleting vendor folder and file composer.lock and running composer install, thank you nevertheless
composer update -W
would have done it too
I’d recommend you learn how composer versioning works