Skip to content

Commit 935bf0a

Browse files
committed
chore: extend php version support to include 8.3 and 8.5
1 parent 2372262 commit 935bf0a

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

.github/workflows/run-tests.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,14 @@ on:
88
- "phpunit.xml.dist"
99
- "composer.json"
1010
- "composer.lock"
11+
pull_request:
12+
paths:
13+
- "**.php"
14+
- ".github/workflows/run-tests.yml"
15+
- "phpunit.xml.dist"
16+
- "composer.json"
17+
- "composer.lock"
18+
workflow_dispatch:
1119

1220
concurrency:
1321
group: ${{ github.workflow }}-${{ github.ref }}
@@ -21,7 +29,7 @@ jobs:
2129
fail-fast: true
2230
matrix:
2331
os: [ubuntu-latest, windows-latest]
24-
php: [8.4]
32+
php: [8.3, 8.4, 8.5]
2533
laravel: [12.*]
2634
stability: [prefer-lowest, prefer-stable]
2735

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
}
2020
],
2121
"require": {
22-
"php": "^8.4",
22+
"php": "^8.3",
2323
"illuminate/contracts": "^12.0",
2424
"intervention/image-laravel": "^1.5",
2525
"spatie/laravel-package-tools": "^1.16"

0 commit comments

Comments
 (0)