-
Notifications
You must be signed in to change notification settings - Fork 65
/
composer.json
45 lines (39 loc) · 1.1 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
{
"name": "ksubileau/color-thief-php",
"type": "library",
"homepage" : "http://www.kevinsubileau.fr/projets/color-thief-php",
"description": "Grabs the dominant color or a representative color palette from an image.",
"keywords": ["color", "thief", "php", "dominant", "palette"],
"license": "MIT",
"authors": [
{
"name": "Kevin Subileau",
"homepage": "http://www.kevinsubileau.fr"
}
],
"require": {
"php": "^7.2|^8.0",
"ext-fileinfo": "*"
},
"require-dev": {
"phpunit/phpunit": "^8.5",
"friendsofphp/php-cs-fixer": "^3.4",
"phpstan/phpstan": "^1.2.0",
"phpstan/phpstan-phpunit": "^1.0.0"
},
"suggest": {
"ext-gd": "to use the GD image adapter.",
"ext-imagick": "to use the Imagick image adapter.",
"ext-gmagick": "to use the Gmagick image adapter."
},
"autoload": {
"psr-4": {
"ColorThief\\": "src/ColorThief"
}
},
"autoload-dev": {
"psr-4": {
"ColorThief\\Tests\\": "tests/"
}
}
}