Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/yiisoft/yii2-mongodb
Yii 2 MongoDB extension
https://github.com/yiisoft/yii2-mongodb
hacktoberfest mongodb yii yii2
Last synced: about 17 hours ago
JSON representation
Yii 2 MongoDB extension
- Host: GitHub
- URL: https://github.com/yiisoft/yii2-mongodb
- Owner: yiisoft
- License: bsd-3-clause
- Created: 2013-12-06T16:00:15.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2024-10-03T07:58:03.000Z (4 months ago)
- Last Synced: 2024-10-29T14:35:37.963Z (3 months ago)
- Topics: hacktoberfest, mongodb, yii, yii2
- Language: PHP
- Homepage: http://www.yiiframework.com
- Size: 10.1 MB
- Stars: 327
- Watchers: 50
- Forks: 191
- Open Issues: 37
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: .github/CONTRIBUTING.md
- Funding: .github/FUNDING.yml
- License: LICENSE.md
- Security: .github/SECURITY.md
Awesome Lists containing this project
README
MongoDB Extension for Yii 2
This extension provides the [MongoDB](https://www.mongodb.com/) integration for the [Yii framework 2.0](https://www.yiiframework.com).
For license information check the [LICENSE](LICENSE.md)-file.
Documentation is at [docs/guide/README.md](docs/guide/README.md).
[![Latest Stable Version](https://poser.pugx.org/yiisoft/yii2-mongodb/v/stable.png)](https://packagist.org/packages/yiisoft/yii2-mongodb)
[![Total Downloads](https://poser.pugx.org/yiisoft/yii2-mongodb/downloads.png)](https://packagist.org/packages/yiisoft/yii2-mongodb)
[![Build Status](https://github.com/yiisoft/yii2-mongodb/workflows/build/badge.svg)](https://github.com/yiisoft/yii2-mongodb/actions)Installation
------------This extension requires [MongoDB PHP Extension](https://www.php.net/manual/en/set.mongodb.php) 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](https://getcomposer.org/download/).
Either run
```
php composer.phar require --prefer-dist yiisoft/yii2-mongodb
```or add
```
"yiisoft/yii2-mongodb": "~3.0.0"
```to the `require` section of your `composer.json`.
Configuration
-------------To use this extension, simply add the following code in your application configuration:
```php
return [
//....
'components' => [
'mongodb' => [
'class' => '\yii\mongodb\Connection',
'dsn' => 'mongodb://localhost:27017/mydatabase',
'options' => [
"username" => "Username",
"password" => "Password"
]
],
],
];
```