简体   繁体   中英

how to install the doctrine mongodb odm via composer

I am working on a project with the php and mongodb stacks. I need the assistance of an ODM to speed up development time. A problem I have now however is this line, $ composer require "doctrine/mongodb-odm=~1.0" in which directory should i execute this command, the application's root directory or anywhere in my command line???

Copy the following to composer.json

{
    "require": {
        "doctrine/mongodb-odm": "~1.0",
        "doctrine/mongodb-odm-bundle": "~3.0"
    },
}

after that run the command in respective folder

php composer.phar update doctrine/mongodb-odm doctrine/mongodb-odm-bundle

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM