Skip to content

Commit

Permalink
Merge pull request #49 from eXolnet/feature/drop-laravel9-support
Browse files Browse the repository at this point in the history
build(deps): drop Laravel 9 support
  • Loading branch information
xel1045 authored Mar 26, 2024
2 parents 55d34d8 + ab75458 commit 3d9348d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 17 deletions.
13 changes: 1 addition & 12 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,22 +10,11 @@ jobs:
fail-fast: true
matrix:
php: [8.1, 8.2]
laravel: [9.*, 10.*]
laravel: [10.*]
dependency-version: [prefer-lowest, prefer-stable]
exclude:
- php: 8.2
laravel: 9.*
dependency-version: prefer-lowest
include:
- laravel: 9.*
testbench: 7.*
- laravel: 10.*
testbench: 8.*
# Laravel only support PHP 8.2 from v9.43
- php: 8.2
laravel: ^9.43
dependency-version: prefer-lowest
testbench: 7.*

name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ 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 @@ -16,16 +16,16 @@
},
"require": {
"php": "^8.1",
"illuminate/contracts": "^9.0|^10.0",
"illuminate/http": "^9.0|^10.0",
"illuminate/support": "^9.0|^10.0",
"illuminate/view": "^9.0|^10.0"
"illuminate/contracts": "^10.0",
"illuminate/http": "^10.0",
"illuminate/support": "^10.0",
"illuminate/view": "^10.0"
},
"require-dev": {
"exolnet/phpcs-config": "^2.0",
"laravel/pint": "^1.1",
"mockery/mockery": "^1.4",
"orchestra/testbench": "^7.0|^8.0",
"orchestra/testbench": "^8.0",
"phpunit/phpunit": "^9.3.3",
"squizlabs/php_codesniffer": "^3.6"
},
Expand Down

0 comments on commit 3d9348d

Please sign in to comment.