Skip to content

enstart/db

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Enstart Extension: Database

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

About

Wrapper for mrjgreen/database for the enstart framework.

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages