-
Notifications
You must be signed in to change notification settings - Fork 785
/
Copy pathInstallCommand.php
51 lines (43 loc) · 1.48 KB
/
InstallCommand.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<?php
namespace Laravel\Passport\Console;
use Illuminate\Console\Command;
use Symfony\Component\Console\Attribute\AsCommand;
#[AsCommand(name: 'passport:install')]
class InstallCommand extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'passport:install
{--force : Overwrite keys they already exist}
{--length=4096 : The length of the private key}';
/**
* The console command description.
*
* @var string
*/
protected $description = 'Run the commands necessary to prepare Passport for use';
/**
* Execute the console command.
*/
public function handle(): void
{
$this->call('passport:keys', [
'--force' => $this->option('force'),
'--length' => $this->option('length'),
]);
$this->call('vendor:publish', ['--tag' => 'passport-config']);
$this->call('vendor:publish', ['--tag' => 'passport-migrations']);
if ($this->components->confirm('Would you like to run all pending database migrations?', true)) {
$this->call('migrate');
if ($this->components->confirm('Would you like to create the "personal access" grant client?', true)) {
$this->call('passport:client', [
'--personal' => true,
'--name' => config('app.name'),
]);
}
}
}
}