From 3ba0b892bf2b268e0377a302812517f1e6ea3535 Mon Sep 17 00:00:00 2001 From: Hafez Divandari Date: Fri, 2 Aug 2024 13:08:57 +0330 Subject: [PATCH] install Passport 13.x --- src/Illuminate/Foundation/Console/ApiInstallCommand.php | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/Illuminate/Foundation/Console/ApiInstallCommand.php b/src/Illuminate/Foundation/Console/ApiInstallCommand.php index dda72efcb615..1f855955198d 100644 --- a/src/Illuminate/Foundation/Console/ApiInstallCommand.php +++ b/src/Illuminate/Foundation/Console/ApiInstallCommand.php @@ -64,12 +64,11 @@ public function handle() } if ($this->option('passport')) { - Process::run(array_filter([ + Process::run([ (new PhpExecutableFinder())->find(false) ?: 'php', 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 { @@ -147,7 +146,7 @@ protected function installSanctum() protected function installPassport() { $this->requireComposerPackages($this->option('composer'), [ - 'laravel/passport:^12.0', + 'laravel/passport:^13.0', ]); } }