Skip to content

Commit

Permalink
Merge pull request #7 from AngryBytes/feat/php82
Browse files Browse the repository at this point in the history
Add PHP 8.2 support
  • Loading branch information
stephank authored Feb 20, 2023
2 parents 6376535 + 7f1330a commit b59ed55
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
strategy:
fail-fast: false
matrix:
php: ['7.4', '8.0', '8.1']
php: ['7.4', '8.0', '8.1', '8.2']
steps:

- name: Checkout
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## 2.0.1

### PHP support

- Added support for PHP `8.2`.

## 2.0.0

### PHP support
Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@
}
},
"require": {
"php": "7.4.* || 8.0.* || 8.1.*"
"php": "7.4.* || 8.0.* || 8.1.* || 8.2.*"
},
"require-dev": {
"phpstan/phpstan": "1.2.0",
"phpunit/phpunit": "9.5.10",
"squizlabs/php_codesniffer": "3.6.2"
"phpstan/phpstan": "1.9.12",
"phpunit/phpunit": "9.5.28",
"squizlabs/php_codesniffer": "3.7.1"
}
}

0 comments on commit b59ed55

Please sign in to comment.