exoticca / coding-style
PHP Coding Style rules for Exoticca's projects.
v0.0.1
2024-09-27 09:47 UTC
Requires
Requires (Dev)
- phpstan/phpstan: ^1.10
- vimeo/psalm: ^5.24
- dev-master
- v0.0.1
- dev-configure-fully-qualified-strict-types-rule
- dev-add-multiline-comment-opening-closing-rule
- dev-add-method-chaining-indentation-rule
- dev-add-explicit-string-variable-rule
- dev-add-combine-consecutive-issets-and-unsets-rules
- dev-add-standalone-line-promoted-property-rule
- dev-add-blank-line-after-strict-types-rule
- dev-skip-single-line-throw-fixer
- dev-replace-php-cs-fixer-set
This package is not auto-updated.
Last update: 2025-03-22 16:28:12 UTC
README
Opinionated linting configuration inspired on Codely's Coding Style.
How to use
Install the package via Composer:
composer require --dev exoticca/coding-style
Create a ecs.php
file in the root of your project:
use Exoticca\CodingStyle; use Symplify\EasyCodingStandard\Config\ECSConfig; return ECSConfig ::configure() ->withSets([ CodingStyle::DEFAULT, ]) ->withPaths([ __DIR__.'/src', __DIR__.'/tests', ]) ->withRootFiles();
Execute the following command to see the suggested changes:
vendor/bin/ecs
To actually fix your code, add --fix
:
vendor/bin/ecs --fix
For more information, check the Easy Coding Standard documentation
What it does
Checks the code style of your project using:
- PER Coding Style
- Symfony
- Some custom rules (you can see them here).