Skip to content

Commit 105dc78

Browse files
authored
Merge pull request #10 from crodg-dev/add-support
Add support to PHP 8.4
2 parents e972153 + 23c3bf8 commit 105dc78

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
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/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)