forked from presseddigital/linkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
56 lines (54 loc) · 1.17 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
47
48
49
50
51
52
53
54
{
"name": "fruitstudios/linkit",
"description": "One link field to rule them all.",
"type": "craft-plugin",
"version": "1.1.12.1",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"link it",
"linkit",
"fruit studios"
],
"support": {
"email": "hi@fruitstudios.co.uk",
"issues":
"https://github.com/fruitstudios/craft-linkit/issues?state=open",
"source": "https://github.com/fruitstudios/craft-linkit",
"docs": "https://github.com/fruitstudios/craft-linkit"
},
"license": "proprietary",
"authors": [
{
"name": "Fruit Studios",
"homepage": "https://fruitstudios.co.uk"
}
],
"require": {
"craftcms/cms": "^3.5"
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"autoload": {
"psr-4": {
"fruitstudios\\linkit\\": "src/"
}
},
"extra": {
"name": "Linkit",
"handle": "linkit",
"hasCpSettings": false,
"hasCpSection": false,
"changelogUrl": "https://raw.githubusercontent.com/fruitstudios/craft-linkit/master/CHANGELOG.md",
"class": "fruitstudios\\linkit\\Linkit",
"components": {
"services": "fruitstudios\\linkit\\services\\LinkitService"
}
}
}