lithium_mongo / branches / master / config / connections.php
history<?php
/**
* Lithium Mongo: Interactive MongoDB browser built on the Lithium framework.
*
* @copyright Copyright 2010, Union of RAD (http://union-of-rad.org)
* @license http://opensource.org/licenses/bsd-license.php The BSD License
*/
use \lithium\data\Connections;
Connections::add('default', array(
'type' => 'MongoDb',
'host' => 'localhost',
'port' => '27017',
'database' => 'myDb'
));
?>