forked from basemkhirat/elasticsearch
-
Notifications
You must be signed in to change notification settings - Fork 13
/
composer.json
91 lines (91 loc) · 2.38 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
{
"name": "matchory/elasticsearch",
"description": "The missing elasticsearch ORM for Laravel!",
"keywords": [
"php",
"caching",
"search-engine",
"elasticsearch",
"laravel",
"eloquent",
"orm",
"model",
"lumen",
"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/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Matchory\\Elasticsearch\\Tests\\": "tests/"
}
},
"require": {
"php": "^8.3",
"ext-json": "*",
"elasticsearch/elasticsearch": "^7",
"illuminate/pagination": "^9|^10|^11",
"illuminate/support": "^9|^10|^11",
"monolog/monolog": "*",
"symfony/var-dumper": "*"
},
"require-dev": {
"illuminate/contracts": "^9|^10|^11",
"illuminate/database": "^9|^10|^11",
"jetbrains/phpstorm-attributes": "^1.0",
"laravel/lumen-framework": "^9|^10|^11",
"laravel/scout": "^9|^10|^11",
"matchory/laravel-server-timing": "^1.1",
"orchestra/testbench": "*",
"phpunit/phpunit": "^9.3",
"sentry/sentry-laravel": "^2|^3",
"phpstan/phpstan": "^1.11"
},
"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,
"php-http/discovery": true
}
},
"replace": {
"basemkhirat/elasticsearch": "*"
}
}