diff --git a/src/Command/InstallCommand.php b/src/Command/InstallCommand.php index 5c32f3f..5869951 100644 --- a/src/Command/InstallCommand.php +++ b/src/Command/InstallCommand.php @@ -17,7 +17,7 @@ protected function configure(): void $this ->setName('froala:install') ->addArgument('path', InputArgument::OPTIONAL, 'Absolute path where to install Froala editor', \dirname(__DIR__) . '/Resources/public/froala_editor') - ->addOption('tag', null, InputOption::VALUE_REQUIRED, 'Froala editor tag to install (eg. "v3.2.7")', 'master') + ->addOption('tag', null, InputOption::VALUE_REQUIRED, 'Froala editor tag to install (eg. "v4.0.0")', 'master') ->addOption('clear', null, InputOption::VALUE_NONE, 'Allow the command to clear a previous install if the path already exists') ; }