├── LICENSE ├── README.md ├── composer.json ├── phpstan.neon └── src ├── Bref ├── ConnectionTracker.php ├── EventSubscriber.php └── init.php ├── DbSynchronizer.php ├── Laravel ├── SQLiteS3ServiceProvider.php └── SqliteS3Connector.php ├── PDOSQLiteS3.php └── SQLiteS3.php /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnapoli/sqlite-s3/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnapoli/sqlite-s3/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnapoli/sqlite-s3/HEAD/composer.json -------------------------------------------------------------------------------- /phpstan.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnapoli/sqlite-s3/HEAD/phpstan.neon -------------------------------------------------------------------------------- /src/Bref/ConnectionTracker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnapoli/sqlite-s3/HEAD/src/Bref/ConnectionTracker.php -------------------------------------------------------------------------------- /src/Bref/EventSubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnapoli/sqlite-s3/HEAD/src/Bref/EventSubscriber.php -------------------------------------------------------------------------------- /src/Bref/init.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnapoli/sqlite-s3/HEAD/src/Bref/init.php -------------------------------------------------------------------------------- /src/DbSynchronizer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnapoli/sqlite-s3/HEAD/src/DbSynchronizer.php -------------------------------------------------------------------------------- /src/Laravel/SQLiteS3ServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnapoli/sqlite-s3/HEAD/src/Laravel/SQLiteS3ServiceProvider.php -------------------------------------------------------------------------------- /src/Laravel/SqliteS3Connector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnapoli/sqlite-s3/HEAD/src/Laravel/SqliteS3Connector.php -------------------------------------------------------------------------------- /src/PDOSQLiteS3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnapoli/sqlite-s3/HEAD/src/PDOSQLiteS3.php -------------------------------------------------------------------------------- /src/SQLiteS3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnapoli/sqlite-s3/HEAD/src/SQLiteS3.php --------------------------------------------------------------------------------