Skip to content

CakePHP 2.0 plugin to bridge with Doctrine MongoDB ODM in order to use models as objects persisted by Doctrine. This changes the original CakePHP feature of returning arrays of results, and instead returns objects wich are cleaner to manage and extend.

beyondkeysystem/MongoCake

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

72 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Installation

Change into your Plugin directory, and checkout the git repo:

cd Plugin
git clone git://github.com/lorenzo/MongoCake.git
cd MongoCake
git submodule update --init --recursive

Configuration

You first need to activate the plugin in CakePHP after placing it in the correct folder:

CakePlugin::load('MongoCake', array('bootstrap' => true));

Use this MongoCake plugin like any other datasource, with its own configuration options:

// Within Config/database.php
public $default = array(
	'datasource' => 'MongoCake.CakeMongoSource',
	'server' => 'localhost', // Optional
	'database' => 'mydatabase', // Database to use
);

Models

Ensure that your models extend the CakeDocument class.

class User extends CakeDocument {
}

About

CakePHP 2.0 plugin to bridge with Doctrine MongoDB ODM in order to use models as objects persisted by Doctrine. This changes the original CakePHP feature of returning arrays of results, and instead returns objects wich are cleaner to manage and extend.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • PHP 100.0%