PHP и Composer, как мне объединить файлы composer.json

Может кто-то объяснить, как я должен использовать композитор с php. У меня есть файл composer.json в моем корне doc, который загружает основные пакеты для моего проекта, но затем, когда я хочу добавить еще один проект, например google + php sdk, здесь https://github.com/googleplus/gplus-quickstart-php /

что мне делать с этим файлом composer.json? объединить их вручную? Я просто загружаю этот composer.json в другой каталог?

мой текущий файл composer.json выглядит так

{ "name": "fuel/fuel", "type": "metapackage", "description": "The FuelPHP framework", "keywords": ["framework"], "homepage": "http://fuelphp.com", "license": "MIT", "authors": [ { "name": "FuelPHP Development Team", "email": "team@fuelphp.com" } ], "support": { "irc": "irc://irc.freenode.org/fuelphp", "forum": "http://fuelphp.com/forums" }, "require": { "php": ">=5.3.3", "monolog/monolog": "1.5.*", "fuelphp/upload": "2.0", "omissis/php-cloudfiles": "dev-master", "mustache/mustache": "*" }, "suggest": { "mustache/mustache": "Allow Mustache templating with the Parser package", "smarty/smarty": "Allow Smarty templating with the Parser package", "twig/twig": "Allow Twig templating with the Parser package", "mthaml/mthaml": "Allow Haml templating with Twig supports with the Parser package" }, "config": { "vendor-dir": "fuel/vendor" }, "minimum-stability": "dev" } 

Файл g + composer.json выглядит так:

  { "name": "googleplus/quickstart", "description": "This quick-start app is built in PHP and lets you get started with the Google+ platform in a few minutes.", "license": "Apache-2.0", "repositories": [ { "type": "package", "package": { "name": "google/google-api-php-client", "version": "0.6.2", "dist": { "url": "http://google-api-php-client.googlecode.com/files/google-api-php-client-0.6.2.tar.gz", "type": "tar" }, "autoload": { "classmap": [ "src/" ] } } } ], "require": { "silex/silex": "1.0.*@dev", "twig/twig": ">=1.8,<2.0-dev", "google/google-api-php-client": "0.6.2" } }