-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcomposer.json
59 lines (59 loc) · 1.55 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
55
56
57
58
59
{
"name": "dynamic/silverstripe-linkable",
"type": "silverstripe-vendormodule",
"description": "A couple of handy form fields and objects for managing external and internal links on DataObjects",
"license": "BSD-3-Clause",
"keywords": [
"silverstripe",
"cms",
"link"
],
"homepage": "http://github.com/dynamic/silverstripe-linkable",
"authors": [
{
"name": "Dynamic",
"email": "[email protected]"
},
{
"name": "Shea Dawson",
"email": "[email protected]"
},
{
"name": "Marcus Nyeholt",
"email": "[email protected]"
}
],
"replace": {
"sheadawson/silverstripe-linkable": "^2.0"
},
"support": {
"issues": "http://github.com/dynamic/silverstripe-linkable/issues"
},
"require": {
"silverstripe/framework": "^5.0",
"silverstripe/vendor-plugin": "^2.0",
"unclecheese/display-logic": "^3.0"
},
"require-dev": {
"silverstripe/recipe-testing": "^3"
},
"autoload": {
"psr-4": {
"Sheadawson\\Linkable\\": "src/",
"Sheadawson\\Linkable\\Tests\\": "tests/"
}
},
"suggest": {
"silverstripe/cms": "To allow for a linking of the SiteTree data object."
},
"extra": {
"branch-alias": {
"dev-master": "2.x-dev"
},
"expose": [
"client"
]
},
"prefer-stable": true,
"minimum-stability": "dev"
}