Replies: 2 comments 3 replies
-
You have to use different testbench version for Laravel 9:
|
Beta Was this translation helpful? Give feedback.
3 replies
-
Perhaps, you need to add following to your "require-dev": {
"orchestra/testbench": "^7.7|^8.0",
some package has version conflict with Laravel 9/10 so that you need to add something similar to above if other dependencies complaining their conflicts. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
I want to allow users of my package to use it with older laravel 9.* So I want to run tests also for laravel 9.*, but I am not sure how to update
.github/workflows/run-tests.yml
I updated only
laravel: [10.*]
tolaravel: [10.*, 9.*]
but I got this error:I am not sure what else should I change...
Beta Was this translation helpful? Give feedback.
All reactions