We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 03aad70 commit 5c32a18Copy full SHA for 5c32a18
CHANGELOG.md
@@ -1,3 +1,7 @@
1
+## 0.2.1 (Sep 6, 2017)
2
+
3
+* README.md updated
4
5
## 0.2.0 (Sep 6, 2017)
6
7
* Service to get token config
README.md
@@ -91,7 +91,9 @@ return [
91
'authentication' => [
92
'secret' => 'your secret key to SIGN token', // This will sign the token. (still insecure)
93
'encryption_key' => 'Your ultra secret key to ENCRYPT the token', // Secure token with an ultra password
94
- 'expirationTime' => 86400 * 7, // One week till token expires
+ 'expiration_time' => 86400 * 7, // One week till token expires
95
+ 'iss' => "myproject", // Token issuer eg. www.myproject.com
96
+ 'aud' => "myproject", // Token audience eg. www.myproject.com
97
]
98
];
99
```
0 commit comments