Skip to content

Commit

Permalink
Drop support for Laravel 8 and PHP 7.3 & 7.4 (#232)
Browse files Browse the repository at this point in the history
  • Loading branch information
driesvints committed Jul 22, 2022
1 parent 1ee1bda commit eedbce5
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 13 deletions.
9 changes: 2 additions & 7 deletions .github/workflows/tests.yml
Expand Up @@ -13,13 +13,8 @@ jobs:
strategy:
fail-fast: true
matrix:
php: [7.3, 7.4, 8.0, 8.1]
laravel: [^8.0, ^9.0]
exclude:
- php: 7.3
laravel: ^9.0
- php: 7.4
laravel: ^9.0
php: ['8.0', 8.1]
laravel: [^9.0]

name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }}

Expand Down
12 changes: 6 additions & 6 deletions composer.json
Expand Up @@ -10,14 +10,14 @@
}
],
"require": {
"php": "^7.3|^8.0",
"illuminate/console": "^8.42|^9.0",
"illuminate/filesystem": "^8.42|^9.0",
"illuminate/support": "^8.82|^9.0",
"illuminate/validation": "^8.42|^9.0"
"php": "^8.0",
"illuminate/console": "^9.0",
"illuminate/filesystem": "^9.0",
"illuminate/support": "^9.0",
"illuminate/validation": "^9.0"
},
"require-dev": {
"orchestra/testbench": "^6.23|^7.0"
"orchestra/testbench": "^7.0"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit eedbce5

Please sign in to comment.