diff --git a/wercker.yml b/wercker.yml new file mode 100644 index 000000000..5f0a79b13 --- /dev/null +++ b/wercker.yml @@ -0,0 +1,18 @@ +box: wercker/php +build: + # The steps that will be executed on build + steps: + # A custom script step, name value is used in the UI + # and the code value contains the command that get executed + - script: + name: install dependencies + code: composer install --no-interaction + - script: + name: echo php information + code: | + echo "php version $(php --version) running" + echo "from location $(which php)" + # Add more steps here: + #- script: + # name: run unit tests + # code: phpunit