-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
executable file
·44 lines (44 loc) · 1.23 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": "simplygoodwork/craft-block-usage",
"description": "See how Matrix and Neo blocks are being used across your sections.",
"type": "craft-plugin",
"version": "1.0.3",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"block usage"
],
"support": {
"docs": "https://github.com/simplygoodwork/craft-block-usage/blob/master/README.md",
"issues": "https://github.com/simplygoodwork/craft-block-usage/issues"
},
"license": "MIT",
"authors": [
{
"name": "Good Work",
"homepage": "https://simplygoodwork.com"
}
],
"require": {
"craftcms/cms": "^4.0.0"
},
"autoload": {
"psr-4": {
"simplygoodwork\\blockusage\\": "src/"
}
},
"extra": {
"name": "Block Usage",
"handle": "block-usage",
"developer": "Good Work",
"developerUrl": "https://simplygoodwork.com",
"documentationUrl": "https://github.com/simplygoodwork/craft-block-usage/blob/master/README.md",
"changelogUrl": "https://raw.githubusercontent.com/simplygoodwork/craft-block-usage/master/CHANGELOG.md",
"components": {
"blockUsageService": "simplygoodwork\\blockusage\\services\\BlockUsageService"
},
"class": "simplygoodwork\\blockusage\\BlockUsage"
}
}