Skip to content

Commit 231bfca

Browse files
authored
Merge pull request #23 from ace-of-aces/extended-php-version-support
Extend PHP version support with 8.3 and 8.5
2 parents 2372262 + e51e812 commit 231bfca

File tree

3 files changed

+12
-3
lines changed

3 files changed

+12
-3
lines changed

.github/workflows/run-tests.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,21 @@ name: run-tests
22

33
on:
44
push:
5+
branches: [main]
56
paths:
67
- "**.php"
78
- ".github/workflows/run-tests.yml"
89
- "phpunit.xml.dist"
910
- "composer.json"
1011
- "composer.lock"
12+
pull_request:
13+
paths:
14+
- "**.php"
15+
- ".github/workflows/run-tests.yml"
16+
- "phpunit.xml.dist"
17+
- "composer.json"
18+
- "composer.lock"
19+
workflow_dispatch:
1120

1221
concurrency:
1322
group: ${{ github.workflow }}-${{ github.ref }}
@@ -21,7 +30,7 @@ jobs:
2130
fail-fast: true
2231
matrix:
2332
os: [ubuntu-latest, windows-latest]
24-
php: [8.4]
33+
php: [8.3, 8.4, 8.5]
2534
laravel: [12.*]
2635
stability: [prefer-lowest, prefer-stable]
2736

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"

docs/pages/installation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## Requirements
44

5-
- PHP \>= 8.4
5+
- PHP \>= 8.3
66
- Laravel 12.x
77
- [GD](https://www.php.net/manual/en/book.image.php) or [Imagick](https://www.php.net/manual/en/book.imagick.php) PHP extension installed and [enabled](#driver-configuration)
88

0 commit comments

Comments
 (0)