idiosyncratic / coding-standard
The Idiosyncratic Coding Standard.
Installs: 96
Dependents: 7
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
Type:phpcodesniffer-standard
Requires
- php: ^8.2
- dealerdirect/phpcodesniffer-composer-installer: ^1.0.0
- doctrine/coding-standard: ^12.0
- slevomat/coding-standard: ^8.14
- squizlabs/php_codesniffer: ^3.7
README
This is the coding standard used for all Idiosyncratic Projects, based on the Doctrine Coding Standard. Changes to the Doctrine Coding Standard are:
- Private properties that are intended to be public read-only (using a magic
__get()
method, for instance) should be marked as@public-read-only
. - Equals signs do not need to be aligned in assignments (Generic.Formatting.MultipleStatementAlignment.NotSame)