-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
50 lines (50 loc) · 1.27 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
{
"name": "thehome/statamic-elasticsearch",
"license": "proprietary",
"description": "Elasticsearch driver for Statamic",
"keywords": [
"Statamic",
"Elasticsearch"
],
"homepage": "https://www.thehome.dk",
"type": "statamic-addon",
"require": {
"elasticsearch/elasticsearch": "^7.0",
"php": "^8.0",
"laravel/framework": "^7.0 || ^8.0 || ^9.0 || ^10.0",
"statamic/cms": "^3.4 || ^4.0"
},
"authors": [
{
"name": "Tom Helmer Hansen",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"TheHome\\StatamicElasticsearch\\": "src"
}
},
"extra": {
"statamic": {
"name": "Elasticsearch driver",
"description": "Elasticsearch driver for Statamic 3"
},
"laravel": {
"providers": [
"TheHome\\StatamicElasticsearch\\ServiceProvider"
]
}
},
"require-dev": {
"phpstan/phpstan": "^1.4.2",
"phpunit/phpunit": "^9 || ^10",
"livewire/livewire": "^2.3"
},
"config": {
"allow-plugins": {
"pixelfear/composer-dist-plugin": true,
"php-http/discovery": true
}
}
}