imbo / imbo-mysql-adapters
MySQL adapters for Imbo
Installs: 1 798
Dependents: 1
Suggesters: 1
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 1
Requires
- php: >=8.1
- ext-pdo: *
- ext-pdo_mysql: *
- imbo/imbo-pdo-adapters: dev-main
Requires (Dev)
- imbo/imbo: dev-main
- imbo/imbo-adapters-sdk: dev-main
- imbo/imbo-coding-standard: ^2.0
- phpunit/phpunit: ^10.0
- psalm/plugin-phpunit: ^0.18.4
- vimeo/psalm: ^5.5
This package is auto-updated.
Last update: 2024-10-20 00:48:31 UTC
README
MySQL database adapters for Imbo.
Installation
composer require imbo/imbo-mysql-adapters
Usage
This package provides MySQL adapters for Imbo using PDO.
$database = new Imbo\Database\MySQL($dsn, $username, $passord, $options);
Running integration tests
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
License
MIT, see LICENSE.