-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
29 lines (29 loc) · 1.07 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
{
"name": "michaelmannucci/shades",
"description": "A modifier that generates color shades from a given hex color. It can be used with the color fieldtype or with manual input. It can be used generate Tailwind CSS color palettes or to manually generate individual shades and tints.",
"license": "MIT",
"authors": [
{
"name": "Michael Mannucci",
"email": "[email protected]",
"homepage": "https://michaelmannucci.com"
}
],
"autoload": {
"psr-4": {
"Michaelmannucci\\Shades\\": "src"
}
},
"extra": {
"statamic": {
"name": "Shades",
"description": "A modifier that generates color shades from a given hex color. It can be used with the color fieldtype or with manual input. It can be used generate Tailwind CSS color palettes or to manually generate individual shades and tints."
},
"laravel": {
"providers": [
"Michaelmannucci\\Shades\\ServiceProvider"
]
}
},
"require": {}
}