-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
62 lines (62 loc) · 1.69 KB
/
Copy pathcomposer.json
File metadata and controls
62 lines (62 loc) · 1.69 KB
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
{
"name": "jrrdnx/craft-search-assistant",
"description": "Track and manage your users' search history to find popular searches, recent searches, and more in Craft",
"type": "craft-plugin",
"version": "1.3.3",
"keywords": [
"cms",
"craftcms",
"search",
"history",
"recent searches",
"popular searches"
],
"license": "proprietary",
"authors": [
{
"name": "Jarrod D Nix",
"homepage": "https://jarrodnix.dev/"
}
],
"support": {
"issues": "https://github.com/jrrdnx/craft-search-assistant/issues",
"docs": "https://jarrodnix.dev/plugins/search-assistant/v1"
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^8.0.2",
"craftcms/cms": "^4.0.0 || ^5.0.0",
"dxw/cidr": "^3.0.0"
},
"require-dev": {
"craftcms/ecs": "dev-main",
"craftcms/phpstan": "dev-main",
"craftcms/rector": "dev-main"
},
"autoload": {
"psr-4": {
"jrrdnx\\searchassistant\\": "src/"
}
},
"scripts": {
"check-cs": "ecs check --ansi",
"fix-cs": "ecs check --ansi --fix",
"phpstan": "phpstan --memory-limit=1G"
},
"extra": {
"name": "Search Assistant",
"handle": "search-assistant",
"class": "jrrdnx\\searchassistant\\SearchAssistant",
"documentationUrl": "https://jarrodnix.dev/plugins/search-assistant/v1"
},
"config": {
"platform": {
"php": "8.0.2"
},
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true
}
}
}