PHP Classes

File: .travis.yml

Recommend this page to a friend!
  Classes of Unay Santisteban   Database PDO Abstract Layer   .travis.yml   Download  
File: .travis.yml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Database PDO Abstract Layer
Run queries with PDO and get results in XML, JSON
Author: By
Last change: Update of .travis.yml
Date: 7 months ago
Size: 583 bytes
 

Contents

Class file image Download
language: php php: - '5.5' - '5.6' - '7.0' dist: trusty sudo: required addons: apt: packages: - mysql-server-5.6 - mysql-client-core-5.6 - mysql-client-5.6 services: - mysql - postgresql before_script: - mysql -u root -e "create database IF NOT EXISTS test;" - mysql -u root test < examples/sql/mysql.sql -u root - psql -c 'create database test;' -U postgres - psql -d test -a -f examples/sql/pgsql.sql - sqlite3 examples/test.sqlite < examples/sql/sqlite.sql install: - composer install script: - ./vendor/bin/phpunit -c ./phpunit.xml