Skip to content

Commit

Permalink
Merge pull request #22 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 942ff89 + 7725384 commit ec317e3
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/php-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
strategy:
fail-fast: false
matrix:
php-versions: ['7.4', '8.0', '8.1']
php-versions: ['7.4', '8.0', '8.1', '8.2']
name: PHP ${{ matrix.php-versions }} tests
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

## 4.0.1

## PHP Support

Support was added for PHP 8.2

## 4.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 @@ -35,11 +35,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 ec317e3

Please sign in to comment.