setName('drupal:scaffold') ->setDescription('Update the Drupal scaffold files.'); } /** * {@inheritdoc} */ protected function execute(InputInterface $input, OutputInterface $output) { $handler = new Handler($this->getComposer(), $this->getIO()); $handler->downloadScaffold(); // Generate the autoload.php file after generating the scaffold files. $handler->generateAutoload(); } }