LeWestopher / mongodb-cakephp3

An Mongodb datasource for CakePHP 3.0

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Slack

Mongodb for Cakephp3

An Mongodb datasource for CakePHP 3.0

Installing via composer

Install composer and run:

composer require hayko/mongodb

Connecting the Plugin to your application

add the following line in your config/bootstrap.php to tell your application to load the plugin:

Plugin::load('Hayko/Mongodb');

Defining a connection

Now, you need to set the connection in your config/app.php file:

 'Datasources' => [
    'default' => [
        'className' => 'Hayko\Mongodb\Database\Connection',
        'driver' => 'Hayko\Mongodb\Database\Driver\Mongodb',
        'persistent' => false,
        'host' => 'localhost',
        'port' => 27017,
        'username' => '',
        'password' => '',
        'database' => 'devmongo',
    ],
],

Models

After that, you need to load Hayko\Mongodb\ORM\Table in your tables class:

//src/Model/Table/YourTable.php

use Hayko\Mongodb\ORM\Table;

class CategoriesTable extends Table {

}

Observations

The function find() works only in the old fashion way. So, if you want to find something, you to do like the example:

$this->Categories->find('all', ['conditions' => ['name' => 'teste']]);
$this->Categories->find('all', ['conditions' => ['name LIKE' => 'teste']]);
$this->Categories->find('all', ['conditions' => ['name' => 'teste'], 'limit' => 3]);

LICENSE

The MIT License (MIT) Copyright (c) 2013

About

An Mongodb datasource for CakePHP 3.0

License:MIT License


Languages

Language:PHP 100.0%