brebvix / yii2mongo
An extension for using the MongoDB library in a style similar to ActiveRecord.
Installs: 2 470
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 0
Requires
- php: >=7.2.0
- ext-mongodb: *
- mongodb/mongodb: ^1.5@dev
- yiisoft/yii2: ^2.0.1
This package is auto-updated.
Last update: 2025-03-19 20:14:55 UTC
README
An extension for using the MongoDB library in a style similar to ActiveRecord.
Installation
composer require brebvix/yii2mongo
Add to the configuration file params-local.php:
'mongo' => [ 'connectionUrl' => 'mongodb://<username>:<password>@<host>:<port>', 'databaseName' => '<database_name>', ],
Documentation: https://docs.mongodb.com/php-library/current/tutorial/
Example
Model class
<?php use brebvix\Mongo; class UserModel extends Mongo { /** * @return string */ public static function collectionName(): string { return 'users'; } //Usage in model: public static function getAuthorizedUsersCount(): int { return self::count([ 'authorized' => true ]); } }
Use outside the model:
<?php $count = UserModel::getAuthorizedUsersCount(); echo "Authorized users count: $count"; // OR $count = UserModel::count([ 'authorized' => true ]); echo "Authorized users count: $count";