charonlab / coding-standard
Charon Lab Coding Standard
Installs: 394
Dependents: 6
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:phpcodesniffer-standard
Requires
- php: ^8.1
- dealerdirect/phpcodesniffer-composer-installer: dev-master
- squizlabs/php_codesniffer: ^4.0.x-dev
Requires (Dev)
- roave/security-advisories: dev-master
This package is auto-updated.
Last update: 2024-10-24 11:23:41 UTC
README
Installation
- Install via composer
composer require --dev charonlab/coding-standard
- Create the
phpcs.xml.dist
file in root path of you repository<?xml version="1.0"?> <ruleset xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="vendor/squizlabs/php_codesniffer/phpcs.xsd"> <arg name="basepath" value="."/> <arg name="cache" value=".phpcs-cache"/> <arg name="colors"/> <arg name="extensions" value="php"/> <arg name="parallel" value="80"/> <!-- Show progress --> <arg value="sp"/> <!-- Paths to check --> <file>src</file> <file>test</file> <!-- Include all rules from the CharonLab Coding Standard --> <rule ref="Charon"/> </ruleset>
- Add composer scripts into your
composer.json
{ "scripts": { "cs": "phpcs", "cs-fix": "phpcbf -vpw" } }
Usage
-
To run checks only:
composer run cs
-
To automatically fix violations coding standards:
composer run cs-fix
License
The MIT License (MIT). Please see License for more information.