mirror of
https://github.com/elyby/oauth2-server.git
synced 2024-12-25 06:30:13 +05:30
Fixes
This commit is contained in:
parent
daebacf9cb
commit
544efa2da3
@ -8,7 +8,7 @@ permalink: /upgrade-guide/
|
|||||||
|
|
||||||
## 5.1.x → 6.0.x
|
## 5.1.x → 6.0.x
|
||||||
|
|
||||||
Version `6.0.0` is not backwards compatible with version `5.1.x` but only requires you to make one like of code change:
|
Version `6.0.0` is not backwards compatible with version `5.1.x` but only requires you to make one line of code change:
|
||||||
|
|
||||||
```patch
|
```patch
|
||||||
$server = new AuthorizationServer(
|
$server = new AuthorizationServer(
|
||||||
|
@ -38,7 +38,7 @@ $server->setEncryptionKey('lxZFUEsBCJ2Yb14IF2ygAHI5N4+ZAUXXaSeeJm6+twsUmIen');
|
|||||||
|
|
||||||
### 6.0.0
|
### 6.0.0
|
||||||
|
|
||||||
Version `6.0.0` is not backwards compatible with version `5.1.x` but only requires you to make one like of code change:
|
Version `6.0.0` is not backwards compatible with version `5.1.x` but only requires you to make one line of code change:
|
||||||
|
|
||||||
```patch
|
```patch
|
||||||
$server = new AuthorizationServer(
|
$server = new AuthorizationServer(
|
||||||
@ -52,3 +52,9 @@ Version `6.0.0` is not backwards compatible with version `5.1.x` but only requir
|
|||||||
```
|
```
|
||||||
|
|
||||||
All you need to do is replace the public key that was being passed into the constructor of `AuthorizationServer` with a 32 bit encryption key.
|
All you need to do is replace the public key that was being passed into the constructor of `AuthorizationServer` with a 32 bit encryption key.
|
||||||
|
|
||||||
|
To generate an encryption key for the `AuthorizationServer` run the following command in the terminal:
|
||||||
|
|
||||||
|
{% highlight shell %}
|
||||||
|
php -r 'echo base64_encode(random_bytes(32)), PHP_EOL;'
|
||||||
|
{% endhighlight %}
|
||||||
|
Loading…
Reference in New Issue
Block a user