Skip to content

Commit 0a25a34

Browse files
authored
Drop support for stale versions (#20)
1 parent 7b7ab22 commit 0a25a34

File tree

3 files changed

+9
-20
lines changed

3 files changed

+9
-20
lines changed

.travis.yml

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

33
matrix:
4-
exclude:
5-
- env: LARAVEL_VERSION=^8.0 TESTBENCH_VERSION=^6.0
6-
php: 7.2
7-
- env: LARAVEL_VERSION=^8.0 TESTBENCH_VERSION=^6.0
8-
php: 7.1
9-
- env: LARAVEL_VERSION=^7.0 TESTBENCH_VERSION=^5.0
10-
php: 7.1
11-
- env: LARAVEL_VERSION=^6.0 TESTBENCH_VERSION=^4.0
12-
php: 7.1
134

145
php:
15-
- 7.1
16-
- 7.2
176
- 7.3
187
- 7.4
8+
- 8.0
199

2010
cache:
2111
directories:
@@ -26,7 +16,6 @@ env:
2616
- LARAVEL_VERSION=^8.0 TESTBENCH_VERSION=^6.0
2717
- LARAVEL_VERSION=^7.0 TESTBENCH_VERSION=^5.0
2818
- LARAVEL_VERSION=^6.0 TESTBENCH_VERSION=^4.0
29-
- LARAVEL_VERSION=5.8.* TESTBENCH_VERSION=3.8.*
3019

3120
before_script:
3221
- composer self-update

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ Guarantee database stickiness over the same user's consecutive requests.
44

55
## Requirements
66

7-
- PHP: ^7.1
8-
- Laravel: ^5.8 || ^6.0 || ^7.0 || ^8.0
7+
- PHP: ^7.3 || ^8.0
8+
- Laravel: ^6.0 || ^7.0 || ^8.0
99

1010
## Installing
1111

composer.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@
2121
}
2222
},
2323
"require": {
24-
"php": "^7.1 || ^8.0",
24+
"php": "^7.3 || ^8.0",
2525
"ext-pdo": "*",
26-
"illuminate/container": "^5.8 || ^6.0 || ^7.0 || ^8.0 || ^9.0",
27-
"illuminate/contracts": "^5.8 || ^6.0 || ^7.0 || ^8.0 || ^9.0",
28-
"illuminate/database": "^5.8 || ^6.0 || ^7.0 || ^8.0 || ^9.0",
29-
"illuminate/queue": "^5.8 || ^6.0 || ^7.0 || ^8.0 || ^9.0",
30-
"illuminate/support": "^5.8 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
26+
"illuminate/container": "^6.0 || ^7.0 || ^8.0 || ^9.0",
27+
"illuminate/contracts": "^6.0 || ^7.0 || ^8.0 || ^9.0",
28+
"illuminate/database": "^6.0 || ^7.0 || ^8.0 || ^9.0",
29+
"illuminate/queue": "^6.0 || ^7.0 || ^8.0 || ^9.0",
30+
"illuminate/support": "^6.0 || ^7.0 || ^8.0 || ^9.0"
3131
},
3232
"require-dev": {
3333
"orchestra/testbench": "^6.0",

0 commit comments

Comments
 (0)