Database extension for maer/enstart framework

0.1.0 2017-07-01 13:08 UTC

This package is not auto-updated.

Last update: 2024-05-07 23:46:17 UTC


README

Wrapper for mrjgreen/database for the enstart framework.

Dependencies:

  • enstart/core version 0.3+
  • PHP 7.0+ with the PDO extension

Install

composer require enstart/db

Config:

// Database connection settings
'database' => [
    'driver'    => 'mysql',
    'host'      => 'localhost',
    'database'  => 'database',
    'username'  => 'username',
    'password'  => 'password',
    'charset'   => 'utf8',
    'collation' => 'utf8_unicode_ci'
],

// Register service provider
'providers' => [
    ...
    'Enstart\Ext\Database\ServiceProvider',
],

Access the extension

// Get a copy of the instance
$db = $app->container->make('Database\Connection');

// or through the alias:
$app->db

// or through dependency injection (if you type hint it in your constructor)
use Database\Connection

Read more @ https://github.com/mrjgreen/database