├── LICENSE ├── README.md ├── composer.json ├── extensions └── options.php ├── index.php ├── phpunit.dist.xml ├── pint.json └── src ├── Contracts └── BootDatabase.php ├── DB.php ├── DatabaseManager.php ├── Model.php └── Schema.php /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beebmx/kirby-db/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beebmx/kirby-db/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beebmx/kirby-db/HEAD/composer.json -------------------------------------------------------------------------------- /extensions/options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beebmx/kirby-db/HEAD/extensions/options.php -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beebmx/kirby-db/HEAD/index.php -------------------------------------------------------------------------------- /phpunit.dist.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beebmx/kirby-db/HEAD/phpunit.dist.xml -------------------------------------------------------------------------------- /pint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beebmx/kirby-db/HEAD/pint.json -------------------------------------------------------------------------------- /src/Contracts/BootDatabase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beebmx/kirby-db/HEAD/src/Contracts/BootDatabase.php -------------------------------------------------------------------------------- /src/DB.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beebmx/kirby-db/HEAD/src/DB.php -------------------------------------------------------------------------------- /src/DatabaseManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beebmx/kirby-db/HEAD/src/DatabaseManager.php -------------------------------------------------------------------------------- /src/Model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beebmx/kirby-db/HEAD/src/Model.php -------------------------------------------------------------------------------- /src/Schema.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beebmx/kirby-db/HEAD/src/Schema.php --------------------------------------------------------------------------------