Laravel\Installer\Console\NewCommand::configure PHP Method

configure() protected method

Configure the command options.
protected configure ( ) : void
return void
    protected function configure()
    {
        $this->setName('new')->setDescription('Create a new Laravel application.')->addArgument('name', InputArgument::OPTIONAL)->addOption('dev', null, InputOption::VALUE_NONE, 'Installs the latest "development" release')->addOption('5.2', null, InputOption::VALUE_NONE, 'Installs the "5.2" release');
    }