Skip to content

Commit 9f2d696

Browse files
authored
Require php8.4 minimum (#77)
1 parent 0d8848d commit 9f2d696

File tree

4 files changed

+696
-465
lines changed

4 files changed

+696
-465
lines changed

.github/dependabot.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: github-actions
4+
directory: /
5+
schedule:
6+
interval: weekly
7+
groups:
8+
actions-deps:
9+
patterns:
10+
- "*" # Include all GitHub Actions
11+
12+
- package-ecosystem: composer
13+
directory: /
14+
schedule:
15+
interval: weekly
16+
groups:
17+
production-dependencies:
18+
dependency-type: "production"
19+
development-dependencies:
20+
dependency-type: "development"

.github/workflows/php.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,8 +94,8 @@ jobs:
9494
fail-fast: false
9595
matrix:
9696
php-version:
97-
- "8.3"
9897
- "8.4"
98+
- "8.5"
9999
env:
100100
extensions: curl, dom, imagick, json, libxml, mbstring
101101

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
"Imagick"
3434
],
3535
"require": {
36-
"php": "^8.3",
36+
"php": "^8.4",
3737
"ext-fileinfo": "*",
3838
"fylax/forceutf8": "^3.0.3",
3939
"php-ffmpeg/php-ffmpeg": "^1.2",
@@ -81,7 +81,7 @@
8181
},
8282
"config": {
8383
"platform": {
84-
"php": "8.3"
84+
"php": "8.4"
8585
},
8686
"preferred-install": "dist",
8787
"sort-packages": true,

0 commit comments

Comments
 (0)