forked from ProfessionalWiki/Maps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
85 lines (85 loc) · 1.79 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "mediawiki/maps",
"type": "mediawiki-extension",
"description": "Adds various mapping features to MediaWiki",
"keywords": [
"MediaWiki",
"Semantic MediaWiki",
"Maps",
"Semantic Maps",
"Google Maps",
"OpenLayers",
"OSM",
"Leaflet",
"Geocode",
"Geocoding",
"OpenStreetMap"
],
"homepage": "https://github.com/JeroenDeDauw/Maps",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Jeroen De Dauw",
"email": "[email protected]",
"homepage": "https://www.entropywins.wtf",
"role": "Creator and lead developer"
}
],
"support": {
"email": "[email protected]",
"irc": "irc://irc.freenode.net/mediawiki",
"source": "https://github.com/JeroenDeDauw/Maps"
},
"require": {
"php": ">=7.0",
"composer/installers": "^1.0.1",
"mediawiki/validator": "~2.2",
"data-values/geo": "~2.0",
"jeroen/file-fetcher": "~4.2",
"jeroen/simple-cache": "~2.0",
"jeroen/simple-geocoder": "@dev"
},
"require-dev": {
"data-values/common": "~0.3.1"
},
"autoload": {
"files" : [
"Maps.php"
],
"psr-4": {
"Maps\\": "src/"
},
"classmap": [
"includes/",
"Maps.hooks.php",
"SemanticMaps/src/",
"SemanticMaps/SemanticMaps.hooks.php"
]
},
"autoload-dev": {
"psr-4": {
"Maps\\Tests\\TestDoubles\\": "tests/TestDoubles/"
},
"classmap": [
"tests/Unit/Elements/",
"tests/Integration/parserhooks/ParserHookTest.php"
]
},
"extra": {
"branch-alias": {
"dev-master": "5.3.x-dev"
}
},
"replace": {
"mediawiki/semantic-maps": "*"
},
"suggest": {
"mediawiki/semantic-media-wiki": "Add, edit, aggregate and visualize structured coordinate data stored with Semantic MediaWiki"
},
"config": {
"process-timeout": 0
},
"scripts":{
"ci": "php ../../tests/phpunit/phpunit.php -c phpunit.xml.dist"
}
}