-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·31 lines (31 loc) · 826 Bytes
/
composer.json
File metadata and controls
executable file
·31 lines (31 loc) · 826 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
{
"name": "cvette/neos-code-block",
"type": "neos-plugin",
"description":
"This package includes a node type to add code blocks with syntax highlighting to your Neos CMS project.",
"license": "GPL-3.0+",
"authors": [
{
"name": "Christian Vette",
"email": "neos@christianvette.de",
"homepage": "https://www.christianvette.de",
"role": "Developer"
}
],
"require": {
"geshi/geshi": "~1.0",
"neos/neos": "~4.0"
},
"autoload": {
"psr-4": {
"Vette\\CodeBlock\\": "Classes"
}
},
"extra": {
"marketplace-account": "neos@christianvette.de",
"installer-name": "Vette.CodeBlock",
"neos": {
"package-key": "Vette.CodeBlock"
}
}
}