N98\Magento\Command\Developer\Module\CreateCommand::configure PHP Method

configure() protected method

protected configure ( )
    protected function configure()
    {
        $this->setName('dev:module:create')->addArgument('vendorNamespace', InputArgument::REQUIRED, 'Namespace (your company prefix)')->addArgument('moduleName', InputArgument::REQUIRED, 'Name of your module.')->addArgument('codePool', InputArgument::OPTIONAL, 'Codepool (local, community)', 'local')->addOption('add-controllers', null, InputOption::VALUE_NONE, 'Adds controllers')->addOption('add-blocks', null, InputOption::VALUE_NONE, 'Adds blocks')->addOption('add-helpers', null, InputOption::VALUE_NONE, 'Adds helpers')->addOption('add-models', null, InputOption::VALUE_NONE, 'Adds models')->addOption('add-setup', null, InputOption::VALUE_NONE, 'Adds SQL setup')->addOption('add-all', null, InputOption::VALUE_NONE, 'Adds blocks, helpers and models')->addOption('modman', null, InputOption::VALUE_NONE, 'Create all files in folder with a modman file.')->addOption('add-readme', null, InputOption::VALUE_NONE, 'Adds a readme.md file to generated module')->addOption('add-composer', null, InputOption::VALUE_NONE, 'Adds a composer.json file to generated module')->addOption('author-name', null, InputOption::VALUE_OPTIONAL, 'Author for readme.md or composer.json')->addOption('author-email', null, InputOption::VALUE_OPTIONAL, 'Author for readme.md or composer.json')->addOption('description', null, InputOption::VALUE_OPTIONAL, 'Description for readme.md or composer.json')->setDescription('Create and register a new magento module.');
    }