forked from babenkoivan/elastic-scout-driver-plus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
64 lines (64 loc) · 1.51 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": "babenkoivan/elastic-scout-driver-plus",
"description": "Extension for Elastic Scout Driver",
"keywords": [
"scout",
"elastic",
"elasticsearch",
"laravel",
"driver",
"php"
],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Ivan Babenko",
"email": "[email protected]"
}
],
"funding": [
{
"type": "buymeacoffee",
"url": "https://www.buymeacoffee.com/ivanbabenko"
},
{
"type": "paypal",
"url": "https://paypal.me/babenkoi"
}
],
"autoload": {
"psr-4": {
"ElasticScoutDriverPlus\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"ElasticScoutDriverPlus\\Tests\\": "tests"
}
},
"require": {
"php": "^7.2 || ^8.0",
"babenkoivan/elastic-adapter": "^1.13"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"orchestra/testbench": "^6.12",
"babenkoivan/elastic-migrations": "^1.4",
"babenkoivan/elastic-scout-driver": "^1.3",
"laravel/scout": "^8.0",
"friendsofphp/php-cs-fixer": "^2.16",
"phpstan/phpstan": "^0.12.32",
"laravel/legacy-factories": "^1.1"
},
"config": {
"bin-dir": "bin"
},
"extra": {
"laravel": {
"providers": [
"ElasticScoutDriverPlus\\ServiceProvider"
]
}
}
}