Skip to content

Commit e13f1a0

Browse files
committed
wip
1 parent ef3c21c commit e13f1a0

File tree

4 files changed

+9
-10
lines changed

4 files changed

+9
-10
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
All notable changes to `laravel-directory-cleanup` will be documented in this file
44

5+
## 1.2.4 - 2019-01-27
6+
7+
- add support for Laravel 5.8
8+
59
## 1.2.3 - 2019-01-18
610

711
- fixes for handling hidden files

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@
2323
],
2424
"require": {
2525
"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"
2828
},
2929
"require-dev": {
30-
"phpunit/phpunit": "^5.0|^6.0|^7.0",
30+
"phpunit/phpunit": "^5.0|^6.0|^7.0|^8.0",
3131
"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"
3333
},
3434
"autoload": {
3535
"psr-4": {

tests/DirectoryCleanupTest.php

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,6 @@
66

77
class DirectoryCleanupTest extends TestCase
88
{
9-
public function setUp()
10-
{
11-
parent::setUp();
12-
}
13-
149
/** @test */
1510
public function it_can_cleanup_the_directories_specified_in_the_config_file()
1611
{

tests/TestCase.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
class TestCase extends OrchestraTestCase
1010
{
11-
public function setUp()
11+
public function setUp(): void
1212
{
1313
parent::setUp();
1414

0 commit comments

Comments
 (0)