Start of CI config
This commit is contained in:
parent
356a2a920a
commit
4a581b5617
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,3 +1,2 @@
|
||||
test_config.json
|
||||
tests/simpletest/*
|
||||
index.html
|
||||
|
14
.travis.yml
Normal file
14
.travis.yml
Normal file
@ -0,0 +1,14 @@
|
||||
language: php
|
||||
php:
|
||||
- 5.2
|
||||
- 5.3
|
||||
- 5.4
|
||||
env:
|
||||
- DB=mysql
|
||||
- DB=pgsql
|
||||
- DB=sqlite
|
||||
before_script:
|
||||
- mysql -e 'CREATE DATABASE test;'
|
||||
- psql -c 'CREATE DATABASE test;' -U postgres
|
||||
script: 'php ./tests/index.php'
|
||||
|
@ -2,6 +2,8 @@
|
||||
|
||||
A query builder/abstraction layer, using prepared queries for security.
|
||||
|
||||
[![Build Status](https://secure.travis-ci.org/timw4mail/Query.png)](http://travis-ci.org/timw4mail/Query)
|
||||
|
||||
## Requirements
|
||||
* Pdo extensions for the databases you wish to use (unless it's Firebird, in which case, the interbase extension is required)
|
||||
* PHP 5.2+
|
||||
|
Binary file not shown.
Loading…
Reference in New Issue
Block a user