-
-
Notifications
You must be signed in to change notification settings - Fork 187
/
composer.json
70 lines (70 loc) · 1.87 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": "mailerlite/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/mailerlite/laravel-elasticsearch",
"license": "MIT",
"authors": [
{
"name": "MailerLite",
"email": "[email protected]"
}
],
"require": {
"php": "^7.3|^8.0",
"ext-json": "*",
"elasticsearch/elasticsearch": "^7.11",
"guzzlehttp/psr7": "^1.7|^2.0",
"illuminate/contracts": "^7.0|^8.0|^9.0|^10.0|^11.0",
"illuminate/support": "^7.0|^8.0|^9.0|^10.0|^11.0",
"psr/http-message": "^1.0|^2.0"
},
"require-dev": {
"mockery/mockery": "^1.4.3",
"orchestra/testbench": "^6.45|^7.44|^8.25|^9.3",
"phpunit/phpunit": "^9.4"
},
"suggest": {
"aws/aws-sdk-php": "Required to connect to an Elasticsearch host on AWS (^3.80)"
},
"autoload": {
"psr-4": {
"MailerLite\\LaravelElasticsearch\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"MailerLite\\LaravelElasticsearch\\Tests\\": "tests"
}
},
"scripts": {
"fresh": [
"rm -rf vendor composer.lock",
"composer install"
],
"tests": [
"rm -rf build",
"php vendor/bin/phpunit"
]
},
"extra": {
"laravel": {
"providers": [
"MailerLite\\LaravelElasticsearch\\ServiceProvider"
],
"aliases": {
"Elasticsearch": "MailerLite\\LaravelElasticsearch\\Facade"
}
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true
}
}