Skip to content

Commit

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

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

Expand Down
14 changes: 7 additions & 7 deletions composer.json
Expand Up @@ -14,17 +14,17 @@
}
],
"require": {
"php": "^7.2|^8.0",
"php": "^8.0.2",
"ext-json": "*",
"illuminate/console": "^6.9|^7.0|^8.0|^9.0",
"illuminate/contracts": "^6.9|^7.0|^8.0|^9.0",
"illuminate/database": "^6.9|^7.0|^8.0|^9.0",
"illuminate/support": "^6.9|^7.0|^8.0|^9.0"
"illuminate/console": "^9.0",
"illuminate/contracts": "^9.0",
"illuminate/database": "^9.0",
"illuminate/support": "^9.0"
},
"require-dev": {
"mockery/mockery": "^1.0",
"orchestra/testbench": "^4.0|^5.0|^6.0|^7.0",
"phpunit/phpunit": "^8.0|^9.3"
"orchestra/testbench": "^7.0",
"phpunit/phpunit": "^9.3"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit 13715f3

Please sign in to comment.