File tree Expand file tree Collapse file tree 4 files changed +20
-19
lines changed Expand file tree Collapse file tree 4 files changed +20
-19
lines changed Original file line number Diff line number Diff line change 1- build /api
2- build /code-browser
3- build /coverage
4- build /logs
5- build /pdepend
6- cache.properties
71/tests /_files /tmp
82/vendor
93/composer.lock
10- /composer.phar
114/.idea
125/.php_cs.cache
6+
Original file line number Diff line number Diff line change 11language : php
22
33php :
4- - 5.6
5- - 7.0
6- - 7.1
7- - nightly
4+ - 5.6
5+ - 7.0
6+ - 7.1
7+ - nightly
8+
9+ env :
10+ matrix :
11+ - DEPENDENCIES="high"
12+ - DEPENDENCIES="low"
813
914sudo : false
1015
1116before_install :
12- - composer self-update
17+ - composer self-update
18+ - composer clear-cache
1319
1420install :
15- - travis_retry composer install --no-interaction --prefer-source
21+ - if [[ "$DEPENDENCIES" = 'high' ]]; then travis_retry composer update --no-interaction --no-ansi --no-progress --no-suggest --optimize-autoloader --prefer-stable; fi
22+ - if [[ "$DEPENDENCIES" = 'low' ]]; then travis_retry composer update --no-interaction --no-ansi --no-progress --no-suggest --optimize-autoloader --prefer-stable --prefer-lowest; fi
1623
1724script :
1825
19- - vendor/bin/phpunit --configuration build
26+ - vendor/bin/phpunit
2027
2128notifications :
2229 email : false
Original file line number Diff line number Diff line change 99
1010 <target name =" composer" depends =" clean" description =" Install dependencies with Composer" >
1111 <exec executable =" composer" taskname =" composer" >
12- <env key =" COMPOSER_DISABLE_XDEBUG_WARN" value =" 1" />
1312 <arg value =" update" />
1413 <arg value =" --no-interaction" />
1514 <arg value =" --no-progress" />
Original file line number Diff line number Diff line change 11<?xml version =" 1.0" encoding =" UTF-8" ?>
22<phpunit xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
3- xsi : noNamespaceSchemaLocation =" https://schema.phpunit.de/5.3 /phpunit.xsd"
4- bootstrap =" ../ tests/bootstrap.php"
3+ xsi : noNamespaceSchemaLocation =" https://schema.phpunit.de/5.7 /phpunit.xsd"
4+ bootstrap =" tests/bootstrap.php"
55 backupGlobals =" false"
66 verbose =" true" >
77 <testsuite >
8- <directory suffix =" Test.php" >../ tests/tests</directory >
8+ <directory suffix =" Test.php" >tests/tests</directory >
99 </testsuite >
1010
1111 <filter >
1212 <whitelist processUncoveredFilesFromWhitelist =" true" >
13- <directory suffix =" .php" >../ src</directory >
13+ <directory suffix =" .php" >src</directory >
1414 </whitelist >
1515 </filter >
1616</phpunit >
17+
You can’t perform that action at this time.
0 commit comments