On 31 January 2014 20:18, <[email protected]> wrote: > Now, composer is installed, now how should I use it? if I understood > correct, I should put a file under composer folder named composer.json with > the following command in it, > {"require": {"doctrine/orm": "2.4.1"}} > then under the same composer folder run this shell command: > $ php composer.phar install > is it correct? if yes, when where /doctrine/ will be located? >
Correct. Once you ran `composer install`, your doctrine executable will be at `./vendor/bin/doctrine` Marco Pivetta http://twitter.com/Ocramius http://ocramius.github.com/ -- You received this message because you are subscribed to the Google Groups "doctrine-user" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/doctrine-user. For more options, visit https://groups.google.com/groups/opt_out.
