-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
27 lines (27 loc) · 778 Bytes
/
composer.json
File metadata and controls
27 lines (27 loc) · 778 Bytes
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
{
"name": "danmichaelo/coma",
"type": "library",
"description": "Library to convert colors between the RGB, XYZ, and Lab colorspaces, and to calculate color distance metrics such as CIE76 and CIE94",
"keywords": ["color", "color distance", "color conversion"],
"homepage": "http://github.com/danmichaelo/php-coma",
"license": "MIT",
"authors": [
{
"name": "Dan Michael O. Heggø",
"email": "danmichaelo@gmail.com"
}
],
"minimum-stability": "dev",
"require": {
"php": ">=5.3"
},
"require-dev": {
"phpunit/phpunit": "3.7.*",
"satooshi/php-coveralls": "dev-master"
},
"autoload": {
"psr-0": {
"Danmichaelo\\Coma\\": "src/"
}
}
}