broadway / coding-standard
The coding standard of the Broadway project.
Package info
github.com/broadway/coding-standard
Language:Makefile
pkg:composer/broadway/coding-standard
1.2.1
2022-08-22 11:51 UTC
Requires
- php: >=7.3
- friendsofphp/php-cs-fixer: ^3.0
- malukenho/docheader: ^0.1.7|1.0
This package is auto-updated.
Last update: 2026-02-24 14:21:57 UTC
README
The coding standard of the Broadway project.
Installation
$ composer require --dev broadway/coding-standard
Configuration
PHP CS fixer
- create a
.php-cs-fixer.phpfile referencing the.php-cs-fixer.dist.phptemplate:
# .php-cs-fixer.php <?php $config = require 'vendor/broadway/coding-standard/.php-cs-fixer.dist.php'; $config->setFinder( \PhpCsFixer\Finder::create() ->in([ __DIR__ . '/src', __DIR__ . '/test', ]) ); return $config;
- add
.php_cs.cacheto your.gitignore.
docheader
- copy the
.docheader.disttemplate:
cp vendor/broadway/coding-standard/.docheader.dist ./.docheader
- modify the
.docheaderfile is necessary.
Usage
$ vendor/bin/php-cs-fixer fix --allow-risky=yes --diff --verbose
$ vendor/bin/docheader check {src,test}