I am trying to use composer.json file. but, when I am trying to run command 'composer install' in my path/project/, I am getting an error:

I have already configured my wamp for 'extension=php_intl.dll' and copied all icu*.dll in 'D:\wamp\bin\apache\apache2.2.22\bin' from 'D:\wamp\bin\php\php5.3.13' and it's showing in phpinfo():

without copy icu*.dll also works and showing in phpinfo();
Kindly, let me know if I have intl install on my wamp and composer install on my pc then why I am getting this error. really, it is so annoying.
Here is my details:
- OS: windows 7 (64)
- PHP: 5.3.13
- Apache:2.2.22
- Composer: installed by executable file
- Pear: installed (latest)
- PHPUnit: installed (latest)
My composer.json is as below:
{ "name" : "sebastian/money", "description" : "Value Object that represents a monetary value (using a currency's smallest unit)", "keywords" : ["money"], "homepage" : "http://www.github.com/sebastianbergmann/money", "license" : "BSD-3-Clause", "authors" : [{ "name" : "Sebastian Bergmann", "email" : "[email protected]" } ], "require" : { "php" : ">=5.3.3", "ext-intl" : "*" }, "require-dev" : { "phpunit/phpunit" : "~4.0" }, "autoload" : { "classmap" : [ "src/" ] }, "extra" : { "branch-alias" : { "dev-master" : "1.3.x-dev" } } } Let me know if any other details is required..
Any feedback/help would be highly appreciated.
