2011-04-17 22:39:28 +00:00
|
|
|
#!/usr/bin/env php
|
2011-04-17 22:14:44 +00:00
|
|
|
<?php
|
|
|
|
|
2013-04-09 08:32:38 +00:00
|
|
|
if (PHP_SAPI !== 'cli') {
|
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
|
|
|
}
|
|
|
|
|
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;
|
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
|
|
|
|
|
|
|
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'));
|
|
|
|
// Increase memory_limit if it is lower than 512M
|
|
|
|
if ($memoryLimit != -1 && $memoryInBytes($memoryLimit) < 512 * 1024 * 1024) {
|
|
|
|
@ini_set('memory_limit', '512M');
|
|
|
|
}
|
|
|
|
unset($memoryInBytes, $memoryLimit);
|
2012-08-24 14:38:01 +00:00
|
|
|
}
|
2012-05-11 14:41:41 +00:00
|
|
|
|
2011-09-14 12:57:40 +00:00
|
|
|
// run the command application
|
2011-11-30 20:30:51 +00:00
|
|
|
$application = new Application();
|
2011-09-14 12:57:40 +00:00
|
|
|
$application->run();
|