-
Notifications
You must be signed in to change notification settings - Fork 12
/
composer.json
43 lines (43 loc) · 1.19 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
{
"name": "cyber-duck/silverstripe-linkitemfield",
"description": "SilverStripe 4 custom form element for anchor, email, telephone, file, image, internal and external links",
"type": "silverstripe-vendormodule",
"homepage": "http://github.com/cyber-duck/silverstripe-linkitemfield",
"keywords": [
"silverstripe",
"silverstripe 4",
"linking",
"has_one",
"has_many",
"custom link field"
],
"license": "MIT",
"authors": [
{
"name": "Andrew Mc Cormack",
"email": "andrewm@cyber-duck.co.uk",
"homepage": "https://github.com/Andrew-Mc-Cormack"
}
],
"support": {
"issues": "http://github.com/cyber-duck/silverstripe-linkitemfield/issues"
},
"require": {
"unclecheese/display-logic": "^3.0"
},
"autoload": {
"psr-4": {
"CyberDuck\\LinkItemField\\": "src/",
"CyberDuck\\LinkItemField\\Tests\\": "tests/"
}
},
"extra": {
"installer-name": "linkitemfield",
"expose": [
"assets/css",
"assets/js"
]
},
"minimum-stability": "dev",
"prefer-stable": true
}