Browse Source

Avoid errors when invoking composer global config and there is no global composer.json yet, refs #4002

Jordi Boggiano 10 years ago
parent
commit
48d8cc6465
1 changed files with 5 additions and 0 deletions
  1. 5 0
      src/Composer/Command/ConfigCommand.php

+ 5 - 0
src/Composer/Command/ConfigCommand.php

@@ -141,6 +141,11 @@ EOT
             ? ($this->config->get('home') . '/config.json')
             : $input->getOption('file');
 
+        // create global composer.json if this was invoked using `composer global config`
+        if ($configFile === 'composer.json' && !file_exists($configFile) && realpath(getcwd()) === realpath($this->config->get('home'))) {
+            file_put_contents($configFile, "{\n}\n");
+        }
+
         $this->configFile = new JsonFile($configFile);
         $this->configSource = new JsonConfigSource($this->configFile);