8000 [13.x] Support OAuth2 Server v9 by hafezdivandari · Pull Request #1734 · laravel/passport · GitHub
[go: up one dir, main page]

Skip to content

[13.x] Support OAuth2 Server v9 #1734

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

Merged
merged 22 commits into from
May 17, 2024
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
update upgrade guide
  • Loading branch information
hafezdivandari committed May 5, 2024
commit d1a3e46849c149ec54a0e8aa90b7b6a3d9922d5a
10 changes: 10 additions & 0 deletions UPGRADE.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@

## General Notes

## Upgrading To 13.0 From 12.x

### Minimum PHP Version

PR: https://github.com/laravel/passport/pull/1734

PHP 8.1 is now the minimum required version.

## Upgrading To 12.0 From 11.x

### Migration Changes
Expand All @@ -14,6 +22,8 @@ php artisan vendor:publish --tag=passport-migrations

### Password Grant Type

PR: https://github.com/laravel/passport/pull/1715

The password grant type is disabled by default. You may enable it by calling the `enablePasswordGrant` method in the `boot` method of your application's `App\Providers\AppServiceProvider` class:

```php
Expand Down
0