Skip to content

Commit

Permalink
chore: support wtfpl license [closes #52]
Browse files Browse the repository at this point in the history
  • Loading branch information
adhocore committed Sep 1, 2018
1 parent 487681b commit 376fea9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Console/InitCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ protected function onConstruct()
->option('-c --no-codecov', 'Disable codecov')
->option('-s --no-scrutinizer', 'Disable scrutinizer')
->option('-l --no-styleci', 'Disable StyleCI')
->option('-L --license', 'License (m: MIT | g: GNULGPL | a: Apache2 | b: BSDSimple | i: ISC')
->option('-L --license', 'License (m: MIT, g: GNULGPL, a: Apache2, b: BSDSimple, i: ISC, w: WTFPL)')
->usage($this->writer()->colorizer()->colors(''
. '<bold> phint init</end> <line><project></end> '
. '<comment>--force --descr "Awesome project" --name "YourName" --email [email protected]</end><eol/>'
Expand Down Expand Up @@ -188,7 +188,7 @@ protected function collectMissing(Interactor $io)
],
'package' => ['default' => $this->project, 'retry' => 0],
'license' => [
'choices' => ['m' => 'MIT', 'g' => 'GNULGPL', 'a' => 'Apache2', 'b' => 'BSDSimple', 'i' => 'ISC'],
'choices' => ['m' => 'MIT', 'g' => 'GNULGPL', 'a' => 'Apache2', 'b' => 'BSDSimple', 'i' => 'ISC', 'w' => 'WTFPL'],
'default' => 'm',
],
'php' => [
Expand Down

0 comments on commit 376fea9

Please sign in to comment.