forked from maglnet/MaglMarkdown
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
54 lines (54 loc) · 1.86 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
{
"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": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "^7.0",
"ext-curl": "*",
"ext-json": "*",
"michelf/php-markdown": "^1.4",
"erusev/parsedown-extra": "~0.5",
"league/commonmark": "~0.5",
"erusev/parsedown": "^1.6",
"zendframework/zend-stdlib": "^2.4 || ^3.0",
"zendframework/zend-http": "^2.4",
"zendframework/zend-mvc": "^2.4 || ^3.0",
"zendframework/zend-eventmanager": "^2.4 || ^3.0",
"zendframework/zend-modulemanager": "^2.4",
"zendframework/zend-view": "^2.4",
"zendframework/zend-cache": "^2.4",
"zendframework/zend-servicemanager": "^2.4 || ^3.1.1",
"container-interop/container-interop": "^1.1"
},
"require-dev": {
"phpunit/phpunit": "^6.0",
"zendframework/zend-log": "^2.4",
"zendframework/zend-i18n": "^2.4",
"zendframework/zend-console": "^2.4",
"zendframework/zend-serializer": "^2.4"
},
"autoload": {
"psr-4": {
"MaglMarkdown\\" : "src/MaglMarkdown/"
}
},
"autoload-dev": {
"psr-4": {
"MaglMarkdownTest\\" : "tests/MaglMarkdownTest/"
}
}
}