Mongotte
Simple mongodb/mongodb integration into Nette Framework.
PHP 7.1
PHP 8.0
# Requirements
- PHP 7.1 and later
# Installation
Install this extension using composer (opens new window):
$ composer require bytebase/mongotte
Register this extension:
extensions:
mongotte: Bytebase\Mongotte\DI\MongotteExtension
# Configuration
Configuration is optional.
mongotte:
uri: mongodb://127.0.0.1:27017/
debugger: %debugMode%
uriOptions:
key: value
driverOptions:
key: value
If you enable debugger
, then all requests will be logged in the Tracy Bar.
All options you can found here (opens new window).
Usage →