This repository has been archived by the owner on Aug 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
48 lines (48 loc) · 1.75 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
{
"name": "dolphiq/titleentriesfield",
"description": "Offers users a field type with an easy way to set a different title for the relation than the related page title. Useful in menus, submenus or related lists if you are linking to other content but want to use shorter or different titles in the lists.",
"type": "craft-plugin",
"version": "1.0.6",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"link",
"linkfield",
"menu",
"entry",
"item",
"link",
"craft3"
],
"license": "MIT",
"authors": [
{
"name": "Dolphiq",
"email": "[email protected]",
"homepage": "https://dolphiq.nl/"
}
],
"require": {
"craftcms/cms": "^3.0.0-RC2"
},
"autoload": {
"psr-4": {
"dolphiq\\titleentriesfield\\": "src/"
}
},
"extra": {
"name": "Title Entries Field",
"handle": "linkfield",
"schemaVersion": "1.0.0",
"developer": "Dolphiq",
"developerUrl": "https://dolphiq.nl/",
"description": "Offers users a field type with an easy way to set a different title for the relation than the related page title. Useful in menus, submenus or related lists if you are linking to other content but want to use shorter or different titles in the lists.",
"hasCpSettings": false,
"hasCpSection": false,
"documentationUrl": "https://github.com/Dolphiq/craft3-plugin-title-entries-field/blob/master/README.md",
"changelogUrl": "https://raw.githubusercontent.com/Dolphiq/craft3-plugin-title-entries-field/master/CHANGELOG.md",
"class": "dolphiq\\titleentriesfield\\TitleEntriesFieldPlugin"
}
}