-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
39 lines (39 loc) · 960 Bytes
/
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
{
"name": "boxed-code/laravel-scout-database",
"description": "Generic database driver for laravel scout.",
"keywords": ["laravel", "scout", "database", "mysql", "sqlite"],
"license": "MIT",
"authors": [
{
"name": "Oliver Green",
"email": "[email protected]"
}
],
"require": {
"php": "^7.2|^8.0|^8.2",
"laravel/scout": "^8.0|^9.0|^10.0"
},
"require-dev": {
"mockery/mockery": "~1.3.3",
"phpunit/phpunit": "^8.0|^9.3"
},
"autoload": {
"psr-4": {
"BoxedCode\\Laravel\\Scout\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"BoxedCode\\Laravel\\Scout\\DatabaseEngineServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}