Skip to content

Commit 458dc1c

Browse files
committed
added support for Laravel 5.8
1 parent b052c16 commit 458dc1c

File tree

4 files changed

+11
-6
lines changed

4 files changed

+11
-6
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
composer.lock
2+
.phpunit.result.cache
23
/vendor

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-duplicate` will be documented in this file
44

5+
## 2.1.0 - 2019/22/03
6+
7+
- Support Laravel 5.8
8+
59
## 2.0.0 - 2019/22/03
610

711
- Transferred ownership to the [Neurony](https://github.com/Neurony) organisation

composer.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@
2121
],
2222
"require": {
2323
"php": "^7.1.3",
24-
"illuminate/contracts": "~5.7.0",
25-
"illuminate/support": "~5.7.0",
26-
"illuminate/database": "~5.7.0"
24+
"illuminate/contracts": "~5.7.0|~5.8.0",
25+
"illuminate/support": "~5.7.0|~5.8.0",
26+
"illuminate/database": "~5.7.0|~5.8.0"
2727
},
2828
"require-dev": {
29-
"orchestra/testbench": "~3.7.0",
30-
"phpunit/phpunit": "~7.0"
29+
"orchestra/testbench": "~3.7.0|~3.8.0",
30+
"phpunit/phpunit": "~7.0|^8.0"
3131
},
3232
"autoload": {
3333
"psr-4": {

tests/TestCase.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ abstract class TestCase extends Orchestra
3636
*
3737
* @return void
3838
*/
39-
public function setUp()
39+
public function setUp(): void
4040
{
4141
parent::setUp();
4242

0 commit comments

Comments
 (0)