Skip to content

Commit

Permalink
PHP 8.2 support (#724)
Browse files Browse the repository at this point in the history
* add support for php 8.2

* add support for php 8.2 in ci
  • Loading branch information
frederikbosch authored Dec 15, 2022
1 parent 0c00afe commit ae78004
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,10 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
php: ['8.0', '8.1']
php:
- '8.0'
- '8.1'
- '8.2'

steps:
- name: Set up PHP
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
],
"homepage": "http://moneyphp.org",
"require": {
"php": "~8.0.0 || ~8.1.0",
"php": "~8.0.0 || ~8.1.0 || ~8.2.0",
"ext-bcmath": "*",
"ext-filter": "*",
"ext-json": "*"
Expand Down

0 comments on commit ae78004

Please sign in to comment.