Merge remote-tracking branch 'upstream/master' into svn-auth-reloaded
commit
38a997fc26
|
@ -24,7 +24,7 @@
|
||||||
{
|
{
|
||||||
"package": "symfony/process",
|
"package": "symfony/process",
|
||||||
"version": "dev-master",
|
"version": "dev-master",
|
||||||
"source-reference": "0aad81ae9f884cf7df6387cb52a11b5b4f07b3d6"
|
"source-reference": "d08c4ea1530453ce270fcba78f0bff57a0869a9b"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"aliases": [
|
"aliases": [
|
||||||
|
|
|
@ -35,7 +35,7 @@
|
||||||
},
|
},
|
||||||
"version": {
|
"version": {
|
||||||
"type": "string",
|
"type": "string",
|
||||||
"description": "Package version, see http://packagist.org/about for more info on valid schemes."
|
"description": "Package version, see http://getcomposer.org/doc/04-schema.md#version for more info on valid schemes."
|
||||||
},
|
},
|
||||||
"time": {
|
"time": {
|
||||||
"type": "string",
|
"type": "string",
|
||||||
|
|
|
@ -37,7 +37,7 @@ EOT
|
||||||
$output->writeln(<<<EOT
|
$output->writeln(<<<EOT
|
||||||
<info>Composer - Package Management for PHP</info>
|
<info>Composer - Package Management for PHP</info>
|
||||||
<comment>Composer is a package manager tracking local dependencies of your projects and libraries.
|
<comment>Composer is a package manager tracking local dependencies of your projects and libraries.
|
||||||
See http://packagist.org/about for more information.</comment>
|
See http://getcomposer.org/ for more information.</comment>
|
||||||
EOT
|
EOT
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
|
@ -46,7 +46,7 @@ class Factory
|
||||||
} else {
|
} else {
|
||||||
$message = 'Composer could not find the config file: '.$composerFile;
|
$message = 'Composer could not find the config file: '.$composerFile;
|
||||||
}
|
}
|
||||||
$instructions = 'To initialize a project, please create a composer.json file as described on the http://packagist.org/ "Getting Started" section';
|
$instructions = 'To initialize a project, please create a composer.json file as described in the http://getcomposer.org/ "Getting Started" section';
|
||||||
throw new \InvalidArgumentException($message.PHP_EOL.$instructions);
|
throw new \InvalidArgumentException($message.PHP_EOL.$instructions);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -169,7 +169,14 @@ class LibraryInstaller implements InstallerInterface
|
||||||
}
|
}
|
||||||
file_put_contents($link, $this->generateWindowsProxyCode($bin, $link));
|
file_put_contents($link, $this->generateWindowsProxyCode($bin, $link));
|
||||||
} else {
|
} else {
|
||||||
|
try {
|
||||||
|
// under linux symlinks are not always supported for example
|
||||||
|
// when using it in smbfs mounted folder
|
||||||
symlink($bin, $link);
|
symlink($bin, $link);
|
||||||
|
} catch (\ErrorException $e) {
|
||||||
|
file_put_contents($link, $this->generateUnixyProxyCode($bin, $link));
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
chmod($link, 0755);
|
chmod($link, 0755);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue