Skip to content

Commit e08bfb4

Browse files
committed
Updated php version to 8.3
1 parent af3ac7d commit e08bfb4

6 files changed

Lines changed: 11 additions & 19 deletions

File tree

.github/workflows/pr.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
strategy:
77
fail-fast: false
88
matrix:
9-
php: ["8.1"]
9+
php: ["8.3"]
1010
name: Validate composer (PHP ${{ matrix.php}})
1111
steps:
1212
- name: Checkout
@@ -56,7 +56,7 @@ jobs:
5656
strategy:
5757
fail-fast: false
5858
matrix:
59-
php: ["8.1"]
59+
php: ["8.3"]
6060
name: Validate Doctrine Schema (PHP ${{ matrix.php}})
6161
services:
6262
mariadb:
@@ -110,7 +110,7 @@ jobs:
110110
strategy:
111111
fail-fast: false
112112
matrix:
113-
php: ["8.1"]
113+
php: ["8.3"]
114114
name: PHP Coding Standards Fixer (PHP ${{ matrix.php }})
115115
steps:
116116
- name: Checkout
@@ -135,7 +135,7 @@ jobs:
135135
restore-keys: ${{ runner.os }}-composer
136136

137137
- name: Install Dependencies
138-
run: composer install -q --no-ansi --no-interaction --no-scripts --no-suggest --no-progress --prefer-dist
138+
run: composer install -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist
139139

140140
- name: php-cs-fixer
141141
run: phpdbg -qrr ./vendor/bin/php-cs-fixer fix --dry-run
@@ -156,7 +156,7 @@ jobs:
156156
strategy:
157157
fail-fast: false
158158
matrix:
159-
php: ["8.1"]
159+
php: ["8.3"]
160160
name: PHP Unit tests (PHP ${{ matrix.php }})
161161
steps:
162162
- name: Checkout
@@ -194,7 +194,7 @@ jobs:
194194
strategy:
195195
fail-fast: false
196196
matrix:
197-
php: ["8.1"]
197+
php: ["8.3"]
198198
steps:
199199
- name: Checkout
200200
uses: actions/checkout@v3

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"license": "MIT",
55
"type": "project",
66
"require": {
7-
"php": ">=8.1",
7+
"php": ">=8.3",
88
"ext-ctype": "*",
99
"ext-iconv": "*",
1010
"api-platform/core": "^3.0",

composer.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docker-compose.server.override.yml

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,8 @@ services:
1212
- ".docker/data/rabbitmq:/var/lib/rabbitmq/mnesia/"
1313

1414
supervisor:
15-
image: itkdev/supervisor-php8.1:alpine
16-
restart: unless-stopped
1715
stop_grace_period: 20s
1816
environment:
1917
- APP_SUPERVISOR_COMMAND=/app/bin/console messenger:consume --env=prod --no-debug --time-limit=900 --failure-limit=1 async
2018
- APP_SUPERVISOR_WORKERS=1
2119
- APP_SUPERVISOR_USER=deploy
22-
networks:
23-
- app
24-
extra_hosts:
25-
- "host.docker.internal:host-gateway"
26-
volumes:
27-
- .:/app

docker-compose.server.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ networks:
88

99
services:
1010
phpfpm:
11-
image: itkdev/php8.2-fpm:alpine
11+
image: itkdev/php8.3-fpm:alpine
1212
restart: unless-stopped
1313
networks:
1414
- app

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ services:
2121
#- ENCRYPT=1 # Uncomment to enable database encryption.
2222

2323
phpfpm:
24-
image: itkdev/php8.2-fpm:latest
24+
image: itkdev/php8.3-fpm:latest
2525
networks:
2626
- app
2727
extra_hosts:

0 commit comments

Comments
 (0)