We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3d168a1 commit d7aaa0aCopy full SHA for d7aaa0a
src/Console/Command/VersionCommand.php
@@ -88,7 +88,7 @@ protected function execute(InputInterface $input, OutputInterface $output)
88
$output->writeln('Version-major: ' . $data['major']);
89
$output->writeln('Version-minor: ' . $data['minor']);
90
$output->writeln('Version-patch: ' . $data['patch']);
91
- $output->writeln('Version-is-dev: ' . $data['is_dev_version']);
+ $output->writeln('Version-is-dev: ' . ($data['is_dev_version'] ? 'yes' : 'no'));
92
$output->writeln('License: ' . $data['license']);
93
$isPhar = $data['phar_metadata'] !== null;
94
$output->writeln('Phar-detected: ' . ($isPhar ? 'yes' : 'no'));
0 commit comments