Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit fd3e4b9

Browse files
committedMar 13, 2024·
Drop PHP 8.0 & 8.1 support
1 parent 9d6821b commit fd3e4b9

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed
 

‎.github/workflows/psalm.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.1'
19+
php-version: '8.2'
2020
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, bcmath, soap, intl, gd, exif, iconv, imagick, fileinfo
2121
coverage: none
2222

‎.github/workflows/run-tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
fail-fast: true
1010
matrix:
1111
os: [ubuntu-latest]
12-
php: ['8.3', '8.2', '8.1']
12+
php: ['8.3', '8.2']
1313
laravel: [^10.0, ^11.0]
1414
dependency-version: [prefer-lowest, prefer-stable]
1515
exclude:

‎composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
}
1818
],
1919
"require": {
20-
"php": "^8.0",
20+
"php": "^8.2",
2121
"illuminate/database": "^10.0|^11.0",
2222
"illuminate/support": "^10.0|^11.0"
2323
},

0 commit comments

Comments
 (0)
Please sign in to comment.