Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion bin/pie
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,10 @@ include $_composer_autoload_path ?? __DIR__ . '/../vendor/autoload.php';

$container = Container::factory();

$application = new Application('🥧 PHP Installer for Extensions (PIE)', PieVersion::get());
$pieAppName = '🥧 PHP Installer for Extensions (PIE)';
$pieVersion = PieVersion::get();
$application = new Application($pieAppName, $pieVersion);
echo $pieAppName . ', ' . $pieVersion . ", from The PHP Foundation\n";

$application->setCommandLoader(new ContainerCommandLoader(
$container,
Expand Down