-
Notifications
You must be signed in to change notification settings - Fork 9
/
composer.json
64 lines (64 loc) · 1.65 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
59
60
61
62
63
64
{
"name": "dwarfdk/laravel-meilitools",
"description": "Additional tools for Laravel Scout integration with MeiliSearch",
"license": "MIT",
"keywords": [
"laravel",
"scout",
"meili",
"meilisearch",
"meilitools"
],
"type": "library",
"authors": [
{
"name": "Frederik Sauer",
"email": "fsa@dwarf.dk"
}
],
"require": {
"php": "^7.4|^8.0",
"illuminate/validation": "^8.0|^9.0|^10.0",
"meilisearch/meilisearch-php": ">=0.24.0 <=0.26.0"
},
"require-dev": {
"brick/varexporter": "^0.3.5",
"guzzlehttp/guzzle": "^7.4",
"http-interop/http-factory-guzzle": "^1.2",
"illuminate/support": "^8.69|^9.0|^10.0",
"laravel/scout": "^9.0",
"nesbot/carbon": "^2.63",
"orchestra/testbench": "^6.26|^7.0|^8.0",
"php-http/discovery": "^1.12",
"phpunit/phpunit": "^9.4"
},
"config": {
"allow-plugins": {
"php-http/discovery": false
}
},
"autoload": {
"psr-4": {
"Dwarf\\MeiliTools\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Dwarf\\MeiliTools\\Tests\\": "tests"
}
},
"scripts": {
"test": "phpunit",
"test:coverage": "phpdbg -qrr vendor/bin/phpunit --coverage-html tests/_reports"
},
"extra": {
"laravel": {
"providers": [
"Dwarf\\MeiliTools\\MeiliToolsServiceProvider"
]
}
},
"suggest": {
"brick/varexporter": "Improves readability of console output for index details"
}
}