2015-11-26 13:26:05 +00:00
# Forces new Travis-CI Infrastructure
sudo : false
2015-06-16 19:26:06 +00:00
language : php
2015-11-26 13:26:05 +00:00
env :
global :
- RUN_PHPCS="no"
2015-06-16 19:26:06 +00:00
matrix :
2015-11-26 13:26:05 +00:00
include :
- php : 5.3
env : RUN_PHPCS="yes"
- php : 5.4
- php : 5.5
- php : 5.6
2015-06-16 19:26:06 +00:00
- php : 7.0
2015-06-16 19:33:51 +00:00
before_script :
2015-11-26 13:26:05 +00:00
# Make sure all dev dependencies are installed
2015-06-16 19:33:51 +00:00
- composer install
2015-06-16 19:26:06 +00:00
script :
2015-11-26 13:48:37 +00:00
- if [ "$RUN_PHPCS" == "yes" ]; then then vendor/bin/phpcs --report=full --extensions=php -p --standard=build/phpcs/Joomla --ignore=./*tmpl/* administrator/components/com_patchtester; fi