diff --git a/.stickler.yml b/.stickler.yml deleted file mode 100644 index 0ec83f6f..00000000 --- a/.stickler.yml +++ /dev/null @@ -1,5 +0,0 @@ -linters: - phpcs: - standard: CakePHP -files: - ignore: ['tests/bootstrap.php', 'tests/comparisons/*'] diff --git a/README.md b/README.md index 0aecc0f0..0b396e83 100644 --- a/README.md +++ b/README.md @@ -29,6 +29,7 @@ bin/cake plugin load Migrations ``` Or you can manually add the loading statement in the **src/Application.php** file of your application: + ```php public function bootstrap(): void { @@ -37,7 +38,20 @@ public function bootstrap(): void } ``` -Additionally, you will need to configure the ``default`` database configuration in your **config/app.php** file. +### Enabling the builtin backend + +In a future release, migrations will be switching to a new backend based on the CakePHP ORM. We're aiming +to be compatible with as many existing migrations as possible, and could use your feedback. Enable the +new backend with: + +```php +// in app/config/app_local.php +$config = [ + // Other configuration + 'Migrations' => ['backend' => 'builtin'], +]; + +``` ## Documentation