-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
65 lines (65 loc) · 1.49 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "ssnepenthe/color-utils",
"description": "A PHP library for performing SASS-like color manipulations.",
"license": "GPL-2.0-or-later",
"type": "library",
"keywords": [
"alpha",
"blue",
"brightness",
"color",
"convert",
"conversion",
"green",
"hex",
"hexadecimal",
"hsl",
"hsla",
"hue",
"lightness",
"luminance",
"red",
"rgb",
"rgba",
"sass",
"saturation",
"scss",
"manipulation",
"transformation"
],
"homepage": "https://github.com/ssnepenthe/color-utils",
"require": {
"php": "^7.0 || ^8.0"
},
"require-dev": {
"phpunit/phpunit": "^6.0 || ^7.0 || ^8.5.14 || ^9.0",
"psy/psysh": "^0.10 || ^0.11",
"vimeo/psalm": "^3.0 || ^4.0",
"yoast/phpunit-polyfills": "^1.0"
},
"autoload": {
"psr-4": {
"SSNepenthe\\ColorUtils\\": "src/"
},
"files": [
"inc/colors.php",
"inc/helpers.php",
"inc/transformations.php"
]
},
"config": {
"allow-plugins": {
"ocramius/package-versions": true
}
},
"extra": {
"composer-normalize": {
"indent-size": 4,
"indent-style": "space"
}
},
"scripts": {
"phpunit": "./vendor/bin/phpunit --colors=always",
"psalm": "./vendor/bin/psalm"
}
}