Using CakePHP Migrations as a Standalone Library
·355 words·2 mins
Cakephp version 3 have a nice ORM. When using the cakephp/orm, it may be nice to integrate cakephp/migration than any other migration libraries, even though it uses phinx under the hood.
Lets see how we can install and integrate cakephp/migration in our application.
1 composer require cakephp/migrations:dev-master The dev-master is currently passed for we need the latest version of master branch. Before this pull request, it was having dependency on cakephp/cakephp, which is not needed.