escapestudios / symfony2-coding-standard
CodeSniffer ruleset for the Symfony 2+ coding standard
Installs: 8 919 512
Dependents: 322
Suggesters: 2
Security: 0
Stars: 401
Watchers: 19
Forks: 102
Open Issues: 19
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
This package is auto-updated.
Last update: 2024-10-30 11:09:48 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