Skip to content

Commit 64b3b16

Browse files
authored
Merge pull request #3 from IsmaelR04/add-support-for-php8.4
Add support for php 8.4
2 parents 24d992b + 5a42dea commit 64b3b16

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

.github/workflows/analyze.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.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
@@ -10,7 +10,7 @@
1010
}
1111
],
1212
"require": {
13-
"php": "^8.1",
13+
"php": "^8.2",
1414
"aws/aws-php-sns-message-validator": "^1.1",
1515
"illuminate/config": "^9.0|^10.0|^11.0",
1616
"illuminate/http": "^9.0|^10.0|^11.0",
@@ -50,4 +50,4 @@
5050
},
5151
"minimum-stability": "dev",
5252
"prefer-stable": true
53-
}
53+
}

0 commit comments

Comments
 (0)