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',
@localpath
localpath / launch.json
Created August 8, 2024 17:02
VS Code XDebug Config
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Listen for Xdebug",
"type": "php",
"request": "launch",