2011-04-17 22:39:28 +00:00
|
|
|
#!/usr/bin/env php
|
2011-04-17 22:14:44 +00:00
|
|
|
<?php
|
|
|
|
|
2018-11-26 11:32:31 +00:00
|
|
|
if (PHP_SAPI !== 'cli' && PHP_SAPI !== 'phpdbg') {
|
2013-04-11 08:23:35 +00:00
|
|
|
echo 'Warning: Composer should be invoked via the CLI version of PHP, not the '.PHP_SAPI.' SAPI'.PHP_EOL;
|
2013-04-09 08:32:38 +00:00
|
|
|
}
|
|
|
|
|
2018-05-03 00:17:22 +00:00
|
|
|
setlocale(LC_ALL, 'C');
|
2012-03-15 12:14:02 +00:00
|
|
|
require __DIR__.'/../src/bootstrap.php';
|
2011-04-17 22:14:44 +00:00
|
|
|
|
2011-11-30 20:30:51 +00:00
|
|
|
use Composer\Console\Application;
|
2017-11-23 15:52:48 +00:00
|
|
|
use Composer\XdebugHandler\XdebugHandler;
|
2011-04-17 22:14:44 +00:00
|
|
|
|
2012-05-12 07:41:15 +00:00
|
|
|
error_reporting(-1);
|
2012-08-24 14:38:01 +00:00
|
|
|
|
2019-11-03 13:04:38 +00:00
|
|
|
// Restart without Xdebug
|
2017-11-23 15:52:48 +00:00
|
|
|
$xdebug = new XdebugHandler('Composer', '--ansi');
|
2016-08-05 10:43:56 +00:00
|
|
|
$xdebug->check();
|
|
|
|
unset($xdebug);
|
|
|
|
|
2019-02-16 16:39:59 +00:00
|
|
|
if (defined('HHVM_VERSION') && version_compare(HHVM_VERSION, '4.0', '>=')) {
|
|
|
|
echo 'HHVM 4.0 has dropped support for Composer, please use PHP instead. Aborting.'.PHP_EOL;
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
2012-08-24 14:38:01 +00:00
|
|
|
if (function_exists('ini_set')) {
|
|
|
|
@ini_set('display_errors', 1);
|
2012-08-24 15:39:49 +00:00
|
|
|
|
|
|
|
$memoryInBytes = function ($value) {
|
|
|
|
$unit = strtolower(substr($value, -1, 1));
|
|
|
|
$value = (int) $value;
|
|
|
|
switch($unit) {
|
|
|
|
case 'g':
|
|
|
|
$value *= 1024;
|
2013-01-10 16:55:41 +00:00
|
|
|
// no break (cumulative multiplier)
|
2012-08-24 15:39:49 +00:00
|
|
|
case 'm':
|
|
|
|
$value *= 1024;
|
2013-01-10 16:55:41 +00:00
|
|
|
// no break (cumulative multiplier)
|
2012-08-24 15:39:49 +00:00
|
|
|
case 'k':
|
|
|
|
$value *= 1024;
|
|
|
|
}
|
2012-08-24 13:06:03 +00:00
|
|
|
|
2012-08-24 15:39:49 +00:00
|
|
|
return $value;
|
|
|
|
};
|
|
|
|
|
|
|
|
$memoryLimit = trim(ini_get('memory_limit'));
|
2016-12-31 15:29:31 +00:00
|
|
|
// Increase memory_limit if it is lower than 1.5GB
|
|
|
|
if ($memoryLimit != -1 && $memoryInBytes($memoryLimit) < 1024 * 1024 * 1536) {
|
|
|
|
@ini_set('memory_limit', '1536M');
|
2012-08-24 15:39:49 +00:00
|
|
|
}
|
2018-01-04 09:49:41 +00:00
|
|
|
// Set user defined memory limit
|
|
|
|
if ($memoryLimit = getenv('COMPOSER_MEMORY_LIMIT')) {
|
|
|
|
@ini_set('memory_limit', $memoryLimit);
|
|
|
|
}
|
2012-08-24 15:39:49 +00:00
|
|
|
unset($memoryInBytes, $memoryLimit);
|
2012-08-24 14:38:01 +00:00
|
|
|
}
|
2012-05-11 14:41:41 +00:00
|
|
|
|
2017-01-22 17:26:49 +00:00
|
|
|
putenv('COMPOSER_BINARY='.realpath($_SERVER['argv'][0]));
|
|
|
|
|
2011-09-14 12:57:40 +00:00
|
|
|
// run the command application
|
2011-11-30 20:30:51 +00:00
|
|
|
$application = new Application();
|
2017-11-23 15:52:48 +00:00
|
|
|
$application->run();
|