forked from luwes/craft-codemirror
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
38 lines (38 loc) · 1.01 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
{
"name": "luwes/craft3-codemirror",
"description": "Add the awesome in-browser code editor CodeMirror as a field type.",
"type": "craft-plugin",
"version": "1.0.2",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"codemirror"
],
"support": {
"docs": "https://github.com/luwes/craft3-codemirror/blob/master/README.md",
"issues": "https://github.com/luwes/craft3-codemirror/issues"
},
"license": "MIT",
"authors": [
{
"name": "Wesley Luyten",
"homepage": "https://wesleyluyten.com"
}
],
"require": {
"craftcms/cms": "^3.0.0-beta.20"
},
"autoload": {
"psr-4": {
"luwes\\codemirror\\": "src/"
}
},
"extra": {
"name": "CodeMirror",
"handle": "code-mirror",
"changelogUrl": "https://raw.githubusercontent.com/luwes/craft3-codemirror/master/CHANGELOG.md",
"class": "luwes\\codemirror\\CodeMirror"
}
}