Skip to content

Repository files navigation

Ray.CakeDbModule

This is the CakePHP Database Module for Ray.Di

Installation

Composer install

$ composer require ray/cake-database-module

Module install

You can Inject the database Connection instance to any class this way:

useRay\Di\AbstractModule;
useRay\CakeDbModule\CakeDbModule;
class AppModule extends AbstractModule
{
protectedfunctionconfigure()
{
$this->install(newCakeDbModule('sqlite:///'));
// or$this->install(newCakeDbModule('mysql://root@localhost/cake_db'));
}
}

That will create inject instances of Cake\Database\Connection with the SQLite driver using the memory database or connect to the localhost mysql using the root credentials.

You can also be more specific and pass a configuraiton array as Cake\Database\Connection would accept it:

useRay\Di\AbstractModule;
useRay\CakeDbModule\CakeDbModule;
class AppModule extends AbstractModule
{
protectedfunctionconfigure()
{
$config = [
'className' => 'Cake\Database\Connection',
'driver' => 'Cake\Database\Driver\Mysql',
'username' => 'root',
'password' => 'root',
'database' => 'cake'
];
$this->install(newCakeDbModule($config));
}
}

Finally you can rely on already configured connections in cake's ConnectionManager and inject connections by name:

ConnectionManager::config('default', $config);
useRay\Di\AbstractModule;
useRay\CakeDbModule\CakeDbModule;
class AppModule extends AbstractModule
{
protectedfunctionconfigure()
{
$this->install(newCakeDbModule('default'));
}
}

DI trait

You can inject the connection instance on any class by using the Ray\CakeDbModule\DatabaseInject trait:

useRay\CakeDbModule\DatabaseInject;
class MyThing
{
use DatabaseInject;
}

This will make the methods getDbConnection() and setDbConnection() available in your class and will automatically inject the Connection instance when MyThing is instantiated using the Injector.

Wrapping methods inside a transaction

You can make any method run inside a transaction by using the @Transactional annotation. This is handy for saving operations:

useDateTime;
useRay\CakeDbModule\Annotation\Trasactional;
useRay\CakeDbModule\DatabaseInject;
class MyThing
{
use DatabaseInject;
/** * This will run inside a new transaction * * @Transactional */publicfunctionstoreSomething()
{
$this->db->insert(
'posts',
['name' => 'First', 'show_on' => newDateTime('+3 days')],
['created' => 'datetime']
);
}
}

Demo

$ php docs/demo/run.php
// It works!

Requirements

  • PHP 5.4+
  • hhvm

About

A CakePHP database module for Ray.DI

Topics

Resources

Stars

4 stars

Watchers

6 watching

Forks

Releases

Packages

Used by

Contributors

Languages