-
Notifications
You must be signed in to change notification settings - Fork 8
/
composer.json
37 lines (37 loc) · 1.09 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
{
"name": "elegisandi/aws-elasticsearch-laravel",
"description": "AWS Elasticsearch Service for Laravel/Lumen",
"keywords": ["elegisandi", "aws", "elasticsearch", "laravel", "aws-elasticsearch-laravel"],
"homepage": "https://github.com/elegisandi/aws-elasticsearch-laravel",
"type": "library",
"require": {
"php": ">=7.0",
"aws/aws-sdk-php": "~3.0",
"elasticsearch/elasticsearch": "~6.0",
"nesbot/carbon": "~1.20"
},
"license": "MIT",
"authors": [
{
"name": "Elegi Sandi",
"email": "elegisandi@gmail.com",
"role": "Developer"
}
],
"minimum-stability": "dev",
"autoload": {
"psr-4": {
"elegisandi\\AWSElasticsearchService\\": "src"
}
},
"extra": {
"laravel": {
"providers": [
"elegisandi\\AWSElasticsearchService\\ElasticSearchServiceProvider"
],
"aliases": {
"ElasticSearch": "elegisandi\\AWSElasticsearchService\\ElasticSearchFacade"
}
}
}
}