-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
29 lines (29 loc) · 1.02 KB
/
composer.json
File metadata and controls
29 lines (29 loc) · 1.02 KB
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
{
"name": "tei187/intensification-gradient",
"type": "library",
"description": "IntensificationGradient is a PHP class used to generate a decimal-step-based RGBa gradient data arrays, based on defined stops. Especially usefull with intensification displays (like ticks per hour, visits per day, etc.) or compositions based on gradient range of limiting colors (brand guides, etc.).",
"homepage": "https://github.com/tei187/IntensificationGradient",
"license": "MIT",
"keywords": [
"generator", "gradient", "html-output", "color-gradient", "gradient-generator", "rgba-color", "hex-color", "intensification"
],
"autoload": {
"psr-4": {
"tei187\\IntensificationGradient\\": "src/"
}
},
"authors": [
{
"name": "tei187",
"email": "bonk.piotr@gmail.com",
"role": "developer"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=7.0"
},
"config": {
"sort-packages": true
}
}