xxxxxxxxxx
# place the pre-commit file in the .git/hooks/ folder in your git repository.
curl -O https://raw.githubusercontent.com/AllysonSilva/php-pre-commit/master/pre-commit
# create new hooks folder
mkdir .git/hooks
# move pre-commit to new hooks folder
mv pre-commit .git/hooks/pre-commit
# don't forget to make the pre-commit file executable
chmod +x .git/hooks/pre-commit