File tree Expand file tree Collapse file tree 4 files changed +15
-7
lines changed Expand file tree Collapse file tree 4 files changed +15
-7
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
4
4
The format is based on [ Keep a Changelog] ( http://keepachangelog.com/en/1.0.0/ )
5
5
and this project adheres to [ Semantic Versioning] ( http://semver.org/spec/v2.0.0.html ) .
6
6
7
+ ## [ 0.4.0] - 2020-02-29
8
+ ### Added
9
+ - Laravel 7 compatibility.
10
+
7
11
## [ 0.3.0] - 2019-10-14
8
12
### Removed
9
13
- user resolution and persistence functionality and extracted it to a generic
Original file line number Diff line number Diff line change 16
16
"genealabs/laravel-socialiter" : " Automatic user resolution and persistence for any Laravel Socialite driver."
17
17
},
18
18
"require" : {
19
- "illuminate/support" : " ^6.2" ,
20
- "laravel/socialite" : " ^4.2" ,
21
- "php" : " ^7.2"
19
+ "illuminate/support" : " ^7.0" ,
20
+ "laravel/socialite" : " dev-master@dev"
22
21
},
23
22
"require-dev" : {
24
- "orchestra/testbench-dusk" : " ^4.2" ,
25
- "orchestra/testbench" : " ^4.2" ,
23
+ "orchestra/testbench-browser-kit" : " ^5.0" ,
24
+ "orchestra/testbench-dusk" : " ^5.0" ,
25
+ "orchestra/testbench" : " ^5.0" ,
26
26
"phpmd/phpmd" : " ^2.7" ,
27
27
"squizlabs/php_codesniffer" : " ^3.5" ,
28
- "orchestra/testbench-browser-kit" : " ^4.2"
28
+ "predis/predis" : " ^1.1" ,
29
+ "phpunit/phpunit" : " ^8.5"
29
30
},
30
31
"autoload" : {
31
32
"psr-4" : {
Original file line number Diff line number Diff line change 35
35
<env name =" QUEUE_DRIVER" value =" sync" />
36
36
<env name =" DB_CONNECTION" value =" sqlite" />
37
37
<env name =" DB_DATABASE" value =" :memory:" />
38
- <env name =" REDIS_HOST" value =" 127.0.0.1 " />
38
+ <env name =" REDIS_HOST" value =" 192.168.10.10 " />
39
39
<env name =" SIGN_IN_WITH_APPLE_LOGIN" value =" /siwa-login" />
40
40
<env name =" SIGN_IN_WITH_APPLE_REDIRECT" value =" http://testing.dev/siwa-callback" />
41
+ <env name =" SIGN_IN_WITH_APPLE_CLIENT_ID" value =" add-your-own" />
42
+ <env name =" SIGN_IN_WITH_APPLE_CLIENT_SECRET" value =" add-your-own" />
41
43
</php >
42
44
</phpunit >
Original file line number Diff line number Diff line change @@ -22,6 +22,7 @@ protected function setUp(): void
22
22
23
23
protected function getEnvironmentSetUp ($ app )
24
24
{
25
+ $ app ['config ' ]->set ('database.redis.client ' , "predis " );
25
26
$ app ->make (Kernel::class)
26
27
->pushMiddleware (StartSession::class);
27
28
You can’t perform that action at this time.
0 commit comments