Skip to content

Commit a5386e2

Browse files
FIX min php version (#23)
1 parent 44acc2c commit a5386e2

File tree

3 files changed

+3
-8
lines changed

3 files changed

+3
-8
lines changed

.github/workflows/phpstan.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: Setup PHP
1717
uses: shivammathur/setup-php@v2
1818
with:
19-
php-version: '8.0'
19+
php-version: '8.1'
2020
coverage: none
2121

2222
- name: Install composer dependencies

.github/workflows/run-tests.yml

+1-6
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
fail-fast: true
1414
matrix:
1515
os: [ubuntu-latest, windows-latest]
16-
php: [8.3, 8.2, 8.1, 8.0]
16+
php: [8.3, 8.2, 8.1]
1717
laravel: [11.*, 10.*]
1818
stability: [prefer-lowest, prefer-stable]
1919
include:
@@ -24,13 +24,8 @@ jobs:
2424
testbench: 8.*
2525
carbon: ^2.67
2626
exclude:
27-
- laravel: 10.*
28-
php: 8.0
2927
- laravel: 11.*
3028
php: 8.1
31-
- laravel: 11.*
32-
php: 8.0
33-
3429

3530
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
3631

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
}
1717
],
1818
"require": {
19-
"php": "^8.0",
19+
"php": "^8.1",
2020
"illuminate/database": "^10.0|^11.0",
2121
"illuminate/support": "^10.0|^11.0",
2222
"spatie/laravel-package-tools": "^1.14.1"

0 commit comments

Comments
 (0)