Download the PHP package spaze/phpcs-phar without Composer
On this page you can find all versions of the php package spaze/phpcs-phar. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Informations about the package phpcs-phar
PHP_CodeSniffer phar releases
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.
Installation
Install with Composer:
Installing coding standards
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:
Auto-install the available standards
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.
Modify the config file
-
In your project, run
- 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
Please be aware that the CodeSniffer.conf
file will be removed on each package update.
Install the standard using an absolute path
In your project, run
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.