Spiral framework ships with an extension intended to unify the coding style across its components and your applications. The extension code style is based on a strict PSR-12 with no exceptions.
The extension repository: https://github.com/spiral/code-style
The actual formatting and style-checking is based on:
To install the extension:
composer require --dev spiral/code-style
To check code-style compliance:
# vendor/bin/spiral-cs check <dir1> <dir2> <file1>....
vendor/bin/spiral-cs check src tests
To automatically fix code-style:
# vendor/bin/spiral-cs fix <dir1> <dir2> <file1>....
vendor/bin/spiral-cs fix src tests
Note
Note, the extensions will force CL endings.