From d2e1aef2d537597f9fcd0dc60b5db5607da9a06f Mon Sep 17 00:00:00 2001 From: Nic Puddu Date: Fri, 10 Jun 2016 10:47:36 +0100 Subject: [PATCH] Change yaml configuration to make the use of the dev tools instead of globally installed ones. Added phpcs to the process. --- .travis.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 5fd6eec..595fea5 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,9 +7,8 @@ php: install: - export PATH="$HOME/.composer/vendor/bin:$PATH" - composer global require "fxp/composer-asset-plugin:~1.1.1" - - composer global require "codeception/codeception:*" - - composer update + - composer install script: - - codecept build - - codecept run + - ./vendor/bin/codecept run + - ./vendor/bin/phpcs src