forked from ProfessionalWiki/Maps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
63 lines (63 loc) · 1.26 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
61
62
63
{
"name": "mediawiki/maps",
"type": "mediawiki-extension",
"description": "Adds various mapping features to MediaWiki",
"keywords": [
"MediaWiki",
"Semantic MediaWiki",
"Maps",
"Google Maps",
"OpenLayers",
"OSM",
"OpenStreetMap"
],
"homepage": "https://github.com/JeroenDeDauw/Maps",
"license": "GPL-2.0+",
"authors": [
{
"name": "Jeroen De Dauw",
"email": "[email protected]",
"homepage": "http://jeroendedauw.com",
"role": "Creator and lead developer"
}
],
"support": {
"email": "[email protected]",
"irc": "irc://irc.freenode.net/mediawiki",
"source": "https://github.com/JeroenDeDauw/Maps"
},
"require": {
"php": ">=5.5",
"composer/installers": "^1.0.1",
"mediawiki/validator": "^2.0.2",
"data-values/geo": "~1.0"
},
"require-dev": {
"data-values/common": "~0.3.1"
},
"autoload": {
"files" : [
"Maps.php"
],
"psr-4": {
"Maps\\": "src/Maps/"
},
"classmap": [
"includes/",
"Maps.hooks.php",
"tests/phpunit/elements/",
"tests/phpunit/parserhooks/ParserHookTest.php"
]
},
"extra": {
"branch-alias": {
"dev-master": "3.6.x-dev"
}
},
"config": {
"process-timeout": 0
},
"scripts":{
"phpunit": "php ../../tests/phpunit/phpunit.php -c phpunit.xml.dist"
}
}