-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
43 lines (43 loc) · 1.18 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
{
"name": "prinsfrank/php-geo-svg",
"description": "Generate Geo SVGs",
"type": "library",
"license": "MIT",
"require": {
"php": "^8.0 || ^8.1 || ^8.2"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"prinsfrank/natural-earth-vector-geojson-only": "^4.1.0",
"friendsofphp/php-cs-fixer": "^3.2"
},
"autoload": {
"psr-4": {
"PrinsFrank\\PhpGeoSVG\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PrinsFrank\\PhpGeoSVG\\Tests\\": "tests/"
}
},
"suggest": {
"prinsfrank/natural-earth-vector-geojson-only": "Provides open source GeoJSON data sets"
},
"scripts": {
"fix": "vendor/bin/php-cs-fixer fix --allow-risky=yes"
},
"repositories": [
{
"type": "package",
"package": {
"name": "prinsfrank/natural-earth-vector-geojson-only",
"version": "4.1.0",
"dist": {
"url": "https://github.com/PrinsFrank/natural-earth-vector-geojson-only/archive/refs/tags/v4.1.0.zip",
"type": "zip"
}
}
}
]
}