-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
43 lines (43 loc) · 906 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
35
36
37
38
39
40
41
42
43
{
"name": "itwmw/color-difference",
"description": "Color difference:Din99,CIE76,CIE1994,CIEDE2000,CMC l:c",
"authors": [
{
"name": "MicroDreamTeam",
"email": "[email protected]"
}
],
"license": "Apache-2.0",
"autoload": {
"psr-4": {
"Itwmw\\ColorDifference\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Itwmw\\ColorDifference\\Tests\\": "tests/"
}
},
"keywords": [
"色差",
"color difference",
"DIN99",
"CIE1976",
"CIE76",
"CIE1994",
"CIE94",
"CMC",
"CMClc",
"CIEDE2000",
"CIE2000",
"CIE00",
"Delta E"
],
"require": {
"php": "^8.1"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.4",
"phpunit/phpunit": "^9.5"
}
}