Skip to content

Commit

Permalink
Drop support for stale versions (#20)
Browse files Browse the repository at this point in the history
  • Loading branch information
mpyw authored Jan 25, 2021
1 parent 7b7ab22 commit 0a25a34
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 20 deletions.
13 changes: 1 addition & 12 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,21 +1,11 @@
language: php

matrix:
exclude:
- env: LARAVEL_VERSION=^8.0 TESTBENCH_VERSION=^6.0
php: 7.2
- env: LARAVEL_VERSION=^8.0 TESTBENCH_VERSION=^6.0
php: 7.1
- env: LARAVEL_VERSION=^7.0 TESTBENCH_VERSION=^5.0
php: 7.1
- env: LARAVEL_VERSION=^6.0 TESTBENCH_VERSION=^4.0
php: 7.1

php:
- 7.1
- 7.2
- 7.3
- 7.4
- 8.0

cache:
directories:
Expand All @@ -26,7 +16,6 @@ env:
- LARAVEL_VERSION=^8.0 TESTBENCH_VERSION=^6.0
- LARAVEL_VERSION=^7.0 TESTBENCH_VERSION=^5.0
- LARAVEL_VERSION=^6.0 TESTBENCH_VERSION=^4.0
- LARAVEL_VERSION=5.8.* TESTBENCH_VERSION=3.8.*

before_script:
- composer self-update
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ Guarantee database stickiness over the same user's consecutive requests.

## Requirements

- PHP: ^7.1
- Laravel: ^5.8 || ^6.0 || ^7.0 || ^8.0
- PHP: ^7.3 || ^8.0
- Laravel: ^6.0 || ^7.0 || ^8.0

## Installing

Expand Down
12 changes: 6 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@
}
},
"require": {
"php": "^7.1 || ^8.0",
"php": "^7.3 || ^8.0",
"ext-pdo": "*",
"illuminate/container": "^5.8 || ^6.0 || ^7.0 || ^8.0 || ^9.0",
"illuminate/contracts": "^5.8 || ^6.0 || ^7.0 || ^8.0 || ^9.0",
"illuminate/database": "^5.8 || ^6.0 || ^7.0 || ^8.0 || ^9.0",
"illuminate/queue": "^5.8 || ^6.0 || ^7.0 || ^8.0 || ^9.0",
"illuminate/support": "^5.8 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
"illuminate/container": "^6.0 || ^7.0 || ^8.0 || ^9.0",
"illuminate/contracts": "^6.0 || ^7.0 || ^8.0 || ^9.0",
"illuminate/database": "^6.0 || ^7.0 || ^8.0 || ^9.0",
"illuminate/queue": "^6.0 || ^7.0 || ^8.0 || ^9.0",
"illuminate/support": "^6.0 || ^7.0 || ^8.0 || ^9.0"
},
"require-dev": {
"orchestra/testbench": "^6.0",
Expand Down

0 comments on commit 0a25a34

Please sign in to comment.