-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
34 lines (34 loc) · 793 Bytes
/
composer.json
File metadata and controls
34 lines (34 loc) · 793 Bytes
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
{
"name": "coldtrick/opensearch",
"description": "An OpenSearch implementation for Elgg",
"homepage": "https://www.coldtrick.com",
"type": "elgg-plugin",
"keywords": ["elgg", "plugin", "search", "lucene", "opensearch"],
"license": "GPL-2.0-only",
"support": {
"source": "https://github.com/ColdTrick/opensearch",
"issues": "https://github.com/ColdTrick/opensearch/issues"
},
"require": {
"opensearch-project/opensearch-php": "~2.4.0"
},
"require-dev": {
"guzzlehttp/guzzle": "~7.9.0"
},
"conflict": {
"elgg/elgg": "<6.3"
},
"config": {
"allow-plugins": {
"php-http/discovery": true
},
"platform": {
"php": "8.1"
}
},
"extra": {
"discovery": {
"psr/http-factory-implementation": "GuzzleHttp\\\\Psr7\\\\HttpFactory"
}
}
}