Skip to content

Commit

Permalink
Added Telescope, Socialite and Passport
Browse files Browse the repository at this point in the history
  • Loading branch information
rubensrocha committed Sep 26, 2020
1 parent c84422c commit 10b1e93
Show file tree
Hide file tree
Showing 4 changed files with 331 additions and 34 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ This package was created to implement new features in the official installer in

- Choose the version of Laravel to be installed (5-6-7-8)
- Choose which authentication package to install (Laravel / UI or Jetstream)
- Optional Packages: Telescope, Socialite, Passport

## How to Install

Expand Down Expand Up @@ -37,6 +38,9 @@ larawizard
|**`--teams`**|Indicates whether Jetstream should be scaffolded with team support | |
|**`--auth`**|Installs the Laravel authentication scaffolding | |
|**`--preset`**|The Laravel/UI preset that should be installed |`bootstrap`, `vue`, `react` |
|**`--telescope`**|Installs the Laravel Telescope(dev) | |
|**`--socialite`**|Installs the Laravel Socialite | |
|**`--passport`**|Installs the Laravel Passport | |
|**`--force`**|Forces install even if the directory already exists | |

### Examples
Expand Down
2 changes: 1 addition & 1 deletion bin/larawizard
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ if (file_exists(__DIR__.'/../../../autoload.php')) {
require __DIR__.'/../vendor/autoload.php';
}

$app = new Symfony\Component\Console\Application('Laravel Install Wizard', '1.0.4');
$app = new Symfony\Component\Console\Application('Laravel Install Wizard', '1.1.0');
$app->add(new Rubensrocha\LaraWizard\Console\NewCommand);

$app->run();
4 changes: 3 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@
"require": {
"php": "^7.3",
"symfony/console": "^4.0|^5.0",
"symfony/process": "^4.2|^5.0"
"symfony/process": "^4.2|^5.0",
"ext-curl": "*",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^8.0"
Expand Down
Loading

0 comments on commit 10b1e93

Please sign in to comment.