#!/usr/bin/php generate(); print 'INSTALLING: Composer' . PHP_EOL; file_put_contents('./composerinstaller.php', file_get_contents('https://getcomposer.org/installer')); shell_exec('php ./composerinstaller.php'); unlink('./composerinstaller.php'); print 'RUNNING: Composer' . PHP_EOL; shell_exec('./composer.phar install'); function ask($question) { print $question . ' '; $rtn = ''; $fp = fopen('php://stdin', 'r'); $rtn = fgets($fp); fclose($fp); return trim($rtn); }