-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
45 lines (45 loc) · 1.13 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
{
"name": "clearbold/craft-color-palette",
"description": "Configure color themes. Select color themes for page or component styles via entry fields. Output CSS class names or color values in your templates.",
"version": "1.0.3",
"type": "craft-plugin",
"homepage": "https://clearbold.com",
"license": "proprietary",
"authors": [
{
"name": "Mark Reeves",
"homepage": "https://reeves.studio"
}
],
"keywords": [
"craft",
"cms",
"craftcms",
"design",
"color",
"palette",
"theme",
"themes"
],
"require": {
"craftcms/cms": "^3.6.6"
},
"autoload": {
"psr-4": {
"clearbold\\colorpalette\\": "src/"
}
},
"support": {
"docs": "https://github.com/clearbold/craft-color-palette",
"source": "https://github.com/clearbold/craft-color-palette",
"issues": "https://github.com/clearbold/craft-color-palette/issues"
},
"extra": {
"name": "Color Palette by Clearbold",
"handle": "colorpalette",
"hasCpSection": true,
"developer": "Clearbold",
"developerUrl": "https://clearbold.com/",
"class": "clearbold\\colorpalette\\Plugin"
}
}