diff --git a/.gitignore b/.gitignore index 8d37fcd..0d6e339 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,2 @@ test_config.json -tests/simpletest/* index.html diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..82ca948 --- /dev/null +++ b/.travis.yml @@ -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' + \ No newline at end of file diff --git a/README.md b/README.md index 91d86f1..49a3f40 100644 --- a/README.md +++ b/README.md @@ -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+ diff --git a/tests/test_dbs/FB_TEST_DB.FDB b/tests/test_dbs/FB_TEST_DB.FDB index b725d4d..f8b2eb7 100755 Binary files a/tests/test_dbs/FB_TEST_DB.FDB and b/tests/test_dbs/FB_TEST_DB.FDB differ