Skip to content

Instantly share code, notes, and snippets.

View alexandrecruz's full-sized avatar

Alexandre Cruz alexandrecruz

  • Toronto, ON, Canada
View GitHub Profile
@alexandrecruz
alexandrecruz / .php-cs-fixer.php
Created May 24, 2022 13:37 — 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',