-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
31 lines (31 loc) · 856 Bytes
/
composer.json
File metadata and controls
31 lines (31 loc) · 856 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
28
29
30
31
{
"name": "fjw/color-compare",
"type": "library",
"description": "A library for converting colors (Hex, RGB, HSL, CIELAB (LAB), DIN-99) and calculating color distances based on DIN-99.",
"keywords": ["color", "compare", "visual difference", "rgb", "lab", "hsl", "din99", "color distance", "distance", "php"],
"license": "MIT",
"authors": [
{
"name": "fjw",
"email": "fjw@garx.de"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=7.2.0"
},
"require-dev": {
"phpunit/phpunit": "^8",
"symfony/var-dumper": "^5.0@dev",
"squizlabs/php_codesniffer": "3.4.2"
},
"autoload": {
"classmap": [
"src/"
]
},
"scripts": {
"phpcs": "phpcs --standard=phpcs.xml"
}
}