File tree Expand file tree Collapse file tree 3 files changed +19
-12
lines changed
tests/Unit/Console/Commands Expand file tree Collapse file tree 3 files changed +19
-12
lines changed Original file line number Diff line number Diff line change 1
1
# Change Log
2
+ ## [ 1.0] - 2019-09-05
3
+ ### Added
4
+ - Laravel 6.0 compatibility.
5
+
6
+ ### Removed
7
+ - compatibility with older versions of Laravel.
8
+
2
9
## [ 0.6.12] - 5 Aug 2018
3
10
### Fixed
4
11
- middleware response to be a view instead of string. Thanks @dallincoons , #96 #95 .
Original file line number Diff line number Diff line change 9
9
}
10
10
],
11
11
"require" : {
12
- "illuminate/routing" : " 5.3 - 6.0" ,
13
- "illuminate/support" : " 5.3 - 6.0" ,
14
- "jenssegers/model" : " ~ 1.2"
12
+ "illuminate/routing" : " 6.0" ,
13
+ "illuminate/support" : " 6.0" ,
14
+ "jenssegers/model" : " ^ 1.2.1 "
15
15
},
16
16
"require-dev" : {
17
17
"codedungeon/phpunit-result-printer" : " *" ,
18
- "mockery/mockery" : " * " ,
19
- "orchestra/testbench-browser-kit" : " 3.9.x-dev@dev " ,
20
- "orchestra/testbench-dusk" : " 3.9.x-dev@dev " ,
21
- "orchestra/testbench" : " 3.9.x-dev@dev " ,
18
+ "mockery/mockery" : " ^1.0 " ,
19
+ "orchestra/testbench-browser-kit" : " ^ 3.9" ,
20
+ "orchestra/testbench-dusk" : " ^ 3.9" ,
21
+ "orchestra/testbench" : " ^ 3.9" ,
22
22
"phpmd/phpmd" : " *" ,
23
- "phpunit/phpunit" : " * " ,
23
+ "phpunit/phpunit" : " ^8.0 " ,
24
24
"php-coveralls/php-coveralls" : " *" ,
25
25
"sebastian/phpcpd" : " *"
26
26
},
Original file line number Diff line number Diff line change @@ -15,9 +15,9 @@ public function testConfigFileContainsCorrectSettings()
15
15
{
16
16
$ settings = file_get_contents (base_path ('config/genealabs-laravel-caffeine.php ' ));
17
17
18
- $ this ->assertContains ("'drip-interval' => 300000, " , $ settings );
19
- $ this ->assertContains ("'domain' => null, " , $ settings );
20
- $ this ->assertContains ("'route' => 'genealabs/laravel-caffeine/drip', " , $ settings );
21
- $ this ->assertContains ("'outdated-drip-check-interval' => 2000, " , $ settings );
18
+ $ this ->assertStringContainsStringIgnoringCase ("'drip-interval' => 300000, " , $ settings );
19
+ $ this ->assertStringContainsStringIgnoringCase ("'domain' => null, " , $ settings );
20
+ $ this ->assertStringContainsStringIgnoringCase ("'route' => 'genealabs/laravel-caffeine/drip', " , $ settings );
21
+ $ this ->assertStringContainsStringIgnoringCase ("'outdated-drip-check-interval' => 2000, " , $ settings );
22
22
}
23
23
}
You can’t perform that action at this time.
0 commit comments