This repo contains phar releases of PHPCSStandards/PHP_CodeSniffer.
The files are downloaded from the PHP_CodeSniffer release pages, and if changed, they're commited and a release is created with the same version number as the upstream release.
The whole thing is powered by a GitHub Actions workflow.
I have created this for my personal usage to overcome the performance issues of the 9P filesystem as used by WSL2. The PHPCSStandards organization is also planning to create a Composer phar release so this repository will cease to exist one day, either when the official Composer phar is released, or when the 9P performace is sufficient, or when I retire. Consider yourself warned.
Install with Composer:
composer require --dev spaze/phpcs-phar
The phar releases in this repository do not work with the PHP_CodeSniffer Standards Composer Installer Plugin (the dealerdirect/phpcodesniffer-composer-installer
package).
Be warned that this package even replaces the installer plugin in its composer.json
.
There are several reasons for that:
- The installer plugin looks for a different installed package,
squizlabs/php_codesniffer
to add more standards to - The plugin creates a configuration file with a relative path to the standard being installed, so the code sniffer then expects the standard to be present inside the phar file, which is not the case
However, there are multiple different ways to install a standard. Let's say you want to add slevomat/coding-standard
, you can:
If the CodeSniffer.conf
file doesn't exist, this package will find and auto-install all available coding standards on each execution.
The altered configuration is not persisted, no config file will be created, because it would be removed on each package update anyway.
This is the recommended option emulating the Standards Composer Installer Plugin to a certain point.
- In your project, run
vendor/bin/phpcs --config-set installed_paths ../../slevomat/coding-standard
- Locate the
CodeSniffer.conf
file in yourvendor/spaze/phpcs-phar
directory - Edit the path to the installed standard and make it an absolute path, for example change
to
'installed_paths' => '../../slevomat/coding-standard'
'installed_paths' => __DIR__ . '/../../slevomat/coding-standard'
Please be aware that the CodeSniffer.conf
file will be removed on each package update.
In your project, run
vendor/bin/phpcs --config-set installed_paths $(realpath vendor/slevomat/coding-standard)
or use any absolute path for the installed_paths
value.
Please be aware that the CodeSniffer.conf
file will be removed on each package update.