-
Notifications
You must be signed in to change notification settings - Fork 61
/
composer.json
executable file
·53 lines (53 loc) · 1.46 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
{
"name": "jeroen-g/explorer",
"description": "Next-gen Elasticsearch driver for Laravel Scout.",
"license": "MIT",
"authors": [
{
"name": "Jeroen",
"email": "jeroengjeroeng@gmail.com",
"homepage": "https://jeroeng.dev"
}
],
"homepage": "https://jeroen-g.github.io/Explorer/",
"keywords": ["Laravel", "Scout", "Elasticsearch", "Elastic", "search", "Explorer"],
"require": {
"php": "8.0.*||8.1.*||8.2.*||8.3.*",
"elasticsearch/elasticsearch": "^7.16",
"illuminate/support": "^9.0||^10.0||^11.0",
"laravel/scout": "^9.0||^10.0||^11.0",
"webmozart/assert": "^1.10",
"psr/log": "^1|^2|^3"
},
"require-dev": {
"phpunit/phpunit": "~9.0",
"mockery/mockery": "^1.5",
"infection/infection": "^0.26",
"symplify/easy-coding-standard": "^9.0",
"nunomaduro/larastan": "^2.5",
"phpstan/phpstan-mockery": "^1.1",
"orchestra/testbench": "*"
},
"autoload": {
"psr-4": {
"JeroenG\\Explorer\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"JeroenG\\Explorer\\Tests\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"JeroenG\\Explorer\\ExplorerServiceProvider"
]
}
},
"config": {
"allow-plugins": {
"infection/extension-installer": false
}
}
}