Skip to content

Commit 193aabf

Browse files
authored
Merge pull request #6 from bacanu/add-support-for-laravel6.0
support Laravel 6.0
2 parents ac42c9a + 6c6ddad commit 193aabf

File tree

3 files changed

+11
-8
lines changed

3 files changed

+11
-8
lines changed

.travis.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
language: php
22

33
php:
4-
- 7.1
54
- 7.2
65
- 7.3
76
- nightly
@@ -16,4 +15,4 @@ before_script:
1615
- travis_retry composer update --no-interaction --prefer-source
1716

1817
script:
19-
- vendor/bin/phpunit
18+
- vendor/bin/phpunit

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
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+
## 3.0.0 - 2019/13/11
6+
7+
- Support Laravel 6.0
8+
59
## 2.1.0 - 2019/22/03
610

711
- Support Laravel 5.8
@@ -15,4 +19,4 @@ All notable changes to `laravel-duplicate` will be documented in this file
1519

1620
## 1.0.0 - 2018/12/28
1721

18-
- Initial release
22+
- Initial release

composer.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,13 @@
2020
}
2121
],
2222
"require": {
23-
"php": "^7.1.3",
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"
23+
"php": "^7.2",
24+
"illuminate/contracts": "^6.0",
25+
"illuminate/support": "^6.0",
26+
"illuminate/database": "^6.0"
2727
},
2828
"require-dev": {
29-
"orchestra/testbench": "~3.7.0|~3.8.0",
29+
"orchestra/testbench": "^4.0",
3030
"phpunit/phpunit": "~7.0|^8.0"
3131
},
3232
"autoload": {

0 commit comments

Comments
 (0)