diff --git a/src/Command/ScaffoldPluginCommand.php b/src/Command/ScaffoldPluginCommand.php index 38d67cb..85bfbdc 100644 --- a/src/Command/ScaffoldPluginCommand.php +++ b/src/Command/ScaffoldPluginCommand.php @@ -251,6 +251,10 @@ protected function execute( InputInterface $input, OutputInterface $output ) { $pluginRealName = $this->askAndConfirm( $io, "What is your plugin real name ? (e.g: 'My great plugin') " ); self::doStrReplace( $installPath, 'BEA Plugin Name', $pluginRealName ); + // plugin description human name + $pluginDescription = $this->askAndConfirm( $io, "What is your plugin description ? (e.g: 'Manage CPT xxx') " ); + self::doStrReplace( $installPath, 'Your plugin description', $pluginDescription ); + // namespace $pluginNamespace = $this->askAndConfirm( $io, "What is your plugin's namespace ? (e.g: 'My_company\\My_Plugin') " ); self::doStrReplace( $installPath, 'BEA\\PB', $pluginNamespace );