-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
46 lines (46 loc) · 1.18 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
{
"name": "charliedev/blockonomicon",
"description": "Export and import entire matrix blocks and manage/render their views.",
"type": "craft-plugin",
"version": "1.1.6",
"license": "proprietary",
"authors": [
{
"name": "Charlie Development",
"email": "[email protected]",
"homepage": "http://charliedev.com/"
}
],
"keywords": [
"craft",
"cms",
"craftcms",
"matrix",
"export",
"import",
"templating"
],
"support": {
"issues": "https://github.com/charliedevelopment/craft3-blockonomicon/issues?state=open",
"source": "https://github.com/charliedevelopment/craft3-blockonomicon",
"email": "[email protected]"
},
"require": {
"craftcms/cms": "^3.0.0-RC6"
},
"autoload": {
"psr-4": {
"charliedev\\blockonomicon\\": "src/"
}
},
"extra": {
"name": "Blockonomicon",
"handle": "blockonomicon",
"changelogUrl": "https://raw.githubusercontent.com/charliedevelopment/craft3-blockonomicon/master/CHANGELOG.md",
"downloadUrl": "https://github.com/charliedevelopment/craft3-blockonomicon/archive/master.zip",
"schemaVersion": "1.0.0",
"hasCpSettings": true,
"hasCpSection": true,
"class": "charliedev\\blockonomicon\\Blockonomicon"
}
}