-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
96 lines (96 loc) · 2.77 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "webuni/commonmark-twig-renderer",
"type": "library",
"description": "The Twig renderer for CommonMark PHP implementation",
"keywords": [
"markdown",
"twig",
"commonmark"
],
"homepage": "https://github.com/webuni/commonmark-twig-renderer",
"license": "MIT",
"authors": [
{
"name": "Martin Hasoň",
"email": "martin.hason@gmail.com",
"homepage": "https://www.martinhason.cz"
},
{
"name": "Webuni s.r.o.",
"homepage": "https://www.webuni.cz"
}
],
"require": {
"php": "^7.2 || ^8.0",
"league/commonmark": "^1.0",
"twig/twig": "^1.38 || ^2.4 || ^3.0"
},
"require-dev": {
"commonmark/commonmark.js": "0.29.2",
"github/gfm": "0.29.0",
"league/commonmark": "^1.0@dev",
"moxio/commonmark-ext-definition-list": "^1.0",
"ows/commonmark-sup-sub-extensions": "^2.0",
"symfony/finder": "^5.0"
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"autoload": {
"psr-4": {
"Webuni\\CommonMark\\TwigRenderer\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Webuni\\CommonMark\\TwigRenderer\\Tests\\": "tests"
},
"classmap": [
"vendor/league/commonmark/tests"
]
},
"repositories": [
{
"type": "package",
"package": {
"name": "commonmark/commonmark.js",
"version": "0.29.2",
"dist": {
"url": "https://github.com/commonmark/commonmark.js/archive/0.29.2.zip",
"type": "zip"
}
}
},
{
"type": "package",
"package": {
"name": "github/gfm",
"version": "0.29.0",
"dist": {
"url": "https://github.com/github/cmark-gfm/archive/0.29.0.gfm.0.zip",
"type": "zip"
}
}
}
],
"scripts": {
"post-install-cmd": [
"mkdir -p vendor/league/commonmark/vendor",
"ln -sf ../../../github vendor/league/commonmark/vendor/github",
"ln -sf ../../../commonmark vendor/league/commonmark/vendor/commonmark"
],
"post-update-cmd": [
"mkdir -p vendor/league/commonmark/vendor",
"ln -sf ../../../github vendor/league/commonmark/vendor/github",
"ln -sf ../../../commonmark vendor/league/commonmark/vendor/commonmark"
],
"analyse": "./run analyse",
"cs": "./run cs",
"tests": "./run tests"
}
}