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 eb778f8 commit 2ab9d44Copy full SHA for 2ab9d44
src/Command/Markdown/GeneratorCommand.php
@@ -160,7 +160,7 @@ private function promptDescription(SymfonyStyle $io): string
160
161
private function promptRequirements(SymfonyStyle $io): string
162
{
163
- $phpRequirement = !empty($this->composerData['require']['php']) ? $this->composerData['require']['php'] : null;
+ $phpRequirement = !empty($this->composerData['require']['php']) ? sprintf('PHP %s', $this->composerData['require']['php']) : null;
164
$requirements = $io->ask('Requirements / Installation?', $phpRequirement);
165
166
if (!$this->isFieldFilled($requirements)) {
0 commit comments