Skip to content

Instantly share code, notes, and snippets.

View localpath's full-sized avatar
🏠
Working from home

Garrick Crouch localpath

🏠
Working from home
View GitHub Profile
@localpath
localpath / .php-cs-fixer.php
Created December 16, 2021 02:11 — 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',