janu-software / coding-standard
v8.5.0
2025-11-27 09:13 UTC
Requires
- php: ^8.0
- friendsofphp/php-cs-fixer: ^3.88
- kubawerlos/php-cs-fixer-custom-fixers: ^3.35
- slevomat/coding-standard: ^8.22
- squizlabs/php_codesniffer: ^3.13
Requires (Dev)
- tracy/tracy: ^2.5
Suggests
None
Provides
None
Conflicts
None
Replaces
None
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 janu-software/coding-standard /nette-cs
Check coding standard for PHP 8.4 in folders src and tests:
/nette-cs/ecs check src tests --preset php84
And fix it:
/nette-cs/ecs fix src tests --preset php84
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@v4 - uses: shivammathur/setup-php@v2 with: php-version: 8.4 - run: composer create-project nette/coding-standard temp/coding-standard - run: php temp/coding-standard/ecs check src tests --preset php84