-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
71 lines (71 loc) · 1.78 KB
/
Copy pathcomposer.json
File metadata and controls
71 lines (71 loc) · 1.78 KB
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
{
"name": "jenky/elastify",
"type": "library",
"description": "Powerful Elasticsearch ODM for Laravel",
"keywords": [
"jenky",
"laravel",
"elasticsearch",
"laravel-elasticsearch"
],
"homepage": "https://github.com/jenky/elastify",
"license": "MIT",
"authors": [
{
"name": "Lynh",
"email": "contact@lynh.me",
"homepage": "https://github.com/jenky",
"role": "Developer"
}
],
"suggest": {
"aws/aws-sdk-php": "Required to connect to an Elasticsearch host on AWS (^3.80)"
},
"require": {
"php" : "^7.2",
"elasticsearch/elasticsearch": "^6.5|^7.5",
"illuminate/config": "^6.0|^7.0",
"illuminate/container": "^6.0|^7.0",
"illuminate/pagination": "^6.0|^7.0",
"ongr/elasticsearch-dsl": "^6.0|^7.0"
},
"require-dev": {
"orchestra/testbench": "^4.0|^5.0",
"phpunit/phpunit": "^7.0|^8.0|^9.0",
"squizlabs/php_codesniffer": "^3.0"
},
"autoload": {
"psr-4": {
"Jenky\\Elastify\\": "src"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Jenky\\Elastify\\Tests\\": "tests"
}
},
"scripts": {
"test": "phpunit",
"check-style": "phpcs src tests",
"fix-style": "phpcbf src tests"
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
},
"laravel": {
"providers": [
"Jenky\\Elastify\\ElastifyServiceProvider"
],
"aliases": {
"ES": "Jenky\\Elastify\\Facades\\ES"
}
}
},
"config": {
"sort-packages": true
}
}