Skip to content

Instantly share code, notes, and snippets.

View raindog's full-sized avatar
🐺

Mauro Seno raindog

🐺
  • Italy
View GitHub Profile
@raindog
raindog / usefull_commands.sh
Created December 16, 2018 02:07 — forked from carbontwelve/usefull_commands.sh
Running xdebug in the console, for debugging Laravel artisan commands. Useful as I keep forgetting this one...
# Running xdebug in the console, for debugging Laravel artisan commands. Useful as I keep forgetting this one...
php -dxdebug.remote_autostart artisan
#Running phpcs for 5.3:
phpcs -pv --standards= --runtime-set testVersion 5.3 --ignore=*/public/*,*.js,*.css,*/tests/*,*/views/training/* .