Simple mongodb service provider for Silex 2.x and official mongodb driver
This library provides easy access to a MongoDB database using the extension (mongodb, not mongo) and the official MongoDB PHP driver.
- PHP 5.4+
- mongodb official PECL extension
The best way to install the component is using Composer
$ composer require lalbert/silex-mongodb
$app->register(new MongoDBServiceProvider());
You can also pass configuration settings :
See http://php.net/manual/en/mongodb-driver-manager.construct.php for options allowed.
$app->register(new MongoDBServiceProvider(), [
'mongodb.config' => [
'server' => 'mongodb://localhost:27017',
'options' => [],
'driverOptions' => [],
]
]);
Your application :
$document = ['key' => 'value'];
$app['mongodb']
->mydatabase
->mycollection
->insert($document)
;
See official MongoDB PHP Library documentation