Skip to content

Instantly share code, notes, and snippets.

View pktharindu's full-sized avatar
🚀
Building awesome stuff!

P. K. Tharindu pktharindu

🚀
Building awesome stuff!
View GitHub Profile
@pktharindu
pktharindu / .php-cs-fixer.php
Last active February 28, 2022 19:29
PHP CS Fixer - Laravel Coding Style Ruleset
<?php
use PhpCsFixer\Config;
use PhpCsFixer\Finder;
$rules = [
'array_syntax' => ['syntax' => 'short'],
'binary_operator_spaces' => [
'default' => 'single_space',
'operators' => ['=>' => null],
@pktharindu
pktharindu / .bash_aliases
Last active September 22, 2023 05:04
Adding Bash Aliases
# Git
alias gl="git log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit"
alias nah="git reset --hard && git clean -df"
alias gs="git status"
alias gp="git pull"
alias sw="git switch"
# Laravel
alias art="php artisan"
alias mr="php artisan migrate:refresh"