paravibe / symfony2-coding-standard
CodeSniffer ruleset for the Symfony 2+ coding standard
Installs: 5
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 104
Type:phpcodesniffer-standard
pkg:composer/paravibe/symfony2-coding-standard
Requires
- squizlabs/php_codesniffer: ^4.0.0
Requires (Dev)
- phpunit/phpunit: ^8.0 || ^9.3.4 || ^10.5.32 || ^11.3.3
Conflicts
- squizlabs/php_codesniffer: <4 || >=5
This package is auto-updated.
Last update: 2025-11-12 12:59:37 UTC
README
Symfony PHP CodeSniffer Coding Standard
A coding standard to check against the Symfony coding standards, originally shamelessly copied from the -disappeared- opensky/Symfony2-coding-standard repository.
Installation
Composer
This standard can be installed with the Composer dependency manager.
-
Install the coding standard as a dependency of your project
composer require --dev escapestudios/symfony2-coding-standard:3.x-dev -
Add the coding standard to the PHP_CodeSniffer install path
vendor/bin/phpcs --config-set installed_paths vendor/escapestudios/symfony2-coding-standard -
Check the installed coding standards for "Symfony"
vendor/bin/phpcs -i -
Done!
vendor/bin/phpcs /path/to/code
Stand-alone
-
Install PHP_CodeSniffer
-
Checkout this repository
git clone git://github.com/djoos/Symfony2-coding-standard.git -
Add the coding standard to the PHP_CodeSniffer install path
phpcs --config-set installed_paths /path/to/Symfony2-coding-standardOr copy/symlink this repository's "Symfony"-folder inside the phpcs
Standardsdirectory -
Check the installed coding standards for "Symfony"
phpcs -i -
Done!
phpcs /path/to/code