-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathcomposer.json
More file actions
54 lines (54 loc) · 1.9 KB
/
composer.json
File metadata and controls
54 lines (54 loc) · 1.9 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
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "maglnet/magl-markdown",
"type": "library",
"description": "Provides a ZF2 View Helper to render markdown syntax. It uses third-party libraries for the rendering and you can switch between different renderers.",
"homepage": "https://github.com/maglnet/MaglMarkdown",
"license": "MIT",
"keywords": ["markdown", "zend framework", "zf2", "parsedown", "gfm", "github flavoured markdown"],
"support": {
"source": "https://github.com/maglnet/MaglMarkdown",
"issues": "https://github.com/maglnet/MaglMarkdown/issues"
},
"authors": [
{
"name": "Matthias Glaub",
"email": "magl@magl.net",
"role": "Developer"
}
],
"require": {
"php": "^7.3 || ^8.0",
"ext-curl": "*",
"ext-json": "*",
"michelf/php-markdown": "^1.4",
"erusev/parsedown-extra": "~0.5",
"league/commonmark": "^0.18 || ^1.5.0 || ^2.0.0",
"erusev/parsedown": "^1.6",
"laminas/laminas-stdlib": "^2.4 || ^3.0",
"laminas/laminas-http": "^2.4",
"laminas/laminas-mvc": "^2.4 || ^3.0",
"laminas/laminas-eventmanager": "^2.4 || ^3.0",
"laminas/laminas-modulemanager": "^2.4",
"laminas/laminas-view": "^2.4",
"laminas/laminas-cache": "^2.3 || ^3.0",
"laminas/laminas-cache-storage-deprecated-factory": "^1.0",
"laminas/laminas-cache-storage-adapter-memory": "^2.0",
"laminas/laminas-servicemanager": "^2.4 || ^3.1.1",
"container-interop/container-interop": "^1.1"
},
"require-dev": {
"phpunit/phpunit": "^9",
"laminas/laminas-i18n": "^2.4",
"laminas/laminas-serializer": "^2.4"
},
"autoload": {
"psr-4": {
"MaglMarkdown\\": "src/MaglMarkdown/"
}
},
"autoload-dev": {
"psr-4": {
"MaglMarkdownTest\\": "tests/MaglMarkdownTest/"
}
}
}