├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .scrutinizer.yml ├── LICENSE ├── README.md ├── composer.json ├── phpunit.xml ├── src └── Vectorface │ └── MySQLite │ ├── MySQL │ ├── Aggregate.php │ ├── Comparison.php │ ├── DateTime.php │ ├── Flow.php │ ├── Numeric.php │ └── StringFunctions.php │ └── MySQLite.php └── tests └── Vectorface └── Tests └── MySQLite ├── MySQLiteTest.php └── Util └── FakePDO.php /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorface/MySQLite/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorface/MySQLite/HEAD/.gitignore -------------------------------------------------------------------------------- /.scrutinizer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorface/MySQLite/HEAD/.scrutinizer.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorface/MySQLite/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorface/MySQLite/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorface/MySQLite/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorface/MySQLite/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/Vectorface/MySQLite/MySQL/Aggregate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorface/MySQLite/HEAD/src/Vectorface/MySQLite/MySQL/Aggregate.php -------------------------------------------------------------------------------- /src/Vectorface/MySQLite/MySQL/Comparison.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorface/MySQLite/HEAD/src/Vectorface/MySQLite/MySQL/Comparison.php -------------------------------------------------------------------------------- /src/Vectorface/MySQLite/MySQL/DateTime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorface/MySQLite/HEAD/src/Vectorface/MySQLite/MySQL/DateTime.php -------------------------------------------------------------------------------- /src/Vectorface/MySQLite/MySQL/Flow.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorface/MySQLite/HEAD/src/Vectorface/MySQLite/MySQL/Flow.php -------------------------------------------------------------------------------- /src/Vectorface/MySQLite/MySQL/Numeric.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorface/MySQLite/HEAD/src/Vectorface/MySQLite/MySQL/Numeric.php -------------------------------------------------------------------------------- /src/Vectorface/MySQLite/MySQL/StringFunctions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorface/MySQLite/HEAD/src/Vectorface/MySQLite/MySQL/StringFunctions.php -------------------------------------------------------------------------------- /src/Vectorface/MySQLite/MySQLite.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorface/MySQLite/HEAD/src/Vectorface/MySQLite/MySQLite.php -------------------------------------------------------------------------------- /tests/Vectorface/Tests/MySQLite/MySQLiteTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorface/MySQLite/HEAD/tests/Vectorface/Tests/MySQLite/MySQLiteTest.php -------------------------------------------------------------------------------- /tests/Vectorface/Tests/MySQLite/Util/FakePDO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorface/MySQLite/HEAD/tests/Vectorface/Tests/MySQLite/Util/FakePDO.php --------------------------------------------------------------------------------