Skip to content

Commit d37216c

Browse files
committed
Laravel ^7.0 support
1 parent f13cc7f commit d37216c

File tree

5 files changed

+19
-10
lines changed

5 files changed

+19
-10
lines changed

.travis.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,16 @@ matrix:
1313
include:
1414
- php: 7.2
1515
env: LARAVEL_VERSION=~6.0 TESTBENCH_VERSION=~4.0 PHPUNIT_VERSION=~8.0
16+
- php: 7.2
17+
env: LARAVEL_VERSION=~7.0 TESTBENCH_VERSION=~5.0 PHPUNIT_VERSION=~8.0
1618
- php: 7.3
1719
env: LARAVEL_VERSION=~6.0 TESTBENCH_VERSION=~4.0 PHPUNIT_VERSION=~8.0
20+
- php: 7.3
21+
env: LARAVEL_VERSION=~7.0 TESTBENCH_VERSION=~5.0 PHPUNIT_VERSION=~9.0
1822
- php: 7.4
1923
env: LARAVEL_VERSION=~6.0 TESTBENCH_VERSION=~4.0 PHPUNIT_VERSION=~8.0
24+
- php: 7.4
25+
env: LARAVEL_VERSION=~7.0 TESTBENCH_VERSION=~5.0 PHPUNIT_VERSION=~9.0
2026

2127
before_install:
2228
- travis_retry composer self-update

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,14 @@
22

33
All notable changes to `eloquent-repository` will be documented in this file
44

5+
## 2.1.0 - 2020-03-30
6+
7+
- Laravel ^7.0 support added
8+
59
## 2.0.0 - 2019-09-19
610

711
- Laravel ^6.0 compatibility added
8-
- Dropped support for Laravel 5.6 and 5.7
12+
- Dropped support for Laravel 5.6, 5.7 and 5.8
913

1014
## 1.2.1 - 2019-08-13
1115

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Eloquent Repository package for Laravel created with total "repository pattern"
1515

1616
## Requirements
1717

18-
**Version ^2.0** - Laravel **^6.0** or higher and **PHP 7.2** or higher.
18+
**Version ^2.0** - Laravel **^6.0** or **^7.0** or higher and **PHP 7.2** or higher.
1919

2020
**Version ^1.0** - Laravel **5.5, 5.6, 5.7, 5.8** and **PHP 7.1** or higher.
2121

composer.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,15 @@
2222
],
2323
"require": {
2424
"php": "^7.2",
25-
"illuminate/container": "^6.0",
26-
"illuminate/console": "^6.0",
27-
"illuminate/contracts": "^6.0",
28-
"illuminate/database": "^6.0",
29-
"illuminate/support": "^6.0"
25+
"illuminate/container": "^6.0|^7.0",
26+
"illuminate/console": "^6.0|^7.0",
27+
"illuminate/contracts": "^6.0|^7.0",
28+
"illuminate/database": "^6.0|^7.0",
29+
"illuminate/support": "^6.0|^7.0"
3030
},
3131
"require-dev": {
32-
"orchestra/testbench": "^4.0",
33-
"phpunit/phpunit": "^8.0"
32+
"orchestra/testbench": "^4.0|^5.0",
33+
"phpunit/phpunit": "^8.0|^9.0"
3434
},
3535
"autoload": {
3636
"psr-4": {

phpunit.xml.dist

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020
</whitelist>
2121
</filter>
2222
<logging>
23-
<log type="tap" target="build/report.tap"/>
2423
<log type="junit" target="build/report.junit.xml"/>
2524
<log type="coverage-html" target="build/coverage"/>
2625
<log type="coverage-text" target="build/coverage.txt"/>

0 commit comments

Comments
 (0)