Added the Porter Stemmer module to improve searches. This doesn't deal with some...
[yaffs-website] / vendor / drupal-composer / drupal-scaffold / .travis.yml
1 language: php
2
3 branches:
4   # Only test the master branch and SemVer tags.
5   only:
6     - master
7     - /^[[:digit:]]+\.[[:digit:]]+\.[[:digit:]]+.*$/
8
9 matrix:
10   fast_finish: true
11   include:
12     - php: 7.2
13       env: 'DEPENCENCIES=highest'
14     - php: 7.2
15     - php: 7.1
16     - php: 7.0.11
17     - php: 5.6
18       env: 'SCENARIO=phpunit4'
19     - php: 5.5
20       env: 'SCENARIO=phpunit4'
21     - php: 5.5
22       env: 'SCENARIO=phpunit4 DEPENDENCIES=lowest'
23
24 sudo: false
25
26 git:
27  depth: 10000
28
29 before_install:
30   - phpenv config-rm xdebug.ini
31   - composer --verbose self-update
32   - composer --version
33
34 install:
35   - 'composer scenario "${SCENARIO}" "${DEPENDENCIES}"'
36
37 before_script:
38   - git config --global user.email "travisci@example.com"
39   - git config --global user.name "Travis CI Test"
40
41 script:
42   - composer test