Patched to Drupal 8.4.8 level. See https://www.drupal.org/sa-core-2018-004 and patch...
[yaffs-website] / vendor / drupal / drupal-driver / .travis.yml
1 language: php
2
3 php:
4   - 5.3
5   - 5.4
6   - 5.5
7   - 5.6
8   - 7.0
9   - hhvm
10
11 install:
12   - composer install --dev --prefer-source
13
14 script:
15   - find ./src -name "*.php" -print0 | xargs -0 -n1 -P8 php -l
16   - phpunit
17   - vendor/bin/phpspec run -f pretty --no-interaction
18   # Don't test coding on php 5.3.
19   - test ${TRAVIS_PHP_VERSION} == "5.3" || ./vendor/bin/phpcs --standard=./phpcs-ruleset.xml --ignore=./vendor --ignore=./doc --ignore=./spec --ignore=./drush .
20
21 # Enable Travis containers.
22 sudo: false