PHP Classes

File: .travis.yml

Recommend this page to a friend!
  Classes of Thierry Feuzeu   Jaxon   .travis.yml   Download  
File: .travis.yml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Jaxon
Call PHP classes from JavaScript using AJAX
Author: By
Last change: Added PHP 7.4 to test envs.
Date: 2 years ago
Size: 757 bytes
 

Contents

Class file image Download
language: php php: - 5.6 - 7.0 - 7.1 - 7.2 - 7.3 - 7.4 # run build against nightly but allow them to fail matrix: fast_finish: true # allow_failures: # only one build will send the coverage, this'll speed up other one # include: # faster builds on new travis setup not using sudo sudo: false # cache vendor dirs cache: directories: - vendor - $HOME/.composer/cache before_install: - if [ -n "$GH_TOKEN" ]; then composer config github-oauth.github.com ${GH_TOKEN}; fi; - composer self-update install: - composer install --no-interaction --prefer-dist -o script: - vendor/bin/phpunit after_script: - if [[ "$PHPUNIT_FLAGS" != "" ]]; then php vendor/bin/coveralls -v; fi;