-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
60 lines (60 loc) · 1.64 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
{
"name": "jsw/commonmark-danraku-extension",
"type": "commonmark-extension",
"keywords": [
"markdown",
"extension",
"md",
"commonmark"
],
"description": "League/commonmark extension for japanese danraku style.",
"authors": [
{
"name": "Jan Stanray Watt",
"email": "[email protected]",
"homepage": "https://github.com/JanStanleyWatt"
}
],
"support": {
"issues": "https://github.com/JanStanleyWatt/commonmark-danraku-extension/issues",
"source": "https://github.com/JanStanleyWatt/commonmark-danraku-extension"
},
"license": "Apache-2.0",
"readme": "README.md",
"require": {},
"require-dev": {
"league/commonmark": "^2.3",
"phpunit/phpunit": "^9.5",
"friendsofphp/php-cs-fixer": "^3.14"
},
"scripts": {
"test": [
"./vendor/bin/phpunit"
],
"test-jisage": [
"./vendor/bin/phpunit --group=jisage"
],
"test-yakumono": [
"./vendor/bin/phpunit --group=yakumono"
],
"test-gfm": [
"./vendor/bin/phpunit --group=gfm"
]
},
"scripts-descriptions": {
"test": "Run all tests",
"test-jisage": "Run tests of `JisageParser.php`",
"test-yakumono": "Run tests of `YakumonoParser.php`",
"test-gfm": "Run tests for alignment to Github Flavored Marddown extension"
},
"autoload": {
"psr-4": {
"JSW\\Danraku\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"JSW\\Tests\\": "tests/"
}
}
}