forked from matchory/elasticsearch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
93 lines (93 loc) · 2.31 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "hamdallah90/elasticsearch",
"description": "The missing elasticsearch ORM for Laravel!",
"keywords": [
"php",
"caching",
"search-engine",
"elasticsearch",
"laravel",
"eloquent",
"orm",
"model",
"lumen",
"indexing",
"indexing",
"query-builder",
"scout"
],
"license": "MIT",
"type": "package",
"homepage": "https://www.matchory.com",
"support": {
"issues": "https://github.com/matchory/elasticsearch/issues"
},
"authors": [
{
"name": "Moritz Friedrich",
"homepage": "https://www.moritzfriedrich.com",
"email": "[email protected]"
},
{
"name": "Basem Khirat",
"homepage": "http://basemkhirat.com",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Matchory\\Elasticsearch\\": "src/"
},
"files": [
"src/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"Matchory\\Elasticsearch\\Tests\\": "tests/"
}
},
"require": {
"php": ">=8.1",
"ext-json": "*",
"elasticsearch/elasticsearch": "^8.5",
"illuminate/pagination": "*",
"illuminate/support": "*",
"monolog/monolog": "*",
"symfony/var-dumper": "*"
},
"require-dev": {
"illuminate/contracts": "^9.5",
"illuminate/database": "^9.5",
"jetbrains/phpstorm-attributes": "^1.0",
"laravel/lumen-framework": "^9.0",
"laravel/scout": "^10.0",
"orchestra/testbench": "^7.2",
"phpunit/phpunit": "^9.5",
"vimeo/psalm": "^5.0"
},
"prefer-stable": true,
"extra": {
"laravel": {
"providers": [
"Matchory\\Elasticsearch\\ElasticsearchServiceProvider"
],
"aliases": {
"ES": "Matchory\\Elasticsearch\\Facades\\ES"
}
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"composer/package-versions-deprecated": true
}
},
"replace": {
"basemkhirat/elasticsearch": "*"
},
"scripts": {
"analyze": "psalm",
"test": "phpunit"
}
}