imbo/imbo-sqlite-adapters

This package is abandoned and no longer maintained. No replacement package was suggested.

SQLite adapters for Imbo

Installs: 2 087

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 0

Forks: 1

Open Issues: 0

pkg:composer/imbo/imbo-sqlite-adapters

dev-main 2026-01-03 14:30 UTC

This package is auto-updated.

Last update: 2026-01-06 19:42:28 UTC


README

SQLite database adapters for Imbo.

Installation

composer require imbo/imbo-sqlite-adapters

Usage

This package provides SQLite adapters for Imbo using PDO.

$database = new Imbo\Database\SQLite($dsn, $options);

Running integration tests

If you want to run the integration tests you will to create a local SQLite3 database:

sqlite3 /tmp/imbo-sqlite-integration-test.sq3 < setup/000-imbo.sql

When the database exists with the initial tables created you can execute all tests by simply running PHPUnit:

composer run test # or ./vendor/bin/phpunit

License

MIT, see LICENSE.