We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 108707d + 161842d commit 0eae70aCopy full SHA for 0eae70a
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