Skip to content

Commit 5759457

Browse files
authored
Merge pull request #2 from crodg-dev/add-support
Add support to PHP 8.4
2 parents e5aecab + 1080aed commit 5759457

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
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/fix_style.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/test.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.0, 8.1, 8.2, 8.3]
16+
php: [8.2, 8.3, 8.4]
1717

1818
steps:
1919
- name: Checkout code

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"dev"
77
],
88
"require": {
9-
"php": "^8.0"
9+
"php": "^8.2"
1010
},
1111
"homepage": "https://github.com/descom-es/php-dev",
1212
"license": "MIT",
@@ -41,4 +41,4 @@
4141
"suggest": {
4242
"friendsofphp/php-cs-fixer": "Required to apply styles"
4343
}
44-
}
44+
}

0 commit comments

Comments
 (0)