forked from presseddigital/linkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
46 lines (44 loc) · 1.01 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": "presseddigital/linkit",
"description": "One link field to rule them all.",
"type": "craft-plugin",
"version": "4.0.4.1",
"keywords": [
"craftcms",
"link it",
"linkit",
"link"
],
"support": {
"docs": "https://github.com/presseddigital/linkit/blob/v4/README.md",
"issues": "https://github.com/presseddigital/linkit/issues?state=open"
},
"license": "proprietary",
"authors": [
{
"name": "Pressed Digital",
"homepage": "https://pressed.digital"
}
],
"require": {
"craftcms/cms": "^4.0.0",
"php": "^8.0"
},
"autoload": {
"psr-4": {
"presseddigital\\linkit\\": "src/",
"fruitstudios\\linkit\\": "src_legacy/"
}
},
"extra": {
"name": "Linkit",
"handle": "linkit",
"hasCpSettings": false,
"hasCpSection": false,
"changelogUrl": "https://raw.githubusercontent.com/presseddigital/linkit/v4/CHANGELOG.md",
"class": "presseddigital\\linkit\\Linkit",
"components": {
"services": "presseddigital\\linkit\\services\\LinkitService"
}
}
}