glavweb/mongodb-bundle

该包的最新版本(v0.2.1)没有可用的许可信息。

Symfony GlavwebMongoDBBundle.

v0.2.1 2019-06-07 03:19 UTC

This package is auto-updated.

Last update: 2024-09-07 14:26:33 UTC


README

使用composer获取该包

通过在Symfony项目的根目录的终端中运行此命令添加GlavwebMongoDBBundle

php composer.phar require glavweb/mongodb-bundle

启用包

要开始使用该包,在应用程序的kernel类中注册该包

// app/AppKernel.php
public function registerBundles()
{
    $bundles = array(
        // ...
        new Glavweb\MongoDBBundle\GlavwebMongoDBBundle(),
        // ...
    );
}

配置包

 
glavweb_mongo_db:
    host:     "%mongodb_host%"
    dbname:   "%mongodb_dbname%"
    user:     "%mongodb_user%"
    password: "%mongodb_password%"