forked from mailerlite/laravel-elasticsearch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
74 lines (74 loc) · 1.99 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
71
72
73
74
{
"name": "gnahotelsolutions/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/gnahotelsolutions/laravel-elasticsearch",
"license": "MIT",
"authors": [
{
"name": "Colin Viebrock",
"email": "colin@viebrock.ca"
},
{
"name": "Adrià Canal",
"email": "acanal@gnahs.com"
}
],
"require": {
"php": "^7.3|^8.0|^8.1",
"ext-json": "*",
"elasticsearch/elasticsearch": "^7.11",
"guzzlehttp/psr7": "^2.0",
"illuminate/contracts": "^8.0|^9.0|^10",
"illuminate/support": "^8.0|^9.0|^10",
"psr/http-message": "^1.0"
},
"require-dev": {
"limedeck/phpunit-detailed-printer": "^6.0",
"mockery/mockery": "^1.4.3",
"orchestra/testbench": "^6.5",
"phpunit/phpunit": "^9.4"
},
"suggest": {
"aws/aws-sdk-php": "Required to connect to an Elasticsearch host on AWS (^3.80)"
},
"autoload": {
"psr-4": {
"GNAHotelSolutions\\LaravelElasticsearch\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"GNAHotelSolutions\\LaravelElasticsearch\\Tests\\": "tests"
}
},
"scripts": {
"fresh": [
"rm -rf vendor composer.lock",
"composer install"
],
"tests": [
"php vendor/bin/phpunit"
]
},
"extra": {
"laravel": {
"providers": [
"GNAHotelSolutions\\LaravelElasticsearch\\ServiceProvider"
],
"aliases": {
"Elasticsearch": "GNAHotelSolutions\\LaravelElasticsearch\\Facade"
}
}
},
"minimum-stability": "stable",
"prefer-stable": true,
"config": {
"sort-packages": true
}
}