exs/simple-mongo-bundle

Bundle for peresisting and retriving information from MongoDB in PHP7

v2.0.0 2019-08-12 10:26 UTC

This package is auto-updated.

Last update: 2024-04-28 01:10:20 UTC


README

A simple bundle to persist and execute queries on MongDB database for php7

Installing the # EXS-SimpleMongoBundle in a new Symfony2 project

Edit composer.json file with # EXS-SimpleMongoBundle dependency:

//composer.json
//...
"require": {
    //other bundles
    "exs/simple-mongo-bundle": "^1.0"
},

Save the file and have composer update the project via the command line:

composer update exs/simple-mongo-bundle

Update the app/AppKernel.php

//app/AppKernel.php
//...
public function registerBundles()
{
    $bundles = array(
    //Other bundles
    new EXS\SimpleMongoBundle\EXSSimpleMongoBundle(),
);

Usage

Add your mongodb connection and dbname in the parameter file

    simple_mongo:
        connection: mongodb://localhost:27017
        dbname: YOUR_DB_NAME

Create the new collection(Optional)

app/console exs:create:collection COLLECTION_NAME(Requires) OPTIONS
// Options
app/console exs:create:collection -h

In your controller or service

// Insert data to mongodb
$entity = new YourEntity();
$entity->setPropertyValue(THE_VALUE);
.
.

$manager = $this->get('exs_simple_mongo.service'); // get the service
$manager->persist($entity);   
$result = $manager->flush(COLLECTION_NAME); // the result will store the number of inserted entries or error message
if(!is_int($result) || $result == 0) {
    throwException($result);
}

// Update
$filter = ['product' => 6];
$manager->update($filter, $entity);   
$result = $manager->flush(COLLECTION_NAME); 
 
// Get data with query
$filter = ['product' => 6];
$option = ['projection' => ['_id' => 0]];

$manager = $this->get('exs_simple_mongo.service'); // get the service
$result = $manager->exeQuery($filter, $option, COLLECTION_NAME);
// $result will contain results in an array

Contributing

Anyone and everyone is welcome to contribute.

If you have any questions or suggestions please let us know.