escapestudios / symfony2-coding-standard
CodeSniffer ruleset for the Symfony 2+ coding standard
Installs: 9 955 115
Dependents: 328
Suggesters: 2
Security: 0
Stars: 406
Watchers: 19
Forks: 103
Open Issues: 20
Type:phpcodesniffer-standard
Requires
- squizlabs/php_codesniffer: ^3.3.1
Requires (Dev)
- phpunit/phpunit: ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.3.4
Conflicts
- squizlabs/php_codesniffer: <3 || >=4
- dev-master / 3.x-dev
- 3.16.0
- 3.15.0
- 3.14.0
- 3.13.0
- 3.12.0
- 3.11.0
- 3.10.0
- 3.9.2
- 3.9.1
- 3.9.0
- 3.8.1
- 3.8.0
- 3.7.0
- 3.6.0
- 3.5.2
- 3.5.0
- 3.4.1
- 3.4.0
- 3.3.0
- 3.2.1
- 3.2.0
- 3.1.1
- 3.1.0
- 3.0.4
- 3.0.3
- 3.0.2
- 3.0.1
- 3.0.0
- 2.x-dev
- 2.11.0
- 2.10.1
- 2.10.0
- 2.9.1
- 2.9.0
- 2.8.1
- 2.8.0
- 2.7.0
- 2.6.0
- 2.5.0
- 2.4.0
- 2.3.1
- 2.3.0
- 2.2.0
- 2.1.1
- 2.1.0
This package is auto-updated.
Last update: 2025-07-09 10:56:06 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-standard
Or copy/symlink this repository's "Symfony"-folder inside the phpcs
Standards
directory -
Check the installed coding standards for "Symfony"
phpcs -i
-
Done!
phpcs /path/to/code