Home

Awesome

DBAL universal module

This package integrates Doctrine DBAL in any container-interop compatible framework/container.

Installation

composer require thecodingmachine/dbal-universal-module

Once installed, you need to register the TheCodingMachine\DbalServiceProvider into your container.

If your container supports thecodingmachine/discovery integration, you have nothing to do. Otherwise, refer to your framework or container's documentation to learn how to register service providers.

Introduction

This service provider is meant to provide one connection to your database. If you need more than one connection to your database, please configure your container directly.

Expected values / services

This service provider expects the following configuration / services to be available:

NameCompulsoryDescription
dbal.hostnoThe database host. Defaults to localhost
dbal.usernoThe database user. Defaults to root
dbal.passwordnoThe database password. Defaults to empty
dbal.portnoThe database port. Defaults to 3306
dbal.dbnameyesThe database name.
dbal.charsetnoThe database character set.
dbal.driverOptionsnoAn array of driver options. Defaults to [1002 =>"SET NAMES utf8"]
dbal.paramsnoAn array of parameters directly passed to the Connection object. If this parameter is set, all parameters above are ignored.
Doctrine\DBAL\DrivernoThe DBAL driver to use to create the connection. Defaults to DBAL's PDO_MySQL Driver service

Provided services

This service provider provides the following services:

Service nameDescription
Doctrine\DBAL\ConnectionA DBAL connection to your database

Extended services

This service provider does not extend any service.