PHP Classes

File: .travis.yml

Recommend this page to a friend!
  Classes of Subin Siby   Secure PHP Login System   .travis.yml   Download  
File: .travis.yml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Secure PHP Login System
Register and login users using a database via PDO
Author: By
Last change: Update of .travis.yml
Date: 3 months ago
Size: 410 bytes
 

Contents

Class file image Download
language: php php: - '5.6' - '7.0' - '7.1' services: - mysql - postgresql before_install: - mysql -e 'CREATE DATABASE IF NOT EXISTS tests;' - psql -c 'create database tests;' -U postgres before_script: - composer update script: - vendor/bin/phpunit -c testing/phpunit.mysql.xml - vendor/bin/phpunit -c testing/phpunit.sqlite.xml - vendor/bin/phpunit -c testing/phpunit.postgresql.xml