PHP Classes

File: .travis.yml

Recommend this page to a friend!
  Classes of Lars Moelleken   PHP HTML Form Validator   .travis.yml   Download  
File: .travis.yml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP HTML Form Validator
Validate submitted forms values with rules in HTML
Author: By
Last change:
Date: 6 years ago
Size: 1,183 bytes
 

Contents

Class file image Download
language: php sudo: false php: - nightly os: - linux env: global: - PHP_COMPOSER_SETUP=basic git: depth: 2 cache: directories: - $HOME/.composer/cache matrix: fast_finish: true allow_failures: - php: nightly include: - php: 7.0 - php: 7.0 env: PHP_COMPOSER_SETUP=lowest - php: 7.1 - php: 7.1 env: PHP_COMPOSER_SETUP=lowest - php: 7.2 - php: 7.2 env: PHP_COMPOSER_SETUP=lowest before_script: - stty cols 120 - wget https://scrutinizer-ci.com/ocular.phar - travis_retry composer self-update - travis_retry composer require satooshi/php-coveralls:1.0.0 - if [[ $PHP_COMPOSER_SETUP = 'basic' ]]; then travis_retry composer install --prefer-dist --no-interaction; fi - if [[ $PHP_COMPOSER_SETUP = 'lowest' ]]; then travis_retry composer update --prefer-dist --no-interaction --prefer-lowest --prefer-stable; fi - composer dump-autoload -o script: - mkdir -p build/logs - php vendor/bin/phpunit -c phpunit.xml --debug after_script: - php vendor/bin/coveralls -v - php ocular.phar code-coverage:upload --format=php-clover build/logs/clover.xml - bash <(curl -s https://codecov.io/bash)