Skip to content

Commit

Permalink
Merge pull request #6 from vanilla/feature/update-to-1dot2
Browse files Browse the repository at this point in the history
Update htmLawed to 1.2
  • Loading branch information
tburry authored Mar 28, 2017
2 parents 95c93cf + e69d782 commit 282b1c9
Show file tree
Hide file tree
Showing 2 changed files with 125 additions and 109 deletions.
15 changes: 13 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,20 @@ branches:
- upstream

install:
- composer install
- composer self-update
- composer install -o
- |
if [[ ${TRAVIS_PHP_VERSION:0:2} == "7." ]]; then
composer require "phpunit/phpunit=~5.7"
else
if [[ ${TRAVIS_PHP_VERSION:0:3} == "5.6" ]]; then
composer require "phpunit/phpunit=~5"
else
composer require "phpunit/phpunit=~4.8"
fi
fi
script: phpunit -c phpunit.xml.dist --coverage-clover=coverage.clover
script: ./vendor/bin/phpunit -c phpunit.xml.dist --coverage-clover=coverage.clover

after_script:
- wget https://scrutinizer-ci.com/ocular.phar
Expand Down
Loading

0 comments on commit 282b1c9

Please sign in to comment.