File tree Expand file tree Collapse file tree 3 files changed +21
-13
lines changed
tests/Unit/Console/Commands Expand file tree Collapse file tree 3 files changed +21
-13
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.
2
8
3
9
## [ 0.8.3] - 2019-06-30
4
10
### Added
Original file line number Diff line number Diff line change 9
9
}
10
10
],
11
11
"require" : {
12
- "illuminate/routing" : " 5.3 - 5.8" ,
13
- "illuminate/support" : " 5.3 - 5.8" ,
14
- "jenssegers/model" : " *" ,
15
- "php" : " >=7.1.3"
12
+ "illuminate/routing" : " 6.0" ,
13
+ "illuminate/support" : " 6.0" ,
14
+ "jenssegers/model" : " ^1.2.1"
16
15
},
17
16
"require-dev" : {
18
17
"codedungeon/phpunit-result-printer" : " *" ,
19
- "mockery/mockery" : " *" ,
20
- "orchestra/testbench-browser-kit" : " 3.8.*" ,
21
- "orchestra/testbench" : " 3.8.*" ,
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
},
40
40
" GeneaLabs\\ LaravelCaffeine\\ Providers\\ Service"
41
41
]
42
42
}
43
- }
43
+ },
44
+ "minimum-stability" : " dev" ,
45
+ "prefer-stable" : true
44
46
}
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 ->assertStringContainsString ("'drip-interval' => 300000, " , $ settings );
19
- $ this ->assertStringContainsString ("'domain' => null, " , $ settings );
20
- $ this ->assertStringContainsString ("'route' => 'genealabs/laravel-caffeine/drip', " , $ settings );
21
- $ this ->assertStringContainsString ("'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