Skip to content

Commit 103536b

Browse files
committed
build: changed PHP requirement to PHP 8.4 or later
1 parent a4601ae commit 103536b

File tree

11 files changed

+337
-543
lines changed

11 files changed

+337
-543
lines changed

.github/workflows/4.1-nightly.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Checkout
2020
uses: actions/checkout@v6
2121
with:
22-
ref: 'main' #'4.1'
22+
ref: '4.1'
2323

2424
- name: Get current date
2525
id: date

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
strategy:
1414
matrix:
1515
operating-system: ['ubuntu-latest']
16-
php-versions: ['8.3', '8.4', '8.5', '8.6']
16+
php-versions: ['8.4', '8.5', '8.6']
1717
name: phpMyFAQ ${{ matrix.php-versions }} Test on ${{ matrix.operating-system }}
1818

1919
steps:

.github/workflows/dev-nightly.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
fail-fast: false
1313
matrix:
1414
operating-system: ['ubuntu-latest']
15-
php-versions: ['8.3']
15+
php-versions: ['8.4']
1616
name: phpMyFAQ Nightly Dev Build
1717

1818
steps:

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ This is a log of major user-visible changes in each phpMyFAQ release.
88

99
### phpMyFAQ v4.2.0-dev - unreleased
1010

11-
- n/a
11+
- changed PHP requirement to PHP 8.4 or later (Thorsten)
1212

1313
### phpMyFAQ v4.1.0-RC - 2025-12-29
1414

composer.json

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
}
1616
],
1717
"require": {
18-
"php": ">=8.3.0",
18+
"php": ">=8.4.0",
1919
"ext-curl": "*",
2020
"ext-fileinfo": "*",
2121
"ext-filter": "*",
@@ -35,20 +35,20 @@
3535
"opensearch-project/opensearch-php": "^2.4",
3636
"phpseclib/phpseclib": "~3.0",
3737
"robthree/twofactorauth": "^3.0.0",
38-
"symfony/config": "^7.3",
39-
"symfony/console": "^7.3",
40-
"symfony/dependency-injection": "^7.3",
41-
"symfony/dotenv": "^7.3",
42-
"symfony/event-dispatcher": "^7.3",
43-
"symfony/error-handler": "^7.3",
44-
"symfony/html-sanitizer": "^7.3",
45-
"symfony/http-client": "^7.3",
46-
"symfony/http-foundation": "^7.3",
47-
"symfony/http-kernel": "^7.3",
48-
"symfony/mailer": "^7.3",
38+
"symfony/config": "^8.0",
39+
"symfony/console": "^8.0",
40+
"symfony/dependency-injection": "^8.0",
41+
"symfony/dotenv": "^8.0",
42+
"symfony/event-dispatcher": "^8.0",
43+
"symfony/error-handler": "^8.0",
44+
"symfony/html-sanitizer": "^8.0",
45+
"symfony/http-client": "^8.0",
46+
"symfony/http-foundation": "^8.0",
47+
"symfony/http-kernel": "^8.0",
48+
"symfony/mailer": "^8.0",
4949
"symfony/mcp-sdk": "dev-main",
50-
"symfony/routing": "^7.3",
51-
"symfony/uid": "^7.3",
50+
"symfony/routing": "^8.0",
51+
"symfony/uid": "^8.0",
5252
"tecnickcom/tcpdf": "~6.0",
5353
"tivie/htaccess-parser": "0.4.0",
5454
"twig/intl-extra": "^3.10",
@@ -61,7 +61,7 @@
6161
"phpdocumentor/reflection-docblock": "5.*",
6262
"phpunit/phpunit": "^12.3",
6363
"rector/rector": "^2",
64-
"symfony/yaml": "7.*",
64+
"symfony/yaml": "8.*",
6565
"zircote/swagger-php": "^5.0"
6666
},
6767
"suggest": {
@@ -74,7 +74,7 @@
7474
},
7575
"config": {
7676
"platform": {
77-
"php": "8.3.0"
77+
"php": "8.4.0"
7878
},
7979
"process-timeout": 0,
8080
"secure-http": true,

0 commit comments

Comments
 (0)