Skip to content

Commit cc6c982

Browse files
committed
chore: update PHP version to 8.5 across workflows and configuration files
1 parent 048477e commit cc6c982

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

.github/workflows/sonarcloud.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: Setup PHP
2121
uses: shivammathur/setup-php@v2
2222
with:
23-
php-version: '8.4.13'
23+
php-version: '8.5.1'
2424
extensions: redis
2525
coverage: xdebug
2626

.github/workflows/unittests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
fail-fast: false
1414
matrix:
1515
os: ['ubuntu-latest']
16-
php: [8.4, 8.5]
16+
php: [8.5]
1717
steps:
1818
- uses: actions/checkout@v5
1919

README.md

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

77
## Lokales Setup
88

9-
Benötigte Software: Linux (geht u.U. auch unter macOS) docker, php 8.4, composer, git.
9+
Benötigte Software: Linux (geht u.U. auch unter macOS) docker, php 8.5, composer, git.
1010

1111
- Repository forken und das Source-Code auschecken
1212
- config.dist.json nach config.json kopieren und anpassen

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
}
2424
},
2525
"require": {
26-
"php": "^8.4",
26+
"php": "^8.5",
2727
"ext-dom": "*",
2828
"ext-gd": "*",
2929
"ext-gettext": "*",

dist/nginx.conf.dist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ server {
2929
location ~ [^/]\.php(/|$) {
3030
fastcgi_buffers 16 16k;
3131
fastcgi_buffer_size 32k;
32-
fastcgi_pass unix:/var/run/php/php8.4-fpm.sock;
32+
fastcgi_pass unix:/var/run/php/php8.5-fpm.sock;
3333
fastcgi_read_timeout 300;
3434
fastcgi_index index.php;
3535
fastcgi_split_path_info ^(.+\.php)(/.+)$;

mago.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Welcome to Mago!
22
# For full documentation, see https://mago.carthage.software/tools/overview
3-
php-version = "8.4.13"
3+
php-version = "8.5.1"
44

55
[source]
66
paths = ["src/"]

0 commit comments

Comments
 (0)