Skip to content

Commit

Permalink
Merge pull request #53 from j-schumann/main
Browse files Browse the repository at this point in the history
Support PHP 8.5
  • Loading branch information
jakzal authored Dec 2, 2024
2 parents e52162f + 7555620 commit db46362
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,15 @@ on:
types: [created]
schedule:
- cron: '0 4 * * *'
workflow_dispatch:

jobs:
tests:
runs-on: ubuntu-latest
name: Build and test
strategy:
matrix:
php: [8.1, 8.2, 8.3, 8.4]
php: [8.1, 8.2, 8.3, 8.4, 8.5]
deps: [high]
include:
- php: 8.1
Expand Down Expand Up @@ -56,7 +57,7 @@ jobs:
needs: tests
strategy:
matrix:
php: [8.1, 8.2, 8.3, 8.4]
php: [8.1, 8.2, 8.3, 8.4, 8.5]
steps:
- uses: actions/checkout@v4

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
}
],
"require": {
"php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0",
"php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0 || ~8.5.0",
"phpunit/phpunit": "^10.0 || ^11.0"
},
"autoload": {
Expand Down

0 comments on commit db46362

Please sign in to comment.