-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcomposer.json
61 lines (61 loc) · 1.21 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "projectcleverweb/color",
"description": "This is a stand-alone PHP 7 (and PHP 5!) library for working with RGB, HSL, HSB/HSV, Hexadecimal, and CMYK colors. Create schemes, modify specific color properties, easily convert between color spaces, create gradients, and make color suggestions quickly and easily.",
"version": "0.0.0-dev",
"keywords": [
"color",
"hsl",
"cmyk",
"scheme",
"hex",
"hexadecimal",
"theme",
"rgb",
"hsb",
"hue",
"light",
"brightness",
"saturation",
"manipulation",
"red",
"blue",
"green",
"class",
"object",
"pantone",
"ral",
"complementary",
"triad",
"tetrad",
"analogous",
"accented",
"split",
"compound",
"monochromatic",
"shades",
"shade",
"custom",
"chroma"
],
"homepage": "https://github.com/ProjectCleverWeb/PHP-Color",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Nicholas Jordon",
"email": "[email protected]",
"homepage": "https://github.com/ProjectCleverWeb"
}
],
"require": {
"php": ">=5.3"
},
"require-dev": {
"phpunit/phpunit": "~5.5.5",
"codeclimate/php-test-reporter": "dev-master",
"codacy/coverage": "dev-master"
},
"autoload": {
"files": ["autoload.php"]
}
}