Skip to content

Commit 5c32a18

Browse files
committed
README.md updated
1 parent 03aad70 commit 5c32a18

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.2.1 (Sep 6, 2017)
2+
3+
* README.md updated
4+
15
## 0.2.0 (Sep 6, 2017)
26

37
* Service to get token config

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,9 @@ return [
9191
'authentication' => [
9292
'secret' => 'your secret key to SIGN token', // This will sign the token. (still insecure)
9393
'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
94+
'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
9597
]
9698
];
9799
```

0 commit comments

Comments
 (0)