Skip to content

Commit 8a0b3b6

Browse files
committed
chore: depend on any laravel/framework but keep illuminate/database constraints (references #107)
The version constraint can't be added to laravel/framework because the tests are rewriting that dependency to install specific versions of Laravel. Allowing any Laravel version but constraining illuminate/database is an easy workaround that doesn't require rewriting the test workflow.
1 parent 362de7b commit 8a0b3b6

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

composer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@
1616
"require": {
1717
"php": "^8.0",
1818
"doctrine/dbal": "^2.6|^3.5|^4.0",
19-
"laravel/framework": "^6.0|^7.0|^8.79|^9.0|^10.0|^11.0|^12.0",
19+
"laravel/framework": "*",
20+
"illuminate/database": "^6.0|^7.0|^8.79|^9.0|^10.0|^11.0|^12.0",
2021
"spatie/regex": "^2.0|^3.0"
2122
},
2223
"require-dev": {

0 commit comments

Comments
 (0)