-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathcomposer.json
39 lines (39 loc) · 1.09 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
{
"name": "mw2dw/mw2dw",
"type": "project",
"description": "Convert content in a MediaWiki installation to DokuWiki",
"keywords": ["mediawiki", "dokuwiki", "wiki", "migrate", "convert"],
"homepage": "https://github.com/tetsuo13/MediaWiki-to-DokuWiki-Importer",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Andrei Nicholson",
"email": "[email protected]",
"homepage": "https://andreinicholson.com",
"role": "Developer"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/tetsuo13/MediaWiki-to-DokuWiki-Importer/issues",
"source": "https://github.com/tetsuo13/MediaWiki-to-DokuWiki-Importer"
},
"require": {
"php": ">=5.4",
"mediawiki/core": ">=1.16"
},
"require-dev": {
"phpunit/phpunit": "^8"
},
"autoload": {
"psr-0": {
"MediaWiki2DokuWiki_": "src/"
},
"classmap": [
"src/"
]
},
"scripts": {
"test": "phpunit"
}
}