forked from humanmade/Colors-Of-Image
-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathcomposer.json
34 lines (34 loc) · 986 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
{
"name": "brianmcdo/image-palette",
"type": "library",
"description": "Extracts colors from an image and generates a color palette against a whitelist of colors.",
"keywords": ["image","color","palette","extractor","gd","laravel"],
"homepage": "https://github.com/BrianMcdo/ImagePalette",
"license": "MIT",
"minimum-stability": "stable",
"authors": [
{
"name": "Brian McDonald",
"email": "brian@brianmcdonald.io",
"homepage": "http://brianmcdonald.io",
"role": "Developer"
},
{
"name": "Gandalf the Grey",
"homepage": "https://github.com/gandalfx",
"role": "Developer"
}
],
"replace": {
"bfoxwell/image-palette": "*"
},
"require": {
"php": ">=5.4.0",
"ext-gd": "*"
},
"autoload": {
"psr-4": {
"BrianMcdo\\ImagePalette\\": "src/BrianMcdo/ImagePalette"
}
}
}