Skip to content

Commit 8eecb28

Browse files
authored
feat(php): bump minumum php version to 8.3 (#208)
1 parent dc9b32b commit 8eecb28

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

.github/workflows/ci.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@ jobs:
2323
- "locked"
2424
- "highest"
2525
php-version:
26-
- "8.2"
2726
- "8.3"
27+
- "8.4"
2828
include:
29-
- php-version: "8.2"
30-
php-image: "public.ecr.aws/docker/library/php:8.2-cli-alpine"
3129
- php-version: "8.3"
3230
php-image: "public.ecr.aws/docker/library/php:8.3-cli-alpine"
31+
- php-version: "8.4"
32+
php-image: "public.ecr.aws/docker/library/php:8.4-cli-alpine"
3333

3434
steps:
3535
- name: "Install OS dependencies"
@@ -58,7 +58,7 @@ jobs:
5858
run: "chown -R 1000:1000 ."
5959

6060
- name: "Update composer platform version"
61-
if: ${{ matrix.dependencies != 'locked' && matrix.php-version != '8.2' }}
61+
if: ${{ matrix.dependencies != 'locked' && matrix.php-version != '8.3' }}
6262
run: "su-exec 1000 composer config platform.php ${{ matrix.php-version }}"
6363

6464
- name: "Install composer dependencies"
@@ -73,7 +73,7 @@ jobs:
7373
run: "su-exec 1000 composer licenses:check"
7474

7575
- name: "Run coding style"
76-
if: ${{ matrix.dependencies == 'locked' && matrix.php-version == '8.2' }}
76+
if: ${{ matrix.dependencies == 'locked' && matrix.php-version == '8.3' }}
7777
run: "su-exec 1000 composer code-style:check"
7878

7979
- name: "Run PHPStan"

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
}
1111
],
1212
"require": {
13-
"php": "^8.2",
13+
"php": "^8.3",
1414
"ramsey/uuid": "^4.7"
1515
},
1616
"require-dev": {
@@ -43,7 +43,7 @@
4343
"ergebnis/composer-normalize": true
4444
},
4545
"platform": {
46-
"php": "8.2"
46+
"php": "8.3"
4747
},
4848
"sort-packages": true
4949
},

composer.lock

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

0 commit comments

Comments
 (0)