├── .editorconfig ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── composer.json ├── doc ├── about.md ├── api.md ├── conventions.md └── guide.md ├── phpunit.xml ├── src └── LessQL │ ├── Database.php │ ├── Literal.php │ ├── Result.php │ └── Row.php └── tests ├── .gitignore ├── DatabaseTest.php ├── ResultTest.php ├── RowTest.php ├── TestBase.php ├── mysql.php ├── postgresql.php └── sqlite.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris/lessql/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | coverage 2 | vendor 3 | .php_cs.cache 4 | composer.lock 5 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris/lessql/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris/lessql/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris/lessql/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris/lessql/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris/lessql/HEAD/composer.json -------------------------------------------------------------------------------- /doc/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris/lessql/HEAD/doc/about.md -------------------------------------------------------------------------------- /doc/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris/lessql/HEAD/doc/api.md -------------------------------------------------------------------------------- /doc/conventions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris/lessql/HEAD/doc/conventions.md -------------------------------------------------------------------------------- /doc/guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris/lessql/HEAD/doc/guide.md -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris/lessql/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/LessQL/Database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris/lessql/HEAD/src/LessQL/Database.php -------------------------------------------------------------------------------- /src/LessQL/Literal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris/lessql/HEAD/src/LessQL/Literal.php -------------------------------------------------------------------------------- /src/LessQL/Result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris/lessql/HEAD/src/LessQL/Result.php -------------------------------------------------------------------------------- /src/LessQL/Row.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris/lessql/HEAD/src/LessQL/Row.php -------------------------------------------------------------------------------- /tests/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris/lessql/HEAD/tests/.gitignore -------------------------------------------------------------------------------- /tests/DatabaseTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris/lessql/HEAD/tests/DatabaseTest.php -------------------------------------------------------------------------------- /tests/ResultTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris/lessql/HEAD/tests/ResultTest.php -------------------------------------------------------------------------------- /tests/RowTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris/lessql/HEAD/tests/RowTest.php -------------------------------------------------------------------------------- /tests/TestBase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris/lessql/HEAD/tests/TestBase.php -------------------------------------------------------------------------------- /tests/mysql.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris/lessql/HEAD/tests/mysql.php -------------------------------------------------------------------------------- /tests/postgresql.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris/lessql/HEAD/tests/postgresql.php -------------------------------------------------------------------------------- /tests/sqlite.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris/lessql/HEAD/tests/sqlite.php --------------------------------------------------------------------------------