Skip to content

Commit e4c0043

Browse files
mjansenDatabayrfalkenstein
authored andcommitted
[FEATURE] Use PHP 8.4/8.5
1 parent b215baf commit e4c0043

8 files changed

Lines changed: 422 additions & 453 deletions

File tree

.github/workflows/checks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
strategy:
1212
fail-fast: false
1313
matrix:
14-
php: [8.3, 8.4]
14+
php: [8.4, 8.5]
1515
nodejs: [ 22.x, 24.x ]
1616
steps:
1717
- name: Checkout code

.github/workflows/install-check-trunk-8.3.yml renamed to .github/workflows/install-check-trunk-8.5.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: install-check-trunk-8.3
1+
name: install-check-trunk-8.5
22
on:
33
schedule:
44
- cron: "0 12 * * *"
@@ -11,7 +11,7 @@ jobs:
1111
strategy:
1212
fail-fast: false
1313
matrix:
14-
php: [8.3]
14+
php: [8.5]
1515
env:
1616
DB_DATABASE: ilias
1717
DB_USER: root

.github/workflows/legacy-ui.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
- name: Setup PHP
3535
uses: shivammathur/setup-php@v2
3636
with:
37-
php-version: 8.3
37+
php-version: 8.4
3838
extensions: dom, curl, libxml, mbstring, zip, gd, json, readline, xsl, xml, mysql
3939
tools: composer:v2
4040
coverage: none

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[![checks](https://github.com/ILIAS-eLearning/ILIAS/actions/workflows/checks.yml/badge.svg?branch=trunk)](https://github.com/ILIAS-eLearning/ILIAS/actions/workflows/checks.yml)
2-
[![Supported PHP Version](https://img.shields.io/badge/php-%3E%3D8.3%7C%3C%3D8.4-8892BF.svg)](https://php.net/)
2+
[![Supported PHP Version](https://img.shields.io/badge/php-%3E%3D8.4%7C%3C%3D8.5-8892BF.svg)](https://php.net/)
33

44
# ILIAS
55

components/ILIAS/setup_/classes/class.ilCommonSetupAgent.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@
3131
class ilCommonSetupAgent implements Setup\Agent
3232
{
3333
private const PHP_MEMORY_LIMIT = "128M";
34-
private const PHP_MIN_VERSION = "8.3.0";
35-
private const PHP_MAX_VERSION = "8.4.999";
34+
private const PHP_MIN_VERSION = "8.4.0";
35+
private const PHP_MAX_VERSION = "8.5.999";
3636

3737
protected Refinery\Factory $refinery;
3838
protected Data\Factory $data;

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
]
4040
},
4141
"require": {
42-
"php": ">=8.3 <8.5",
42+
"php": ">=8.4 <8.6",
4343
"ext-gd": "*",
4444
"ext-dom": "*",
4545
"ext-xsl": "*",
@@ -58,7 +58,7 @@
5858
"guzzlehttp/psr7": "2.7.0",
5959
"ifsnop/mysqldump-php": "2.11",
6060
"james-heinrich/getid3": "^1.9.23",
61-
"league/commonmark": "2.7.0",
61+
"league/commonmark": "^2.8",
6262
"league/flysystem": "3.28.0",
6363
"monolog/monolog": "^3.9",
6464
"mustache/mustache": "^3.0",

0 commit comments

Comments
 (0)