forked from ProfessionalWiki/Maps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
54 lines (54 loc) · 1.1 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
{
"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.3.2",
"composer/installers": "1.*,>=1.0.1",
"mediawiki/validator": "2.*,>=2.0.2",
"data-values/geo": "0.*,>=0.1.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.1.x-dev"
}
}
}