MySQL database adapters for Imbo.
composer require imbo/imbo-mysql-adapters
This package provides MySQL adapters for Imbo using PDO.
$database = new Imbo\Database\MySQL($dsn, $username, $passord, $options);
If you want to run the integration tests you will need a running MySQL service. The repo contains a simple configuration file for Docker Compose that you can use to quickly run a MySQL instance along with phpMyAdmin.
If you wish to use this, run the following command to start up the service after you have cloned the repo:
docker-compose up -d
After the service is running you can execute all tests by simply running PHPUnit:
composer run test # or ./vendor/bin/phpunit
MIT, see LICENSE.