PHP Classes

File: .travis.yml

Recommend this page to a friend!
  Packages of Nathaniel Sherwood   Encase PHP Functional Programming   .travis.yml   Download  
File: .travis.yml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Encase PHP Functional Programming
Make functions work as if they are class functions
Author: By
Last change:
Date: 9 months ago
Size: 890 bytes
 

Contents

Class file image Download
dist: xenial language: php env: global: - SETUP=stable matrix: fast_finish: true include: - php: 7.2 - php: 7.2 env: SETUP=lowest - php: 7.3 - php: 7.3 env: SETUP=lowest - php: 7.4 - php: 7.4 env: SETUP=lowest cache: directories: - $HOME/.composer/cache services: - memcached - mysql before_install: - phpenv config-rm xdebug.ini || true - echo "extension = memcached.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini - travis_retry composer self-update - mysql -e 'CREATE DATABASE encase;' install: - if [[ $SETUP = 'stable' ]]; then travis_retry composer update --prefer-dist --no-interaction --prefer-stable --no-suggest; fi - if [[ $SETUP = 'lowest' ]]; then travis_retry composer update --prefer-dist --no-interaction --prefer-lowest --prefer-stable --no-suggest; fi script: vendor/bin/phpunit