-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
31 lines (31 loc) · 733 Bytes
/
composer.json
File metadata and controls
31 lines (31 loc) · 733 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": "ghislainphu/spress-codeblock",
"type": "spress-plugin",
"description": "Add codeblock Twig function to Spress.",
"keywords": [
"spress",
"plugin",
"pygments",
"syntax",
"highlight"
],
"license": "MIT",
"authors": [
{
"name": "Ghislain PHU",
"email": "contact@ghislainphu.fr"
}
],
"autoload": {
"psr-4": {
"GhislainPhu\\Spress\\Plugin\\Codeblock\\": "src/"
}
},
"require": {
"spress/spress-installer": "2.0.*",
"ramsey/twig-codeblock": "^1.0"
},
"extra": {
"spress_class": "GhislainPhu\\Spress\\Plugin\\Codeblock\\SpressCodeblock"
}
}