Skip to content

Commit

Permalink
drop support for laravel 10 and lower, and php 8.1 and lower
Browse files Browse the repository at this point in the history
  • Loading branch information
joshmanders committed Jan 28, 2025
1 parent 5e75def commit 6c0fcf7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 10 deletions.
9 changes: 2 additions & 7 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,11 @@ jobs:
strategy:
fail-fast: false
matrix:
php: [8.1, 8.2, 8.3]
laravel: [10.*, 11.*]
php: [8.2, 8.3]
laravel: [11.*]
include:
- laravel: 10.*
testbench: 8.*
- laravel: 11.*
testbench: 9.*
exclude:
- laravel: 11.*
php: 8.1

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

Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,14 @@
"test": "pest"
},
"require": {
"php": "^8.1",
"php": "^8.2",
"ext-json": "*",
"illuminate/support": "^10.0|^11.0",
"illuminate/support": "^11.0",
"cloudinary/cloudinary_php": "^2.0"
},
"require-dev": {
"mockery/mockery": "^1.1",
"orchestra/testbench": "^8.0|^9.0",
"orchestra/testbench": "^9.0",
"pestphp/pest": "^2.35",
"sempro/phpunit-pretty-print": "^1.0",
"laravel/pint": "^1.20"
Expand Down

0 comments on commit 6c0fcf7

Please sign in to comment.