-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
35 lines (35 loc) · 830 Bytes
/
composer.json
File metadata and controls
35 lines (35 loc) · 830 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
32
33
34
35
{
"name": "moxio/commonmark-ext-fancy-lists",
"type": "commonmark-extension",
"description": "Extension for league/commonmark to support additional numbering types for ordered lists",
"license": "MIT",
"keywords" : [ "markdown", "commonmark", "extension", "fancy-lists", "ordered-list" ],
"authors": [
{
"name": "Moxio",
"homepage": "https://www.moxio.com"
}
],
"autoload": {
"psr-4": {
"Moxio\\CommonMark\\Extension\\FancyLists\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Moxio\\CommonMark\\Extension\\FancyLists\\Test\\": "test/"
}
},
"require": {
"php": "^7.4 || ^8.0",
"ext-ctype": "*",
"ext-mbstring": "*",
"league/commonmark": "^2.0",
"league/config": "^1.1.1",
"nette/schema": "^1.2",
"wandersonwhcr/romans": "^1.2"
},
"require-dev": {
"phpunit/phpunit": "^9.3"
}
}