File tree Expand file tree Collapse file tree 3 files changed +16
-4
lines changed Expand file tree Collapse file tree 3 files changed +16
-4
lines changed Original file line number Diff line number Diff line change 11# CHANGELOG
22
3+ ## 2.2.2
4+ - Added support till Laravel 7.8.x
5+
36## 2.2.1
47 - README.md and CHANGELOG.md Updated.
58
Original file line number Diff line number Diff line change 44
55| ** Laravel** | ** wordpress-auth-driver-laravel** |
66| ---| ---|
7- | 5.2 to 5.5 | ^1.0 |
8- | 5.6 to 6 .x | ^2.0 |
7+ | 5.2 to 5.5 | ^1.0 |
8+ | 5.6 to 7.8 .x | ^2.0 |
99
1010## Installation
1111
1212To install this package you will need
13- - Laravel 5.6|5.7|5.8|6.x ([ for older versions of laravel] ( https://github.com/ahsankhatri/wordpress-auth-driver-laravel/tree/v1 ) )
13+ - Laravel ` >= 5.6 && <= 7.8.x ` ([ for older versions of laravel] ( https://github.com/ahsankhatri/wordpress-auth-driver-laravel/tree/v1 ) )
1414 - PHP 7.1
1515
1616The best way to install this package is with the help of composer. Run
@@ -86,6 +86,15 @@ For example:
8686],
8787```
8888
89+ Add following option along if using Laravel v7 (optional)
90+ ``` php
91+ // ...
92+ 'url' => env('DATABASE_URL'),
93+ 'options' => extension_loaded('pdo_mysql') ? array_filter([
94+ PDO::MYSQL_ATTR_SSL_CA => env('MYSQL_ATTR_SSL_CA'),
95+ ]) : [],
96+ ```
97+
8998## Configuration
9099
91100` password_resets ` table (from Laravel default auth mechanism) is required to hold reset password token. If you do not have ` password_resets ` table then use this migration instead
Original file line number Diff line number Diff line change 1414 "require" : {
1515 "php" : " ^7.1" ,
1616 "hautelook/phpass" : " >=0.3" ,
17- "laravel/framework" : " >=5.6 <7"
17+ "laravel/framework" : " >=5.6 <7.9 "
1818 },
1919 "autoload" : {
2020 "psr-4" : {
You can’t perform that action at this time.
0 commit comments