diff --git a/.php_cs b/.php_cs new file mode 100644 index 0000000..4a8ba0d --- /dev/null +++ b/.php_cs @@ -0,0 +1,9 @@ +exclude(__DIR__.'/tests/simpletest/') + ->in(__DIR__); + +return Symfony\CS\Config\Config::create() + ->fixers(array('linefeed','short_tag','trailing_spaces','php_closing_tag','return','visibility','include','elseif')) + ->finder($finder); diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..3c61104 --- /dev/null +++ b/composer.json @@ -0,0 +1,19 @@ +{ + "name":"aviat4ion/query", + "type":"library", + "description":"Database Query Builder and Abstraction layer", + "keywords":["database", "query builder"], + "homepage":"https://github.com/aviat4ion/Query", + "license":"dbad-license", + "authors": [ + { + "name": "Timothy J. Warren", + "email": "tim@timshomepage.net", + "homepage": "https://timshomepage.net", + "role": "Developer" + } + ], + "require": { + "php": ">=5.2.0" + } +} \ No newline at end of file diff --git a/tests/db_files/FB_TEST_DB.FDB b/tests/db_files/FB_TEST_DB.FDB index a61d68f..702a596 100644 Binary files a/tests/db_files/FB_TEST_DB.FDB and b/tests/db_files/FB_TEST_DB.FDB differ