astraller / yii2-mongodb-embedded
Yii2 extension to work with embedded documents in MongoDB.
Installs: 2
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:yii2-extension
Requires
- yiisoft/yii2-mongodb: ^2.1
This package is auto-updated.
Last update: 2025-03-26 09:04:38 UTC
README
Yii2 extension to work with embedded documents in MongoDB.
This extension requires MongoDB PHP Extension version 1.0.0 or higher.
This extension requires MongoDB server version 3.0 or higher.
Installation
The preferred way to install this extension is through composer.
Either run
php composer.phar require --prefer-dist astraller/yii2-mongodb-embedded
or add
"astraller/yii2-mongodb-embedded": "^1.*"
to the require section of your composer.json.
Usage
- Your model must be inherited from astraller\mongodb\MongoModel class.
- Add embedAttributes method
public function embedAttributes() { return [ 'conditions' => [ 'class' => DialogConditions::class, 'type' => 'many', ], 'text' => [ 'class' => Text::class, 'type' => 'one', ], 'variants' => [ 'class' => Dialog::class, 'type' => 'manyById' ] ]; }
- Your embedded documents must be inherited from EmbeddedDocument class.
<?php namespace app\models; use astraller\mongodb\MongoEmbedModel; class Vector3 extends MongoEmbedModel { public $x; public $y; public $z; public function rules() { return [ [['x', 'y', 'z'], 'required'], ]; } public function t(){ return "[X: {$this->x}; Y: {$this->y}; Z: {$this->z}]"; } }