-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
63 lines (63 loc) · 1.87 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
60
61
62
63
{
"name": "impresscms/codemirror-integration",
"description": "Integrates CodeMirror with ImpressCMS",
"type": "impresscms-module",
"license": "MIT",
"authors": [
{
"name": "Raimondas Rimkevičius",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"ImpressCMS\\Modules\\CodeMirrorIntegration\\": "src/"
}
},
"require": {
"symfony/translation": "^5.1",
"npm-asset/codemirror": "^6.0",
"imponeer/editor-contracts": "^1.0",
"ext-json": "*",
"php": ">=7.3",
"imponeer/symfony-translations-constants-loader": "^1.0"
},
"require-dev": {
"roave/security-advisories": "dev-latest"
},
"extra": {
"icon": {
"big": "images/codemirror-logo.png",
"small": "images/codemirror-logo.png"
},
"services": {
"\\ImpressCMS\\Modules\\CodeMirrorIntegration\\EditorInfo": {
"class": "\\ImpressCMS\\Modules\\CodeMirrorIntegration\\EditorInfo",
"arguments": [
"translator"
]
},
"codemirror": {
"class": "\\ImpressCMS\\Modules\\CodeMirrorIntegration\\EditorFactory",
"arguments": [
"\\ImpressCMS\\Modules\\CodeMirrorIntegration\\EditorInfo"
],
"tags": [
"editor.source"
]
}
},
"assets": [
"vendor/npm-asset/codemirror/lib/",
"vendor/npm-asset/codemirror/theme/",
"vendor/npm-asset/codemirror/mode/",
"vendor/npm-asset/codemirror/addon/"
]
},
"repositories": {
"asset-packagist": {
"type": "composer",
"url": "https://asset-packagist.org"
}
}
}