Skip to content

Commit 87d5b38

Browse files
authored
Merge pull request #16 from yamadashy/feature/php84
feat(php): Add support php 8.4
2 parents 3385bd3 + a11bdab commit 87d5b38

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.devcontainer/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM mcr.microsoft.com/vscode/devcontainers/php:8.3
1+
FROM mcr.microsoft.com/vscode/devcontainers/php:8.4
22

33
# PHP memory limit
44
RUN echo "memory_limit=768M" > /usr/local/etc/php/php.ini

.github/workflows/tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
strategy:
1515
matrix:
16-
php-version: ['7.4', '8.0', '8.1', '8.2', '8.3']
16+
php-version: ['7.4', '8.0', '8.1', '8.2', '8.3', '8.4']
1717
steps:
1818
- uses: actions/checkout@v4
1919
- name: Setup PHP
@@ -45,7 +45,7 @@ jobs:
4545
- name: Setup PHP
4646
uses: shivammathur/setup-php@v2
4747
with:
48-
php-version: '8.3'
48+
php-version: '8.4'
4949
- name: Install dependencies
5050
run: composer update --no-interaction --no-progress --ansi
5151
- name: Run static analysis
@@ -67,7 +67,7 @@ jobs:
6767
runs-on: ubuntu-latest
6868
strategy:
6969
matrix:
70-
php-version: ['7.4', '8.0', '8.1', '8.2', '8.3']
70+
php-version: ['7.4', '8.0', '8.1', '8.2', '8.3', '8.4']
7171
dependency-version: [prefer-lowest, prefer-stable]
7272
steps:
7373
- uses: actions/checkout@v4

.tool-versions

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
php 8.3.13
1+
php 8.4.1

0 commit comments

Comments
 (0)