-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
50 lines (50 loc) · 1.4 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
{
"name": "webplatform/mediawiki-conversion",
"description": "Convert MediaWiki XML backup into structured raw text file tree",
"type": "project",
"keywords": ["mediawiki","backupDump","exporter","migration"],
"license": "MIT",
"require": {
"webplatform/content-converter": "~1.2",
"prewk/xml-string-streamer": "^0.7.1",
"ryakad/pandoc-php": "~1.0",
"glicer/simply-html": "~1.0",
"symfony/filesystem": "~2.7",
"vlucas/phpdotenv": "~2.0",
"symfony/console": "~2.7",
"bit3/git-php": "~1.0"
},
"require-dev": {
"doctrine/annotations": "~1.2",
"fabpot/php-cs-fixer": "^1.9",
"phpunit/phpunit": "~4.7"
},
"authors": [
{
"name": "Renoir Boulanger",
"email": "[email protected]"
}
],
"repositories": [
{
"type": "git",
"url": "https://github.com/webplatform/content-converter.git"
},
{
"type": "git",
"url": "https://github.com/webplatform/mediawiki-conversion.git"
}
],
"autoload": {
"psr-0": {
"WebPlatform\\Importer\\": "src/",
"WebPlatform\\ContentConverter\\": "src/WebPlatform/ContentConverter/lib/"
},
"files": [
"lib/mediawiki.php"
]
},
"config": {
"bin-dir": "bin"
}
}