-
-
Notifications
You must be signed in to change notification settings - Fork 60
/
composer.json
80 lines (80 loc) · 1.85 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
{
"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://maps.extension.wiki",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Jeroen De Dauw",
"email": "[email protected]",
"homepage": "https://EntropyWins.wtf",
"role": "Creator and lead developer"
},
{
"name": "Professional.Wiki",
"email": "[email protected]",
"homepage": "https://professional.wiki"
}
],
"support": {
"email": "[email protected]",
"irc": "irc://irc.libera.chat/mediawiki",
"source": "https://github.com/ProfessionalWiki/Maps"
},
"require": {
"php": ">=7.4",
"composer/installers": "^2.0.0|^1.0.1",
"mediawiki/validator": "~2.2",
"mediawiki/parser-hooks": "~1.5",
"param-processor/param-processor": "^1.10",
"data-values/geo": "~4.0|~3.0",
"jeroen/file-fetcher": "~6.0|~5.0",
"jeroen/file-fetcher-cache": "~1.0",
"jeroen/simple-cache": "~2.0",
"jeroen/simple-geocoder": "~1.2",
"jmikola/geojson": "^1.0.2"
},
"require-dev": {
"vimeo/psalm": "^5.0.0",
"phpstan/phpstan": "^1.4.8",
"mediawiki/mediawiki-codesniffer": "39.0.0"
},
"autoload": {
"psr-4": {
"Maps\\": "src/",
"Maps\\Tests\\": "tests/"
},
"files": [
"Maps_Settings.php"
]
},
"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,
"allow-plugins": {
"composer/installers": true
}
},
"scripts":{
"ci": "php ../../tests/phpunit/phpunit.php -c phpunit.xml.dist"
}
}