Server : Apache/2.4.43 (Win64) OpenSSL/1.1.1g PHP/7.4.6
System : Windows NT USER-PC 6.1 build 7601 (Windows 7 Professional Edition Service Pack 1) AMD64
User : User ( 0)
PHP Version : 7.4.6
Disable Function : NONE
Directory :  C:/xampp/phpMyAdmin/vendor/phpmyadmin/twig-i18n-extension/
Upload File :
Current Directory [ Writeable ] Root Directory [ Writeable ]


Current File : C:/xampp/phpMyAdmin/vendor/phpmyadmin/twig-i18n-extension/.travis.yml
language: php

sudo: false

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

env:
    - DEPS=no

before_install:
    - phpenv config-rm xdebug.ini

before_script:
    - if [ "$DEPS" == "low" ]; then composer --prefer-lowest --prefer-stable update; fi;
    - if [ "$DEPS" == "no" ]; then composer install; fi;

script: |
    ./vendor/bin/simple-phpunit

matrix:
    include:
        - php: 5.5
          dist: trusty
        - php: 5.6
          env: DEPS=low
        - php: 7.0
        - php: 7.1
        - php: 7.2
        - php: 7.3
        - php: 7.4
    fast_finish: true