-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·38 lines (38 loc) · 883 Bytes
/
composer.json
File metadata and controls
executable file
·38 lines (38 loc) · 883 Bytes
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
{
"name": "firebrandhq/silverstripe-phonelink",
"description": "Adds a telephone number option to TinyMCE's Insert Link dropdown for creating/editing tel: links using native SilverStripe 4 modals",
"type": "silverstripe-vendormodule",
"homepage": "https://github.com/firebrandhq/silverstripe-phonelink",
"keywords": [
"silverstripe",
"cms",
"tinymce"
],
"license": "BSD-3-Clause",
"authors": [
{
"name": "Firebrand",
"homepage": "https://firebrand.nz",
"email": "developers@firebrand.nz"
}
],
"support": {
"issues": "https://github.com/firebrandhq/silverstripe-phonelink/issues"
},
"require": {
"silverstripe/cms": "^6.0",
"silverstripe/htmleditor-tinymce": "^1.0"
},
"autoload": {
"psr-4": {
"Firebrand\\PhoneLink\\": "src/"
}
},
"extra": {
"expose": [
"client/dist"
]
},
"prefer-stable": true,
"minimum-stability": "dev"
}