Skip to content

Commit

Permalink
Drop support for L8 and PHP 7.4
Browse files Browse the repository at this point in the history
  • Loading branch information
mateusjunges committed Feb 1, 2023
1 parent d0c52d0 commit 86bf9df
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 13 deletions.
10 changes: 2 additions & 8 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,23 +8,17 @@ jobs:

strategy:
matrix:
php: [7.4, 8.0, 8.1]
laravel: [8.*, 9.*, 10.*]
php: [8.0, 8.1]
laravel: [9.*, 10.*]
dependency-version: [prefer-stable, prefer-lowest]
include:
- laravel: 10.*
testbench: ^8.0
- laravel: 8.*
testbench: 6.23
- laravel: 9.*
testbench: ^7.0
exclude:
- laravel: 10.*
php: 7.4
- laravel: 10.*
php: 8.0
- laravel: 9.*
php: 7.4

name: CI - PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }} - Testbench ${{ matrix.testbench }} (${{ matrix.dependency-version }})

Expand Down
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@
}
],
"require": {
"php": "^7.4||^8.0",
"illuminate/support": "^8.0 || ^9.0|^10.0",
"illuminate/queue": "^8.0 || ^9.0|^10.0",
"illuminate/database": "^8.0 || ^9.0|^10.0"
"php": "^8.0",
"illuminate/support": "^9.0|^10.0",
"illuminate/queue": "^9.0|^10.0",
"illuminate/database": "^9.0|^10.0"
},
"require-dev": {
"orchestra/testbench": "^6.0 || ^7.0|^8.0",
"orchestra/testbench": "^7.0|^8.0",
"phpunit/phpunit": "^9.5",
"spatie/test-time": "^1.2",
"friendsofphp/php-cs-fixer": "^3.2"
Expand Down

0 comments on commit 86bf9df

Please sign in to comment.