-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
40 lines (40 loc) · 899 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
40
{
"name": "chillerlan/php-imagetiler",
"description": "An image tile generator. PHP 7.4+",
"homepage": "https://github.com/chillerlan/php-imagetiler",
"license": "MIT",
"minimum-stability": "stable",
"type": "library",
"keywords": [
"image", "tile", "generator", "leaflet", "maps"
],
"authors": [
{
"name": "Smiley",
"email": "[email protected]",
"homepage": "https://github.com/codemasher"
}
],
"require": {
"php": "^7.4 || ^8.0",
"ext-imagick": "*",
"chillerlan/php-settings-container": "^2.1.5",
"codemasher/image-optimizer": "^2.1",
"psr/log": "^1.1 || ^2.0 || ^3.0"
},
"require-dev": {
"phpunit/phpunit": "^9.6",
"phan/phan": "^5.4"
},
"autoload": {
"psr-4": {
"chillerlan\\Imagetiler\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"chillerlan\\ImagetilerTest\\": "tests/",
"chillerlan\\ImagetilerExamples\\": "examples/"
}
}
}