- Ensure that you have Composer installed globally and up to date
- In the ubc-vpfo-find-a-space project root directory, run
composer install
to install/update packages - In your local ~/.zshrc file, add the following code block (if you have not already done so):
# CodeSniffer project alias for bash
function set_phpcs_alias() {
if [ -f "./vendor/bin/phpcs" ]; then
alias phpcsproject='./vendor/bin/phpcs . -v'
else
unalias phpcsproject 2>/dev/null
fi
}
# Run this function before each prompt
PROMPT_COMMAND="set_phpcs_alias; $PROMPT_COMMAND"
# Also run it for the initial directory
set_phpcs_alias
- Save your ~/.zshrc file
- run the command:
source ~/.zshrc
- Quit any open terminal applications and relaunch them
- From the ubc-vpfo-find-a-space project root directory, run the command:
phpcsproject
to scan your code according to WordPress Extra coding standards