lostphilosopher / mongolab-lite-utils
MongolabLiteUtils provides convenient wrapper methods for connecting to and using a mongolab database.
Installs: 25
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/lostphilosopher/mongolab-lite-utils
Requires
- php: >=5.3.0
This package is not auto-updated.
Last update: 2025-12-20 22:34:16 UTC
README
MongolabLiteUtils provides convenient wrapper methods for connecting to and using a mongolab database.
MongolabLiteUtils Usage
use MongolabLiteUtils\MongolabLiteUtils;
$mongo = new MongolabLiteUtils(getenv('MONGOLAB_URI'));
$collection = $mongo->getCollection('collection_name');
$collection->insert($record);
$data = $collection->find();