The checklist for updating old projects is as follows:
- update the main dependency
blumilksoftware/codestyleto version^3.0incomposer.jsonfile - run
composer update blumilksoftware/codestyle - update
codestyle.phpfile configuration paths if you are still using Laravel 10 because the default Laravel paths have changed to Laravel 11
The checklist for updating old projects is as follows:
- update the main dependency
blumilksoftware/codestyleto version^2.0incomposer.jsonfile - run
composer update blumilksoftware/codestyle -W
With version 1.x we removed symplify/easy-coding-standard dependency in the project. The checklist for updating old projects is as follows:
- update the main dependency
blumilksoftware/codestyleto version^1.0incomposer.jsonfile - run
composer update blumilksoftware/codestyle -W - rename
ecs.phptocodestyle.php - update scripts in
composer.jsonfile - update scripts in Github Actions
- the constructor of
Blumilk\Codestyle\Configlost two parameters:$setsand$skipped; all manipulations of rules should be done on base$ruleslist -
Blumilk\Codestyle\Configuration\Defaults\LaravelPathsreturns a default Laravel 9 directory schema; for Laravel 8 additional parameterLaravelPaths::LARAVEL_8_PATHSshould be added