-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·44 lines (44 loc) · 1.21 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
{
"name": "webdna/element-search",
"description": "One search to search them all",
"type": "craft-plugin",
"version": "0.0.1",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"element search"
],
"support": {
"docs": "https://github.com/webdna/element-search/blob/master/README.md",
"issues": "https://github.com/webdna/element-search/issues"
},
"license": "MIT",
"authors": [
{
"name": "WebDNA",
"homepage": "https://webdna.co.uk"
}
],
"require": {
"craftcms/cms": "^3.0.0|^4.0.0"
},
"require-dev": {
"vlucas/phpdotenv": "^3.0"
},
"autoload": {
"psr-4": {
"webdna\\elementsearch\\": "src/"
}
},
"extra": {
"name": "Element Search",
"handle": "element-search",
"developer": "WebDNA",
"developerUrl": "https://webdna.co.uk",
"documentationUrl": "https://github.com/webdna/element-search/blob/master/README.md",
"changelogUrl": "https://raw.githubusercontent.com/webdna/element-search/master/CHANGELOG.md",
"class": "webdna\\elementsearch\\ElementSearch"
}
}