forked from mailerlite/laravel-elasticsearch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
70 lines (70 loc) · 1.85 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
65
66
67
68
69
70
{
"name": "cviebrock/laravel-elasticsearch",
"description": "An easy way to use the official PHP ElasticSearch client in your Laravel applications.",
"keywords": [
"laravel",
"elasticsearch",
"search",
"client"
],
"homepage": "https://github.com/cviebrock/laravel-elasticsearch",
"license": "MIT",
"authors": [
{
"name": "Colin Viebrock",
"email": "[email protected]"
}
],
"require": {
"php": "^7.3|^8.0",
"ext-json": "*",
"elasticsearch/elasticsearch": "^7.11",
"guzzlehttp/psr7": "^1.7",
"illuminate/contracts": "^7.0|^8.0|^9.0",
"illuminate/support": "^7.0|^8.0|^9.0",
"psr/http-message": "^1.0"
},
"require-dev": {
"limedeck/phpunit-detailed-printer": "^6.0",
"mockery/mockery": "^1.4.3",
"orchestra/testbench": "^6.5|^7.0",
"phpunit/phpunit": "^9.4"
},
"suggest": {
"aws/aws-sdk-php": "Required to connect to an Elasticsearch host on AWS (^3.80)"
},
"autoload": {
"psr-4": {
"Cviebrock\\LaravelElasticsearch\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Cviebrock\\LaravelElasticsearch\\Tests\\": "tests"
}
},
"scripts": {
"fresh": [
"rm -rf vendor composer.lock",
"composer install"
],
"tests": [
"php vendor/bin/phpunit"
]
},
"extra": {
"laravel": {
"providers": [
"Cviebrock\\LaravelElasticsearch\\ServiceProvider"
],
"aliases": {
"Elasticsearch": "Cviebrock\\LaravelElasticsearch\\Facade"
}
}
},
"minimum-stability": "stable",
"prefer-stable": true,
"config": {
"sort-packages": true
}
}