Coding standard rulesets for QubusPHP.
QubusPHP coding standards loosely follows the Laminas Coding Style Guide with a few exceptions:
- Abstract classes MUST NOT be prefixed/suffixed with
Abstract
. - Traits MUST NOT be prefixed/suffixed with
Trait
. - Interfaces MUST NOT be prefixed/suffixed with
Interface
orContract
. - Exceptions MUST be suffixed with
Exception
. - File name of classes must be in PascalCase.
- File names of functions must be in lowercase and can be delimited with
_
. - Custom functions must be namespaced and imported when used.
- Classes must be coded to interfaces and follow SOLID.
- Install the coding standard as a dependency of your project:
$ composer require --dev qubus/qubus-coding-standard
- Add coding standard to the PHP_CodeSniffer install path:
vendor/bin/phpcs --config-set installed_paths vendor/qubus/qubus-coding-standard
- Run the standards:
vendor/bin/phpcs /path/to/code