-
Notifications
You must be signed in to change notification settings - Fork 6
#91. Changed finder constraint #92
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
Conversation
db8e121
to
dd54508
Compare
dd54508
to
d314e0c
Compare
@@ -3,7 +3,7 @@ jobs: | |||
# Install all dependencies and run check tasks. | |||
build_and_test: | |||
docker: | |||
- image: circleci/php:8.0-cli-node | |||
- image: cimg/php:8.1 |
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.
Seems we just needed to update to newer PHP as I think it was here in Finder library where it failed
$this->dirs = array_merge($this->dirs, ...$resolvedDirs);
circleci/php is deprecated so moving to cimg/php ( https://circleci.com/developer/images/image/cimg/php )
There was no cli tag and node is not needed. At least I don't know why it would be needed.
@@ -189,7 +189,7 @@ public function testHandlesParallelProcess(): void { | |||
$this->process | |||
->expects($this->exactly(2)) | |||
->method('isRunning') | |||
->willReturnOnConsecutiveCalls([TRUE, FALSE]); | |||
->willReturnOnConsecutiveCalls(TRUE, 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.
|
Fix for D10 and symfony/finder version #91