We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 108707d commit 161842dCopy full SHA for 161842d
bin/pie
@@ -25,7 +25,10 @@ include $_composer_autoload_path ?? __DIR__ . '/../vendor/autoload.php';
25
26
$container = Container::factory();
27
28
-$application = new Application('🥧 PHP Installer for Extensions (PIE)', PieVersion::get());
+$pieAppName = '🥧 PHP Installer for Extensions (PIE)';
29
+$pieVersion = PieVersion::get();
30
+$application = new Application($pieAppName, $pieVersion);
31
+echo $pieAppName . ', ' . $pieVersion . ", from The PHP Foundation\n";
32
33
$application->setCommandLoader(new ContainerCommandLoader(
34
$container,
0 commit comments