-
Notifications
You must be signed in to change notification settings - Fork 9
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
Add support for symfony 7 and doctrine collections 2 #49
Add support for symfony 7 and doctrine collections 2 #49
Conversation
$this->taskExecutionRepository->save($executions[0])->willReturnArgument(0)->shouldBeCalledTimes(3); | ||
$this->taskExecutionRepository->save($executions[1])->willReturnArgument(0)->shouldBeCalledTimes(3); |
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.
CI failing since: #47
$this->taskExecutionRepository->save($executions[0])->willReturnArgument(0)->shouldBeCalledTimes(3); | ||
$this->taskExecutionRepository->save($executions[1])->willReturnArgument(0)->shouldBeCalledTimes(3); |
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.
CI failing since: #47
0df2d03
to
ff423c1
Compare
4aee689
to
56c29a6
Compare
coverage: 'true' | ||
- php-version: '8.4' | ||
composer-flags: '--ignore-platform-reqs' |
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.
can be removed as soon as prophecy supports 8.4 officially: https://github.com/phpspec/prophecy/blob/f9e07be0992e7bf1cad210829055b99318df142f/composer.json#L21 but mostly it takes some time.
This should add support for the latest symfony and latest doctrine collections version.
It also updates dev dependencies to PHPUnit 11 and also tests PHP 8.4.