-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathcomposer.json
More file actions
36 lines (36 loc) · 1013 Bytes
/
Copy pathcomposer.json
File metadata and controls
36 lines (36 loc) · 1013 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
32
33
34
35
36
{
"name": "ozdemirburak/iris",
"type": "library",
"description": "PHP library for color manipulation and conversion.",
"keywords": ["color", "manipulation", "conversion", "transformation", "hex", "hexa", "hsl", "hsla", "hsv", "rgb", "rgba", "cmyk", "oklch"],
"homepage": "https://colorconverter.dev",
"license": "MIT",
"support": {
"issues": "https://github.com/ozdemirburak/iris/issues",
"source": "https://github.com/ozdemirburak/iris"
},
"authors": [
{
"name": "Burak Özdemir",
"homepage": "https://ozdemir.dev"
}
],
"require": {
"php": "^8.1"
},
"require-dev": {
"phpunit/phpunit" : "^10.5|^11.0"
},
"autoload": {
"psr-4": { "OzdemirBurak\\Iris\\": "src" }
},
"autoload-dev": {
"psr-4": { "OzdemirBurak\\Iris\\Tests\\": "tests" }
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"config": {
"sort-packages": true
}
}