1.2.0 • Published 7 months ago
@tangible/php-beautify v1.2.0
PHP Beautify
This is a tool to lint and format source files in Node.js using PHP Code Sniffer and WordPress Code Standards. It bundles a PHP runtime compiled to WebAssembly, so it doesn't depend on PHP being installed on the local system.
Install
As global command
It can be installed as a global command.
npm install --global @tangible/php-beautifyAs dependency
Or install it as a dependency of an existing project.
npm install --save @tangible/php-beautifyIn this case, use NPM script or npx php-beautify to run the commands described below.
Example of NPM script
{
"scripts" {
"lint": "php-beautify lint src/**/*.php",
"format": "php-beautify format src/**/*.php"
}
}Usage
Help screen
php-beautifyLint
php-beautify lint [...files]Format
php-beautify format [...files]Included libraries
curl -LO https://github.com/PHPCSStandards/PHP_CodeSniffer/releases/download/3.11.3/phpcbf.phar curl -LO https://github.com/PHPCSStandards/PHP_CodeSniffer/releases/download/3.11.3/phpcs.pharcurl -L https://github.com/WordPress/WordPress-Coding-Standards/archive/refs/tags/3.1.0.tar.gz | tar zx mkdir -p wpcs for folder in WordPress WordPress-Core WordPress-Docs WordPress-Extra; do echo "Copying $folder"; rsync -r WordPress-Coding-Standards-*/"$folder"/ wpcs/"$folder"; done rm -rf WordPress-Coding-Standards-*Dependencies
curl -L https://github.com/PHPCSStandards/PHPCSUtils/archive/refs/tags/1.0.12.tar.gz | tar zx rsync -vr PHPCSUtils-*/PHPCSUtils/ wpcs/PHPCSUtils rm -rf PHPCSUtils-*curl -L https://github.com/PHPCSStandards/PHPCSExtra/archive/refs/tags/1.2.1.tar.gz | tar zx for folder in Modernize NormalizedArrays Universal; do echo "Copying $folder"; rsync -r PHPCSExtra-*/"$folder"/ wpcs/"$folder"; done rm -rf PHPCSExtra-*