Skip to content

Instantly share code, notes, and snippets.

View harris21's full-sized avatar
🎯
Focusing

Harris Raftopoulos harris21

🎯
Focusing
View GitHub Profile
@petericebear
petericebear / .php_cs
Last active July 25, 2025 18:20
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)