-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
70 lines (70 loc) · 1.67 KB
/
Copy pathcomposer.json
File metadata and controls
70 lines (70 loc) · 1.67 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "professional-wiki/native-markdown",
"type": "mediawiki-extension",
"description": "MediaWiki extension that makes Markdown a native content model with first-class wiki integration",
"keywords": [
"MediaWiki",
"Markdown",
"CommonMark",
"GitHub Flavored Markdown",
"content model",
"wiki"
],
"homepage": "https://github.com/ProfessionalWiki/NativeMarkdown",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Professional Wiki",
"email": "info@professional.wiki",
"homepage": "https://professional.wiki",
"role": "Creator"
},
{
"name": "Jeroen De Dauw",
"email": "jeroendedauw@proton.me",
"homepage": "https://EntropyWins.wtf",
"role": "Creator and lead developer"
}
],
"support": {
"issues": "https://github.com/ProfessionalWiki/NativeMarkdown/issues",
"source": "https://github.com/ProfessionalWiki/NativeMarkdown"
},
"require": {
"php": ">=8.1",
"composer/installers": "^2|^1.0.1",
"league/commonmark": "^2.7",
"symfony/yaml": "^5.4 || ^6.4 || ^7.0"
},
"require-dev": {
"phpunit/phpunit": "^9.6",
"vimeo/psalm": "^6.0",
"phpstan/phpstan": "^2.1",
"mediawiki/mediawiki-codesniffer": "^47.0"
},
"scripts": {
"test": "phpunit --testsuite Unit",
"cs": "phpcs -p -s",
"phpstan": "phpstan analyse --no-progress",
"psalm": "psalm"
},
"autoload": {
"psr-4": {
"ProfessionalWiki\\NativeMarkdown\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ProfessionalWiki\\NativeMarkdown\\Tests\\": "tests/phpunit/"
}
},
"extra": {
"installer-name": "NativeMarkdown"
},
"config": {
"allow-plugins": {
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}