Skip to content

Commit 6c0fcf7

Browse files
committed
drop support for laravel 10 and lower, and php 8.1 and lower
1 parent 5e75def commit 6c0fcf7

File tree

2 files changed

+5
-10
lines changed

2 files changed

+5
-10
lines changed

.github/workflows/tests.yaml

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,16 +13,11 @@ jobs:
1313
strategy:
1414
fail-fast: false
1515
matrix:
16-
php: [8.1, 8.2, 8.3]
17-
laravel: [10.*, 11.*]
16+
php: [8.2, 8.3]
17+
laravel: [11.*]
1818
include:
19-
- laravel: 10.*
20-
testbench: 8.*
2119
- laravel: 11.*
2220
testbench: 9.*
23-
exclude:
24-
- laravel: 11.*
25-
php: 8.1
2621

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

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,14 @@
2222
"test": "pest"
2323
},
2424
"require": {
25-
"php": "^8.1",
25+
"php": "^8.2",
2626
"ext-json": "*",
27-
"illuminate/support": "^10.0|^11.0",
27+
"illuminate/support": "^11.0",
2828
"cloudinary/cloudinary_php": "^2.0"
2929
},
3030
"require-dev": {
3131
"mockery/mockery": "^1.1",
32-
"orchestra/testbench": "^8.0|^9.0",
32+
"orchestra/testbench": "^9.0",
3333
"pestphp/pest": "^2.35",
3434
"sempro/phpunit-pretty-print": "^1.0",
3535
"laravel/pint": "^1.20"

0 commit comments

Comments
 (0)