-
-
Notifications
You must be signed in to change notification settings - Fork 612
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
fix getIterator compatible with php 8.1 #966
Conversation
e8ddd5d
to
ac542a9
Compare
ac542a9
to
bed4848
Compare
.github/workflows/ci.yml
Outdated
- php: 8.1 | ||
symfony: 6.0.*@dev | ||
composer-flags: '' | ||
can-fail: false |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm reverting this changes as the CI is updated in #968.
composer.json
Outdated
@@ -37,7 +37,7 @@ | |||
} | |||
], | |||
"require": { | |||
"php": ">=7.1", | |||
"php": "^7.1 || ^8.0", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm going to revert this as I prefer keeping it open.
phpunit.xml.dist
Outdated
@@ -28,6 +28,6 @@ | |||
</filter> | |||
|
|||
<php> | |||
<env name="SYMFONY_DEPRECATIONS_HELPER" value="max[self]=0&max[direct]=27"></env> | |||
<env name="SYMFONY_DEPRECATIONS_HELPER" value="max[self]=17&max[direct]=27"></env> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm reverting this one as it should not be needed (deprecations should be fixed instead).
Thanks for fixing this bug @eerison. |
No description provided.