File tree 4 files changed +9
-10
lines changed 4 files changed +9
-10
lines changed Original file line number Diff line number Diff line change 2
2
3
3
All notable changes to ` laravel-directory-cleanup ` will be documented in this file
4
4
5
+ ## 1.2.4 - 2019-01-27
6
+
7
+ - add support for Laravel 5.8
8
+
5
9
## 1.2.3 - 2019-01-18
6
10
7
11
- fixes for handling hidden files
Original file line number Diff line number Diff line change 23
23
],
24
24
"require" : {
25
25
"php" : " ^7.0" ,
26
- "illuminate/support" : " ~5.3.0|~5.4.0|~5.5.0|~5.6.0|~5.7.0" ,
27
- "nesbot/carbon" : " ^1.0"
26
+ "illuminate/support" : " ~5.3.0|~5.4.0|~5.5.0|~5.6.0|~5.7.0|~5.8.0 " ,
27
+ "nesbot/carbon" : " ^1.0|^2.0 "
28
28
},
29
29
"require-dev" : {
30
- "phpunit/phpunit" : " ^5.0|^6.0|^7.0" ,
30
+ "phpunit/phpunit" : " ^5.0|^6.0|^7.0|^8.0 " ,
31
31
"mockery/mockery" : " ^1.1" ,
32
- "orchestra/testbench" :" ~3.3.0|~3.4.0|~3.5.0|~3.6.0|~3.7.0"
32
+ "orchestra/testbench" :" ~3.3.0|~3.4.0|~3.5.0|~3.6.0|~3.7.0|~3.8.0 "
33
33
},
34
34
"autoload" : {
35
35
"psr-4" : {
Original file line number Diff line number Diff line change 6
6
7
7
class DirectoryCleanupTest extends TestCase
8
8
{
9
- public function setUp ()
10
- {
11
- parent ::setUp ();
12
- }
13
-
14
9
/** @test */
15
10
public function it_can_cleanup_the_directories_specified_in_the_config_file ()
16
11
{
Original file line number Diff line number Diff line change 8
8
9
9
class TestCase extends OrchestraTestCase
10
10
{
11
- public function setUp ()
11
+ public function setUp (): void
12
12
{
13
13
parent ::setUp ();
14
14
You can’t perform that action at this time.
0 commit comments