-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
39 lines (39 loc) · 887 Bytes
/
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
{
"name": "janpieterk/gemeentekaart-core",
"description": "Library to draw choropleth maps of the municipalities of The Netherlands",
"license": "GPL-2.0-only",
"authors": [
{
"name": "Jan Pieter Kunst",
"email": "[email protected]"
}
],
"keywords": [
"gis",
"geo"
],
"homepage": "https://github.com/janpieterk/gemeentekaart-core",
"autoload": {
"psr-0": {
"Image_": "lib/Image_Color",
"XML_": "lib/XML_SVG"
},
"psr-4": {
"JanPieterK\\GemeenteKaart\\": ["src/", "test/"]
}
},
"require": {
"php": ">=8.1",
"pear/xml_util": ">=1.3",
"worthwhileindustries/geojson-rewind": "*",
"ext-json": "*",
"ext-gd": "*",
"ext-simplexml": "*",
"ext-dom": "*",
"ext-imagick": "*"
},
"require-dev": {
"phpunit/phpunit": "10.2.5",
"squizlabs/php_codesniffer": ">=2.9"
}
}