Skip to content

Instantly share code, notes, and snippets.

View amaelftah's full-sized avatar

Ahmed Mohamed Abd El Ftah amaelftah

View GitHub Profile
@laravel-shift
laravel-shift / .php-cs-fixer.php
Last active March 20, 2024 21:24
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',