You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
292 B
Bash
10 lines
292 B
Bash
#!/bin/sh
|
|
export PATH=vendor/bin:$PATH
|
|
DIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )
|
|
cd $DIR && cd ../
|
|
composer install
|
|
phpunit
|
|
phploc --log-xml=./build/phploc.xml --count-tests ./src ./tests
|
|
phpcs --standard=PSR1,PSR2 --report=checkstyle --report-file=build/phpcs.xml ./src/
|
|
phpdox
|