1
0
Fork 0
composer/bin/composer

63 lines
1.7 KiB
Plaintext
Raw Normal View History

2011-04-17 22:39:28 +00:00
#!/usr/bin/env php
<?php
if (PHP_SAPI !== 'cli' && PHP_SAPI !== 'phpdbg') {
echo 'Warning: Composer should be invoked via the CLI version of PHP, not the '.PHP_SAPI.' SAPI'.PHP_EOL;
}
setlocale(LC_ALL, 'C');
2012-03-15 12:14:02 +00:00
require __DIR__.'/../src/bootstrap.php';
use Composer\Console\Application;
2017-11-23 15:52:48 +00:00
use Composer\XdebugHandler\XdebugHandler;
2012-05-12 07:41:15 +00:00
error_reporting(-1);
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);
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);
}
if (function_exists('ini_set')) {
@ini_set('display_errors', 1);
$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)
case 'm':
$value *= 1024;
2013-01-10 16:55:41 +00:00
// no break (cumulative multiplier)
case 'k':
$value *= 1024;
}
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');
}
// Set user defined memory limit
if ($memoryLimit = getenv('COMPOSER_MEMORY_LIMIT')) {
@ini_set('memory_limit', $memoryLimit);
}
unset($memoryInBytes, $memoryLimit);
}
2012-05-11 14:41:41 +00:00
putenv('COMPOSER_BINARY='.realpath($_SERVER['argv'][0]));
// run the command application
$application = new Application();
2017-11-23 15:52:48 +00:00
$application->run();