This is the CakePHP Database Module for Ray.Di
$ composer require ray/cake-database-moduleYou 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'));
}
}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.
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']
);
}
}$ php docs/demo/run.php
// It works!
- PHP 5.4+
- hhvm