HEX
Server: LiteSpeed
System: Linux d8 4.18.0-553.121.1.lve.el8.x86_64 #1 SMP Thu Apr 30 16:40:41 UTC 2026 x86_64
User: wbwebdes (3015)
PHP: 8.1.31
Disabled: exec,system,passthru,shell_exec,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname
Upload Files
File: /home/wbwebdes/domains/survey.nailsbyrianne.nl/public_html/vendor/shardj/zf1-future/.travis.yml
language: php
sudo: false

jobs:
  include:
    - php: 7.0
    - php: 7.1
    - php: 7.2
    - php: 7.3
    - php: 7.4
    - php: 8.0
  allow_failures:
    - php: 8.0
  fast_finish: true

env:
  - DEFAULT_COMPOSER_FLAGS="--no-interaction --no-progress --no-suggest" USE_XDEBUG=false

cache:
  directories:
    - $HOME/.composer/cache

services:
  - mysql
  - postgresql

install:
  - phpenv rehash
  - if [[ "$USE_XDEBUG" == false ]]; then phpenv config-rm xdebug.ini || return 0; fi
  - if [[ "$TRAVIS_PHP_VERSION" == 7* ]]; then phpenv config-add tests/php7.travis.ini; fi
  - composer install

before_script:
  - mysql -e 'create database zftest;'
  - psql -c 'create database zftest;' -U postgres

  - cp ./tests/TestConfiguration.travis.php ./tests/TestConfiguration.php

script:
  - ./vendor/bin/phpunit

# EOF