Install specific Yii2 vendor extension & dependency without updating other packages.

Comparing #10 with #11

Revision #11 was created by Kartik V Kartik V on May 7, 2014, 6:24:27 AM.

Updated description

Content

[...]
-----------------------------
When you do step 1, you should most likely receive a warning message like below

> Note: The lock file is not up to date with the latest changes in `composer.json`, you may be getting outdated dependencies, run update to update them.

Do not worry. This is a message you should expect similar to when you edit the
`composer.json` file. For example, if you add or update a detail like the library description, authors, extra parameters, or even put a trailing whitespace, this willComposer detects a change to the md5sum of the file. Then composer will and warns you if this hash differs from the one stored in the `composer.lock`.

To proceed further, just update the lock file with the following command:

~~~
php composer.phar update --lock
[...]