Skip to content

Commit 67a214c

Browse files
authored
Merge pull request #38 from palpalani/support-php84
Test PHP 8.4
2 parents a7bf61f + 5628aa0 commit 67a214c

File tree

4 files changed

+9
-7
lines changed

4 files changed

+9
-7
lines changed

Diff for: .github/workflows/code-coverage.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- name: Setup PHP
1616
uses: shivammathur/setup-php@v2
1717
with:
18-
php-version: '7.4'
18+
php-version: '8.3'
1919

2020
- name: Install Dependencies
2121
run: composer install

Diff for: .github/workflows/run-tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
fail-fast: true
1010
matrix:
1111
os: [ubuntu-latest]
12-
php: [8.3, 8.2]
12+
php: [8.4, 8.3, 8.2]
1313
laravel: [10.*, 11.*]
1414
stability: [prefer-lowest, prefer-stable]
1515
include:

Diff for: composer.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@
2222
}
2323
],
2424
"require": {
25-
"php": "^8.1",
26-
"illuminate/contracts": "^8.0|^9.0|^10.0|^11.0",
25+
"php": "^8.2",
26+
"illuminate/contracts": "^9.0|^10.0|^11.0",
2727
"illuminate/support": "^9.0|^10.0|^11.0",
28-
"illuminate/queue": "^8.0|^9.0|^10.0|^11.0",
29-
"illuminate/bus": "^8.0|^9.0|^10.0|^11.0",
28+
"illuminate/queue": "^9.0|^10.0|^11.0",
29+
"illuminate/bus": "^9.0|^10.0|^11.0",
3030
"aws/aws-sdk-php": "^3.250"
3131
},
3232
"require-dev": {
@@ -75,4 +75,4 @@
7575
"url": "https://github.com/sponsors/palpalani"
7676
}
7777
]
78-
}
78+
}

Diff for: pint.json

+2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@
33
"rules": {
44
"@PER-CS": true,
55
"@PER-CS:risky": true,
6+
"@PHP81Migration": true,
67
"@PHP82Migration": true,
8+
"@PHP83Migration": true,
79
"simplified_null_return": true,
810
"braces": false,
911
"new_with_braces": {

0 commit comments

Comments
 (0)