Skip to content

Commit

Permalink
Drop support for Laravel 6 (#26)
Browse files Browse the repository at this point in the history
There is a security advisory for http-foundation below 5.0.7 and this is the easiest way to guarantee that it is not being used, moving forward.
  • Loading branch information
arondeparon authored Sep 8, 2021
1 parent 27611be commit 22ef167
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,13 @@ jobs:
fail-fast: true
matrix:
php: [8.0, 7.4, 7.3]
laravel: [8.*, 7.*, 6.*]
laravel: [8.*, 7.*]
dependency-version: [prefer-lowest, prefer-stable]
include:
- laravel: 8.*
testbench: 6.*
- laravel: 7.*
testbench: 5.*
- laravel: 6.*
testbench: 4.*

name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }}

Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,12 @@
],
"require": {
"php": "^7.3|^8.0",
"illuminate/http": "^6.0|^7.0|^8.0",
"illuminate/http": "^7.0|^8.0",
"symfony/http-foundation": "^4.3.4|>=5.1.3"
},
"require-dev": {
"phpunit/phpunit": "^8.0 || ^9.0",
"orchestra/testbench": "^4.0|^5.0|^6.0",
"orchestra/testbench": "^5.0|^6.0",
"mockery/mockery": "^1.4"
},
"autoload": {
Expand Down

0 comments on commit 22ef167

Please sign in to comment.