-
Notifications
You must be signed in to change notification settings - Fork 20
/
composer.json
36 lines (36 loc) · 1.25 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
{
"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"],
"homepage": "https://github.com/ozdemirburak/iris",
"license": "MIT",
"authors": [
{
"name": "Burak Özdemir",
"homepage": "https://ozdemirburak.com"
}
],
"require": {
"php": "^8.0"
},
"require-dev": {
"phpunit/phpunit" : "~8.0|~9.0",
"squizlabs/php_codesniffer": "~3.5"
},
"autoload": {
"psr-4": { "OzdemirBurak\\Iris\\": "src" }
},
"autoload-dev": {
"psr-4": { "OzdemirBurak\\Iris\\Tests\\": "tests" }
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-coverage": "vendor/bin/phpunit --coverage-html coverage",
"check-style": "vendor/bin/phpcs -p --standard=PSR2 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src tests",
"fix-style": "vendor/bin/phpcbf -p --standard=PSR2 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src tests"
},
"config": {
"sort-packages": true
}
}