Issue
I've decided to use JWT and completely remove Laravel Passport from the project.
I was trying to start with composer remove laravel/passport. However, it does no good:
[Symfony\Component\Debug\Exception\FatalThrowableError]
Class 'Laravel\Passport\Passport' not found
Script @php artisan package:discover handling the post-autoload-dump event returned with error code 1
Removal failed, reverting ./composer.json to its original content.
What could be the right and safe removing procedure?
Solution
You can remove passport by manually deleting this line "laravel/passport": "^4.0" in your composer.json file then run composer update.
If you're running Laravel 5.4 or below, make sure to remove this line in your app.config file Laravel\Passport\PassportServiceProvider::class
And all classes that relies on passport must be edited as well. The most common classes are:
Usermodel, remove theHasApiTokentrait.AuthServiceProvider, removePassport::routes();in your boot method.- Your
config/auth.php, change your driver option forapiauthentication
Answered By - Paul Santos
0 Comments:
Post a Comment
Note: Only a member of this blog may post a comment.