Skip to main content

Posts

Showing posts with the label cakephp 4 migrations

How to upgrade Cakephp 3 to Cakephp 4.x

How to upgrade Cakephp 3 to Cakephp 4.x So Cakephp 4 is released and now cakephp did major changes is that : 1. Now cakephp using more typehinting and strict mode. 2. cakephp replaced .ctp file extension with .php so now all tempalates files have .php extension . 3. Now templates folder moved from src to root folder. 4. Some functions are now deprecarted that you can check on its official website . Now today we learn how to upgrade Cakephp version to latest version. So keep follow below steps:- 1) Open terminal and go to the root directory folder 2) Then run below command to install upgrade tool       git clone git://github.com/cakephp/upgrade 3) Now above command will create upgrade folder in your root directory so change drive by using below command cd upgrade 4. Now we need to install new files of cake 4 so run below command: git checkout 4.x 5. Now run below command composer install --no-dev Ok so now we have all new updated file ...