-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
58 lines (58 loc) · 1.31 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
48
49
50
51
52
53
54
55
56
57
58
{
"name":"shaburov/laravel-mysql-index-hints-scope",
"description":"Index Hints for laravel https://dev.mysql.com/doc/refman/5.7/en/index-hints.html",
"keywords":[
"hints",
"laravel",
"laravel mysql",
"database hints",
"database",
"force index",
"use index",
"ignore index",
"indexes"
],
"license":"MIT",
"authors":[
{
"name":"Ivan Shaburov",
"email":"[email protected]"
}
],
"minimum-stability":"stable",
"require":{
"php":"^8.0|^8.1|^8.2|^8.3|^8.4",
"illuminate/database": "^v11.0",
"illuminate/support": "^v11.0",
"doctrine/dbal" : "^3.0"
},
"autoload":{
"psr-4":{
"IndexHints\\":"src/"
}
},
"autoload-dev":{
"psr-4":{
"Tests\\":"tests/"
}
},
"scripts":{
"test":"phpunit"
},
"config":{
"process-timeout":0,
"sort-packages":true
},
"extra":{
"laravel":{
"providers":[
"IndexHints\\IndexHintsServiceProvider"
]
}
},
"require-dev":{
"laravel/framework":"^v11.0",
"phpunit/phpunit":"^9.3|^10.0|^11.0",
"orchestra/testbench":"^6.24.1|^7.4|^v9.2"
}
}