-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
42 lines (42 loc) · 1.19 KB
/
Copy pathcomposer.json
File metadata and controls
42 lines (42 loc) · 1.19 KB
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
{
"name": "bigins/scriptor-markdown-containers",
"description": "Configurable fenced-container syntax (:::note, :::warning, :::details, …) for Scriptor CMS page content, rendered through the Sanitizer with theme-neutral classes.",
"type": "scriptor-plugin",
"license": "MIT",
"keywords": ["scriptor", "scriptor-plugin", "markdown", "containers", "callout", "admonition", "cms"],
"authors": [
{
"name": "bigin",
"email": "juri.ehret@gmail.com",
"homepage": "https://ehret-studio.com",
"role": "Developer"
}
],
"minimum-stability": "beta",
"prefer-stable": true,
"require": {
"php": "^8.2"
},
"require-dev": {
"phpunit/phpunit": "^10.5",
"erusev/parsedown": "^1.8"
},
"autoload": {
"psr-4": {
"Bigins\\ScriptorMarkdownContainers\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Bigins\\ScriptorMarkdownContainers\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit"
},
"extra": {
"scriptor": {
"plugin": "Bigins\\ScriptorMarkdownContainers\\Plugin"
}
}
}