Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[11.x] Install Passport 13.x #52367

Closed
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 4 additions & 7 deletions src/Illuminate/Foundation/Console/ApiInstallCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ class ApiInstallCommand extends Command
/**
* Execute the console command.
*
* @return int
* @return void
*/
public function handle()
{
Expand Down Expand Up @@ -65,12 +65,11 @@ public function handle()
}

if ($this->option('passport')) {
Process::run(array_filter([
Process::run([
php_binary(),
defined('ARTISAN_BINARY') ? ARTISAN_BINARY : 'artisan',
'passport:install',
$this->confirm('Would you like to use UUIDs for all client IDs?') ? '--uuids' : null,
]));
]);

$this->components->info('API scaffolding installed. Please add the [Laravel\Passport\HasApiTokens] trait to your User model.');
} else {
Expand Down Expand Up @@ -109,8 +108,6 @@ protected function uncommentApiRoutesFile()
);
} else {
$this->components->warn('Unable to automatically add API route definition to bootstrap file. API route file should be registered manually.');

return;
}
}

Expand Down Expand Up @@ -148,7 +145,7 @@ protected function installSanctum()
protected function installPassport()
{
$this->requireComposerPackages($this->option('composer'), [
'laravel/passport:^12.0',
'laravel/passport:^13.0',
]);
}
}