opsway / psr12-strict-coding-standard
Modern & strict coding standard extend PSR12
Installs: 124 580
Dependents: 21
Suggesters: 0
Security: 0
Stars: 7
Watchers: 16
Forks: 3
Open Issues: 2
Language:Shell
Type:phpcodesniffer-standard
pkg:composer/opsway/psr12-strict-coding-standard
Requires
- php: ^8.0
- dealerdirect/phpcodesniffer-composer-installer: ~0.7 || ^1.0
- slevomat/coding-standard: ^7.0 || ^8.0
- squizlabs/php_codesniffer: ^3.6 || ^4.0
- webimpress/coding-standard: ^1.2
README
The coding standard ruleset for strong code style checking.
This specification extends and expands PSR-12, the extended coding style guide and requires adherence to PSR-1, the basic coding standard. All additional checks and sniffs use from another third-party libraries:
- slevomat/coding-standard
- webimpress/coding-standard
Installation
- 
Install the module via composer by running: composer require --dev opsway/psr12-strict-coding-standard 
- 
Add composer scripts into your composer.json:"scripts": { "cs-check": "phpcs", "cs-fix": "phpcbf" } 
- 
Run the init_phpcs.shto generate the PHP_CodeSniffer ruleset into your project root:wget https://raw.githubusercontent.com/opsway/psr12-strict-modern-standart/master/init_phpcs.sh chmod +x ./init_phpcs.sh ./init_phpcs.sh or, create a ruleset phpcs.xmlin the project root with the following content (notice entries under<!-- Paths to check -->):<?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="10"/> <!-- Show progress --> <arg value="p"/> <!-- Paths to check --> <file>config</file> <file>src</file> <file>test</file> <!-- Include all rules from the Zend Coding Standard --> <rule ref="OpsWayStrictPSR12CodingStandard"/> </ruleset> 
You can include or exclude relevant directories within file elements under <!-- Paths to check --> in the PHP_CodeSniffer ruleset above.
For further reference, please see the PHP_CodeSniffer wiki: https://github.com/squizlabs/PHP_CodeSniffer/wiki/Annotated-ruleset.xml
Usage
- 
To run checks only: $ composer cs-check 
- 
To automatically fix many CS issues: $ composer cs-fix 
Reference
Rules can be added, excluded or tweaked locally, depending on your preferences. More information on how to do this can be found here: