Skip to content

Instantly share code, notes, and snippets.

View harris21's full-sized avatar
🏝️
Working from my hammock

Harris Raftopoulos harris21

🏝️
Working from my hammock
View GitHub Profile
@petericebear
petericebear / .php_cs
Last active June 26, 2023 02:32
Laravel 5.x php-cs-fixer config file
<?php
$finder = Symfony\Component\Finder\Finder::create()
->notPath('bootstrap/cache')
->notPath('storage')
->notPath('vendor')
->in(__DIR__)
->name('*.php')
->notName('*.blade.php')
->ignoreDotFiles(true)