yiisoft/db-mongodb

Yii Framework MongoDB extension

Fund package maintenance!
Open Collective
yiisoft

Installs: 91

Dependents: 0

Suggesters: 0

Security: 0

Stars: 13

Watchers: 20

Forks: 7

Open Issues: 5

Language:Dockerfile

dev-master / 1.0.x-dev 2024-04-24 17:50 UTC

This package is auto-updated.

Last update: 2024-04-24 17:50:19 UTC


README

68747470733a2f2f7765626173736574732e6d6f6e676f64622e636f6d2f5f636f6d5f6173736574732f636d732f6d6f6e676f64622d6c6f676f2d7267622d6a36773237316731786e2e6a7067

Yii Framework MongoDB extension


This extension provides the MongoDB integration for the Yii framework.

For license information check the LICENSE-file.

Documentation is at docs/guide/README.md.

Latest Stable Version Total Downloads Build Status

Installation

This extension requires MongoDB PHP Extension version 1.0.0 or higher.

This extension requires MongoDB server version 3.0 or higher.

The preferred way to install this extension is through composer.

composer require --prefer-dist yiisoft/db-mongodb

Configuration

To use this extension, simply add the following code in your application configuration:

return [
    //....
    'components' => [
        'mongodb' => [
            'class' => Yiisoft\Db\MongoDb\Connection::class,
            'dsn' => 'mongodb://@localhost:27017/mydatabase',
            'options' => [
                "username" => "Username",
                "password" => "Password"
            ]
        ],
    ],
];