-
-
Notifications
You must be signed in to change notification settings - Fork 147
do not call setAccessible() on PHP 8.1+ #1931
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -58,7 +58,7 @@ jobs: | |
| sed -i -re 's/"require": \{/"repositories": [{"type": "path","url": "..\/..\/Core", "options": {"versions": {"async-aws\/core": "dev-master"}}, "canonical": ${{matrix.strategy != 'lowest' && 'true' || 'false'}} }],"require": \{/' composer.json | ||
| composer config minimum-stability dev | ||
| composer config prefer-stable true | ||
| composer require --dev --no-update symfony/phpunit-bridge | ||
| composer require --dev --no-update symfony/phpunit-bridge:^7.3.2 | ||
| cat composer.json | ||
|
|
||
| echo ::endgroup:: | ||
|
|
@@ -93,7 +93,7 @@ jobs: | |
| cd "$CURRENT_DIR/$COMPONENT" | ||
|
|
||
| localExit=0 | ||
| composer require symfony/phpunit-bridge --no-update --no-install | ||
| composer require symfony/phpunit-bridge:^7.3.2@dev --dev --no-update --no-install | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. can we remove the
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. only once 7.3.2 has been tagged, the minimum stability setting to |
||
| composer update --no-interaction --no-scripts --prefer-dist --optimize-autoloader ${{ matrix.strategy == 'lowest' && '--prefer-lowest' || '' }} $COMPOSER_OPTIONS || localExit=1 | ||
| ./vendor/bin/simple-phpunit install | ||
| echo ::endgroup:: | ||
|
|
||
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.
we need symfony/symfony#61304