PHP Classes

File: .travis.yml

Recommend this page to a friend!
  Classes of Scott Arciszewski   Cipher Sweet   .travis.yml   Download  
File: .travis.yml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Cipher Sweet
Encrypt data in away that can be searched
Author: By
Last change:
Date: 5 years ago
Size: 687 bytes
 

Contents

Class file image Download
language: php sudo: false matrix: fast_finish: true include: - php: "5.5" env: USE_PSALM=0 - php: "5.6" env: USE_PSALM=1 - php: "7.0" env: USE_PSALM=1 - php: "7.1" env: USE_PSALM=1 - php: "7.2" env: USE_PSALM=1 - php: "nightly" env: USE_PSALM=1 - php: "master" env: USE_PSALM=1 - php: "hhvm" env: USE_PSALM=1 allow_failures: - php: "master" - php: "hhvm" install: - composer self-update - if [[ $USE_PSALM -eq 1 ]]; then composer require --dev "vimeo/psalm:1.1.3"; fi - composer update script: - vendor/bin/phpunit - if [[ $USE_PSALM -eq 1 ]]; then vendor/bin/psalm; fi