Skip to content

Commit 4cfe090

Browse files
authored
Drop support for stale versions (#8)
1 parent 7ebb07f commit 4cfe090

File tree

3 files changed

+7
-20
lines changed

3 files changed

+7
-20
lines changed

.travis.yml

Lines changed: 1 addition & 14 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,9 +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.*
30-
- LARAVEL_VERSION=5.7.* TESTBENCH_VERSION=3.7.*
31-
- LARAVEL_VERSION=5.6.* TESTBENCH_VERSION=3.6.*
3219

3320
before_script:
3421
- composer self-update

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ Null Guard for Laravel. Designed for Middleware-based authentication and testing
88

99
## Requirements
1010

11-
- PHP: ^7.1
12-
- Laravel: ^5.6 || ^6.0 || ^7.0 || ^8.0
11+
- PHP: ^7.3 || ^8.0
12+
- Laravel: ^6.0 || ^7.0 || ^8.0
1313

1414
## Installing
1515

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@
2121
}
2222
},
2323
"require": {
24-
"php": "^7.1 || ^8.0",
25-
"illuminate/auth": "^5.6 || ^6.0 || ^7.0 || ^8.0 || ^9.0",
26-
"illuminate/contracts": "^5.6 || ^6.0 || ^7.0 || ^8.0 || ^9.0",
27-
"illuminate/support": "^5.6 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
24+
"php": "^7.3 || ^8.0",
25+
"illuminate/auth": "^6.0 || ^7.0 || ^8.0 || ^9.0",
26+
"illuminate/contracts": "^6.0 || ^7.0 || ^8.0 || ^9.0",
27+
"illuminate/support": "^6.0 || ^7.0 || ^8.0 || ^9.0"
2828
},
2929
"require-dev": {
3030
"orchestra/testbench": "^6.0",

0 commit comments

Comments
 (0)