This repository has been archived by the owner on Nov 21, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcomposer.json
47 lines (47 loc) · 1.5 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "mpyw/eloquent-has-by-non-dependent-subquery",
"description": "Convert has() and whereHas() constraints to non-dependent subqueries.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "mpyw",
"email": "ryosuke_i_628@yahoo.co.jp"
}
],
"keywords": ["laravel", "eloquent", "has", "whereHas", "dependent", "laravel", "illuminate", "database", "query", "builder", "macro"],
"autoload": {
"psr-4": {
"Mpyw\\EloquentHasByNonDependentSubquery\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Mpyw\\EloquentHasByNonDependentSubquery\\Tests\\": "tests/"
}
},
"require": {
"php": "^7.3 || ^8.0",
"illuminate/database": "^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0",
"illuminate/support": "^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0"
},
"require-dev": {
"orchestra/testbench": "*",
"orchestra/testbench-core": "^4.9 || ^5.9 || >=6.6",
"phpunit/phpunit": ">=9.5",
"nilportugues/sql-query-formatter": "^1.2.2",
"awobaz/compoships": "^2.0.4"
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"laravel": {
"providers": [
"Mpyw\\EloquentHasByNonDependentSubquery\\EloquentHasByNonDependentSubqueryServiceProvider"
]
}
},
"suggest": {
"mpyw/eloquent-has-by-join": "Provides simple JOIN queries that do not depend optimizers"
}
}