Skip to content

Commit db46362

Browse files
authored
Merge pull request #53 from j-schumann/main
Support PHP 8.5
2 parents e52162f + 7555620 commit db46362

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,15 @@ on:
88
types: [created]
99
schedule:
1010
- cron: '0 4 * * *'
11+
workflow_dispatch:
1112

1213
jobs:
1314
tests:
1415
runs-on: ubuntu-latest
1516
name: Build and test
1617
strategy:
1718
matrix:
18-
php: [8.1, 8.2, 8.3, 8.4]
19+
php: [8.1, 8.2, 8.3, 8.4, 8.5]
1920
deps: [high]
2021
include:
2122
- php: 8.1
@@ -56,7 +57,7 @@ jobs:
5657
needs: tests
5758
strategy:
5859
matrix:
59-
php: [8.1, 8.2, 8.3, 8.4]
60+
php: [8.1, 8.2, 8.3, 8.4, 8.5]
6061
steps:
6162
- uses: actions/checkout@v4
6263

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
}
1111
],
1212
"require": {
13-
"php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0",
13+
"php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0 || ~8.5.0",
1414
"phpunit/phpunit": "^10.0 || ^11.0"
1515
},
1616
"autoload": {

0 commit comments

Comments
 (0)