-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
35 lines (35 loc) · 869 Bytes
/
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
{
"name": "drmartingonzo/ss-tinymce-charcount",
"description": "Plugin for tinyMCE in siverstripe to count characters",
"type": "silverstripe-vendormodule",
"license": "BSD-3-Clause",
"keywords": [
"silverstripe",
"tinymce",
"characters"
],
"authors": [{
"name": "Martin Portevin",
"email": "martin.portevin@gmail.com"
}],
"require": {
"silverstripe/cms": "^4.0@dev",
"silverstripe/vendor-plugin": "^1.0"
},
"extra": {
"installer-name": "ss-tinymce-charcount",
"screenshots": [
"screenshot.png"
],
"expose": [
"client/dist",
"client/lang"
]
},
"autoload": {
"psr-4": {
"drmartingonzo\\ss-tinymce-charcount\\": "src/"
}
},
"minimum-stability": "dev"
}