Skip to content

Commit

Permalink
chore: drop support php 7.* and laravel 6 and 7
Browse files Browse the repository at this point in the history
  • Loading branch information
mvanduijker committed Feb 14, 2025
1 parent 9d769c6 commit 55746f3
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 40 deletions.
38 changes: 2 additions & 36 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ jobs:
fail-fast: false
matrix:
os: [ ubuntu-latest ]
php: [ 7.3, 7.4, 8.0, 8.1, 8.2, 8.3, 8.4 ]
laravel: [ 6.*, 7.*, 8.*, 9.*, 10.*, 11.* ]
php: [ 8.0, 8.1, 8.2, 8.3, 8.4 ]
laravel: [ 9.*, 10.*, 11.* ]
dependency-version: [ prefer-stable ]
include:
- testbench: 9.*
Expand All @@ -19,47 +19,13 @@ jobs:
laravel: 10.*
- testbench: 7.*
laravel: 9.*
- testbench: 6.*
laravel: 8.*
- testbench: 5.*
laravel: 7.*
- testbench: 4.*
laravel: 6.*
exclude:
- php: 7.3
laravel: 9.*
- php: 7.3
laravel: 10.*
- php: 7.3
laravel: 11.*
- php: 7.4
laravel: 9.*
- php: 7.4
laravel: 10.*
- php: 7.4
laravel: 11.*
- php: 8.0
laravel: 10.*
- php: 8.0
laravel: 11.*
- php: 8.1
laravel: 6.*
- php: 8.1
laravel: 7.*
- php: 8.1
laravel: 11.*
- php: 8.2
laravel: 6.*
- php: 8.2
laravel: 7.*
- php: 8.3
laravel: 6.*
- php: 8.3
laravel: 7.*
- php: 8.4
laravel: 6.*
- php: 8.4
laravel: 7.*
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }} - ${{ matrix.os }}

steps:
Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@
}
],
"require": {
"php": "^7.3|^8.0",
"illuminate/database": "~6.0,!=6.9.0|~7.0|~8.0|~9.0|~10.0|~11.0"
"php": "^8.0",
"illuminate/database": "~9.0|~10.0|~11.0"
},
"require-dev": {
"larapack/dd": "^1.0",
"orchestra/testbench": "~4.0|~5.0|~6.0|~7.0|~8.0|~9.0",
"phpunit/phpunit": "^9.3|^10.0"
"orchestra/testbench": "~7.0|~8.0|~9.0",
"phpunit/phpunit": "^9.5|^10.0"
},
"minimum-stability": "dev",
"prefer-stable": true,
Expand Down

0 comments on commit 55746f3

Please sign in to comment.