Skip to content

Commit 59d9266

Browse files
committed
Add support to PHP 8.4
1 parent e972153 commit 59d9266

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/analyse.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,16 +17,16 @@ jobs:
1717
- name: Setup PHP
1818
uses: shivammathur/setup-php@v2
1919
with:
20-
php-version: 8.3
20+
php-version: 8.4
2121

2222
- name: Cache Composer packages
2323
id: composer-cache
2424
uses: actions/cache@v4
2525
with:
2626
path: vendor
27-
key: ${{ runner.os }}-php-8.3-${{ hashFiles('**/composer.json') }}
27+
key: ${{ runner.os }}-php-8.4-${{ hashFiles('**/composer.json') }}
2828
restore-keys: |
29-
${{ runner.os }}-php-8.3-
29+
${{ runner.os }}-php-8.4-
3030
3131
- name: Install dependencies
3232
if: steps.composer-cache.outputs.cache-hit != 'true'

.github/workflows/style-fix.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,16 +15,16 @@ jobs:
1515
- name: Setup PHP
1616
uses: shivammathur/setup-php@v2
1717
with:
18-
php-version: 8.3
18+
php-version: 8.4
1919

2020
- name: Cache Composer packages
2121
id: composer-cache
2222
uses: actions/cache@v4
2323
with:
2424
path: vendor
25-
key: ${{ runner.os }}-php-8.3-${{ hashFiles('**/composer.json') }}
25+
key: ${{ runner.os }}-php-8.4-${{ hashFiles('**/composer.json') }}
2626
restore-keys: |
27-
${{ runner.os }}-php-8.3-
27+
${{ runner.os }}-php-8.4-
2828
2929
- name: Install dependencies
3030
if: steps.composer-cache.outputs.cache-hit != 'true'

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
strategy:
1414
fail-fast: true
1515
matrix:
16-
php: [8.2, 8.3]
16+
php: [8.2, 8.3, 8.4]
1717

1818
steps:
1919
- name: Checkout code

0 commit comments

Comments
 (0)