Releases: worksome/coding-style
Releases · worksome/coding-style
v2.3.1
v2.3.0
What's Changed
- feat: Add styling for intersections by @olivernybroe in #34
- feat: Add styling for enums by @olivernybroe in #33
- feat: JIRA-7078 Disallow calls to Pest's
only()
call by @owenvoke in #35
Full Changelog: v2.2.0...v2.3.0
v2.2.0
v2.1.0
v2.0.0
What's Changed
- Remove phpcs package and move them into same package by @olivernybroe in #30
Full Changelog: v1.1.0...v2.0.0
v1.1.0
v1.0.0
What's Changed
- Change phpcs and phcsfixer to ECS instead
Upgrade guide
For upgrading to this new version you would need to use ECS instead. Simply rerun the composer generate-coding-style-stubs
to get the new ECS stub file instead.
Once you have that we recommend you to replace the scripts with the following ones instead
"scripts": {
"ecs": "vendor/bin/ecs",
"ecs:fix": "vendor/bin/ecs --fix",
"phpstan": "vendor/bin/phpstan analyse",
"rector": "vendor/bin/rector process --dry-run --ansi",
"rector:fix": "vendor/bin/rector process --ansi"
},
If you were running phpcs or phpcsfixer in CI, we recommend to replace this with composer ecs
instead.
The performance is better and now only one tool is required
Full Changelog: v0.29.0...v1.0.0