forked from sheadawson/silverstripe-linkable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
53 lines (53 loc) · 1.45 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
{
"name": "silverstripers/silverstripe-linkable",
"type": "silverstripe-vendormodule",
"description": "A couple of handy form fields and objects for managing external and internal links on DataObjects. A fork from sheadawson/silverstripe-linkable",
"license": "BSD-3-Clause",
"keywords": [
"silverstripe",
"cms",
"link"
],
"homepage": "http://github.com/sheadawson/silverstripe-linkable",
"authors": [
{
"name": "Shea Dawson",
"email": "[email protected]"
},
{
"name": "Marcus Nyeholt",
"email": "[email protected]"
}
],
"support": {
"issues": "http://github.com/sheadawson/silverstripe-linkable/issues"
},
"require": {
"silverstripe/framework": "4.* | 5.*",
"unclecheese/display-logic": "*",
"embed/embed": "^4"
},
"require-dev": {
"phpunit/phpunit": "^9.5"
},
"autoload": {
"psr-4": {
"Sheadawson\\Linkable\\": "src/",
"Sheadawson\\Linkable\\Tests\\": "tests/"
}
},
"suggest": {
"silverstripe/cms": "To allow for a linking of the SiteTree data object."
},
"extra": {
"installer-name": "linkable",
"branch-alias": {
"dev-master": "2.0.x-dev"
},
"expose": [
"client"
]
},
"prefer-stable": true,
"minimum-stability": "dev"
}