-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
44 lines (44 loc) · 1.22 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": "guilty/imageshop-field",
"description": "Integrates the Imageshop file picker into Craft CMS",
"version": "1.0.5",
"type": "craft-plugin",
"keywords": [
"imageshop",
"bildebank",
"images",
"craftcms"
],
"license": "MIT",
"authors": [
{
"name": "Guilty AS",
"homepage": "https://guilty.no"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/guilty-as/imageshop-field/issues?state=open",
"source": "https://github.com/guilty-as/imageshop-field",
"docs": "https://github.com/guilty-as/imageshop-field/blob/master/README.md"
},
"require": {
"craftcms/cms": "^3.1.0"
},
"autoload": {
"psr-4": {
"Guilty\\Imageshop\\": "src/"
}
},
"extra": {
"handle": "imageshop-field",
"name": "Imageshop",
"class": "Guilty\\Imageshop\\Imageshop",
"documentationUrl": "https://github.com/guilty-as/imageshop-field/blob/master/README.md",
"components": {
"soap": "Guilty\\Imageshop\\Services\\Soap"
},
"hasCpSettings": true,
"hasCpSection": false
}
}