PHP Classes

File: .travis.yml

Recommend this page to a friend!
  Classes of Niko Peikrishvili   Minimal Twilio PHP API Send SMS   .travis.yml   Download  
File: .travis.yml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Minimal Twilio PHP API Send SMS
Send SMS messages using the Twilio API
Author: By
Last change:
Date: 3 years ago
Size: 764 bytes
 

Contents

Class file image Download
# Config file for https://travis-ci.org/ language: php # Define the php versions against we want to test our code php: - 7.1 - 7.2 - 7.3 - 7.4 # Note: Code coverage requires php-xDebug extension enabled on CI server install: - travis_retry composer install --no-interaction --no-suggest # Testing the app (see phpunit.xml) for configs, generating Code Coverage report script: - composer test -- --coverage-clover=coverage.xml #after_script: after_success: # Submit coverage report to https://codecov.io - bash <(curl -s https://codecov.io/bash) #after_failure: # Monitor only these branches branches: only: - master - dev # You can delete the cache using travis-ci web interface cache: directories: - $HOME/.composer/cache