-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
72 lines (72 loc) · 1.8 KB
/
Copy pathcomposer.json
File metadata and controls
72 lines (72 loc) · 1.8 KB
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
{
"name": "mapsight/tile-proxy",
"description": "Simple tile proxy",
"type": "library",
"keywords": [
"mapsight",
"tiles",
"osm"
],
"homepage": "https://github.com/open-mapsight/mapsight-tile-proxy",
"license": "MIT",
"authors": [
{
"name": "Paul Golmann",
"email": "mail@pje-web.de",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/open-mapsight/mapsight-tile-proxy/issues",
"source": "https://github.com/open-mapsight/mapsight-tile-proxy"
},
"require": {
"php": "^8.2.0",
"ext-gd": "*",
"ext-json": "*",
"guzzlehttp/guzzle": "^7.0",
"spatie/image-optimizer": "^1.8.1"
},
"suggest": {
"ext-imagick": "Required for colorFilter tile operations",
"psr/log": "Use a PSR-3 logger via Log::setLogger()"
},
"scripts": {
"test": "phpunit",
"analyse": "phpstan analyse --configuration=phpstan.neon.dist --memory-limit=512M"
},
"config": {
"sort-packages": true
},
"minimum-stability": "stable",
"prefer-stable": true,
"require-dev": {
"roave/security-advisories": "dev-master",
"friendsofphp/php-cs-fixer": "^3.95",
"phpstan/phpstan": "^2.1",
"phpunit/phpunit": "^11.0",
"rector/rector": "^2.4"
},
"autoload": {
"psr-4": {
"OpenMapsight\\TileProxy\\": "classes"
}
},
"autoload-dev": {
"psr-4": {
"OpenMapsight\\TileProxy\\Tests\\": "tests"
}
},
"archive": {
"exclude": [
"*",
".*",
"!/classes/*"
]
},
"platform": {
"php": "^8.2.99",
"ext-gd": "*",
"ext-json": "*"
}
}