nette / coding-standard
v3.3.3
2023-11-11 15:31 UTC
Requires
- php: ^7.2 || ^8.0
- friendsofphp/php-cs-fixer: ^3.10 <3.16
- kubawerlos/php-cs-fixer-custom-fixers: ^3.5
- slevomat/coding-standard: ^8.6 <8.12
- squizlabs/php_codesniffer: ^3.6
Requires (Dev)
- tracy/tracy: ^2.5
This package is auto-updated.
Last update: 2024-10-11 18:04:49 UTC
README
This is set of sniffs and fixers that checks and fixes code of Nette Framework against Coding Standard in Documentation.
Installation and Usage
Install the tool in a global directory. Its name will be for example /nette-cs
:
composer create-project nette/coding-standard /nette-cs
Check coding standard for PHP 7.1 in folders src
and tests
:
/nette-cs/ecs check src tests --preset php71
And fix it:
/nette-cs/ecs fix src tests --preset php71
If no PHP version is specified, it will try to find out from the composer.json
file.
GitHub Actions
# .github/workflows/coding-style.yml steps: - uses: actions/checkout@v2 - uses: shivammathur/setup-php@v2 with: php-version: 8.0 - run: composer create-project nette/coding-standard temp/coding-standard - run: php temp/coding-standard/ecs check src tests --preset php71