Skip to content
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

Use orchestra/testbench-core as testbench should only be used for Package development #359

Merged
merged 4 commits into from
Mar 12, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"illuminate/support": "^10.48 || ^11.0",
"illuminate/view": "^10.48 || ^11.0",
"nikic/php-parser": "^4.18 || ^5.0",
"orchestra/testbench": "^8.21 || ^9.0",
"orchestra/testbench-core": "^8.22 || ^9.0",
"symfony/console": "^6.0 || ^7.0",
"vimeo/psalm": "^5.20"
},
Expand All @@ -34,6 +34,7 @@
"codeception/module-cli": "^2.0",
"codeception/module-filesystem": "^3.0",
"codeception/module-phpbrowser": "^3.0",
"laravel/framework": "^9.48 || ^10.0",
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this package is made to support both Laravel and Lumen. I'm not sure that require Laravel is a good idea.

Copy link
Contributor Author

@crynobone crynobone Nov 23, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is only require-dev deps. Previously was provided in require via orchestra/testbench.

So this actually improves support for Lumen.

"phpunit/phpunit": "^9.6 || ^10.0",
"ramsey/collection": "^1.3",
"slevomat/coding-standard": "^8.8",
Expand Down
Loading