Skip to content

Instantly share code, notes, and snippets.

View dcmastenbroek's full-sized avatar

Dominique dcmastenbroek

View GitHub Profile
@dcmastenbroek
dcmastenbroek / .php-cs-fixer.php
Last active March 28, 2022 19:09 — forked from laravel-shift/.php-cs-fixer.php
PHP CS Fixer - Laravel Coding Style Ruleset
<?php
use PhpCsFixer\Config;
use PhpCsFixer\Finder;
$rules = [
'array_indentation' => true,
'array_syntax' => ['syntax' => 'short'],
'binary_operator_spaces' => [
'default' => 'single_space',

Semantic Commit Messages

See how a minor change to your commit message style can make you a better programmer.

Format: <type>(<scope>): <subject>

<scope> is optional

Example