PHP code example of wildsurfer / silex-provider-mongodm

1. Go to this page and download the library: Download wildsurfer/silex-provider-mongodm library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

wildsurfer / silex-provider-mongodm example snippets

 php

use Silex\Application;

$host = 'localhost:27017';
$db = 'database';
$options = array('w' => 1);
$app = new Application();
$app->register(new MongodmServiceProvider(), array(
            "mongodm.host" => $host,
            "mongodm.db" => $db,
            "mongodm.options" => $options
            ));
$m = $app['mongodm'];
$m->findOne('MyCollection',array('name' => 'my name'));