Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ensure php 8.2 compatibility #528

Merged
merged 12 commits into from Dec 8, 2022
1 change: 1 addition & 0 deletions .github/workflows/tests.yml
Expand Up @@ -21,6 +21,7 @@ jobs:
- "7.4"
- "8.0"
- "8.1"
- "8.2"

runs-on: "${{ matrix.operating-system }}"

Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Expand Up @@ -3,6 +3,7 @@
## [Unreleased](https://github.com/FakerPHP/Faker/compare/v1.20.0...main)

- Dropped support for PHP 7.1, 7.2, and 7.3 (#543)
- Added support for PHP 8.2 (#528)

## [2022-07-20, v1.20.0](https://github.com/FakerPHP/Faker/compare/v1.19.0..v1.20.0)

Expand Down
3 changes: 3 additions & 0 deletions phpunit.xml.dist
Expand Up @@ -9,6 +9,9 @@
columns="max"
verbose="true"
>
<php>
<env name="SYMFONY_DEPRECATIONS_HELPER" value="max[self]=605"/>
</php>
<testsuites>
<testsuite name="Faker Test Suite">
<directory suffix="Test.php">./test/Faker</directory>
Expand Down