├── .gitattributes ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ └── bug_report.md └── workflows │ └── php.yml ├── .gitignore ├── .php-cs-fixer.dist.php ├── LICENSE.md ├── README.md ├── composer.json ├── phpunit.xml ├── src └── Medoo.php └── tests ├── AggregateTest.php ├── CreateTest.php ├── DeleteTest.php ├── DropTest.php ├── GetTest.php ├── HasTest.php ├── InsertTest.php ├── MedooTestCase.php ├── QueryTest.php ├── QuoteTest.php ├── RandTest.php ├── RawTest.php ├── ReplaceTest.php ├── SelectTest.php ├── UpdateTest.php └── WhereTest.php /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catfan/Medoo/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catfan/Medoo/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catfan/Medoo/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/workflows/php.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catfan/Medoo/HEAD/.github/workflows/php.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catfan/Medoo/HEAD/.gitignore -------------------------------------------------------------------------------- /.php-cs-fixer.dist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catfan/Medoo/HEAD/.php-cs-fixer.dist.php -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catfan/Medoo/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catfan/Medoo/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catfan/Medoo/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catfan/Medoo/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/Medoo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catfan/Medoo/HEAD/src/Medoo.php -------------------------------------------------------------------------------- /tests/AggregateTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catfan/Medoo/HEAD/tests/AggregateTest.php -------------------------------------------------------------------------------- /tests/CreateTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catfan/Medoo/HEAD/tests/CreateTest.php -------------------------------------------------------------------------------- /tests/DeleteTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catfan/Medoo/HEAD/tests/DeleteTest.php -------------------------------------------------------------------------------- /tests/DropTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catfan/Medoo/HEAD/tests/DropTest.php -------------------------------------------------------------------------------- /tests/GetTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catfan/Medoo/HEAD/tests/GetTest.php -------------------------------------------------------------------------------- /tests/HasTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catfan/Medoo/HEAD/tests/HasTest.php -------------------------------------------------------------------------------- /tests/InsertTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catfan/Medoo/HEAD/tests/InsertTest.php -------------------------------------------------------------------------------- /tests/MedooTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catfan/Medoo/HEAD/tests/MedooTestCase.php -------------------------------------------------------------------------------- /tests/QueryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catfan/Medoo/HEAD/tests/QueryTest.php -------------------------------------------------------------------------------- /tests/QuoteTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catfan/Medoo/HEAD/tests/QuoteTest.php -------------------------------------------------------------------------------- /tests/RandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catfan/Medoo/HEAD/tests/RandTest.php -------------------------------------------------------------------------------- /tests/RawTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catfan/Medoo/HEAD/tests/RawTest.php -------------------------------------------------------------------------------- /tests/ReplaceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catfan/Medoo/HEAD/tests/ReplaceTest.php -------------------------------------------------------------------------------- /tests/SelectTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catfan/Medoo/HEAD/tests/SelectTest.php -------------------------------------------------------------------------------- /tests/UpdateTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catfan/Medoo/HEAD/tests/UpdateTest.php -------------------------------------------------------------------------------- /tests/WhereTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catfan/Medoo/HEAD/tests/WhereTest.php --------------------------------------------------------------------------------