Skip to content

Commit 2eae180

Browse files
authored
Support for PHP 8.4 (#41)
1 parent 2dc4df7 commit 2eae180

File tree

2 files changed

+4
-7
lines changed

2 files changed

+4
-7
lines changed

.github/workflows/run-tests.yml

+2-5
Original file line numberDiff line numberDiff line change
@@ -11,17 +11,14 @@ jobs:
1111
strategy:
1212
fail-fast: true
1313
matrix:
14-
php: [8.3, 8.2, 8.1]
15-
laravel: ['10.*', '11.*']
14+
php: [8.4, 8.3, 8.2]
15+
laravel: ["10.*", "11.*"]
1616
dependency-version: [prefer-lowest, prefer-stable]
1717
include:
1818
- laravel: 10.*
1919
testbench: 8.*
2020
- laravel: 11.*
2121
testbench: 9.*
22-
exclude:
23-
- laravel: 11.*
24-
php: 8.1
2522

2623
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }}
2724

composer.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
}
1818
],
1919
"require": {
20-
"php": "^8.1 || ^8.2 || ^8.3",
20+
"php": "^8.2 || ^8.3 || ^8.4",
2121
"ext-openssl": "*",
2222
"egulias/email-validator": "^3.1 || ^4.0",
2323
"guzzlehttp/guzzle": "^7.2",
@@ -57,4 +57,4 @@
5757
}
5858
}
5959
}
60-
}
60+
}

0 commit comments

Comments
 (0)