-
Notifications
You must be signed in to change notification settings - Fork 23
/
composer.json
63 lines (63 loc) · 1.95 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
{
"name": "craftpulse/craft-colour-swatches",
"description": "Let clients choose from a predefined set of colours and utilise associated colour codes and class names in your templates.",
"type": "craft-plugin",
"version": "4.5.3",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"colour-swatches",
"color-swatches",
"colors",
"colours",
"swatches"
],
"support": {
"email": "[email protected]",
"docs": "https://github.com/percipioglobal/craft-colour-swatches/blob/v4/README.md",
"issues": "https://github.com/percipioglobal/craft-colour-swatches/issues"
},
"license": "MIT",
"authors": [
{
"name": "Craft Pulse",
"homepage": "https://github.com/craftpulse"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^8.0.2",
"craftcms/cms": "^4.0.0"
},
"require-dev": {
"craftcms/cms": "^4.0.0",
"craftcms/phpstan": "dev-main"
},
"autoload": {
"psr-4": {
"percipiolondon\\colourswatches\\": "src/"
}
},
"extra": {
"name": "Colour Swatches",
"handle": "colour-swatches",
"description": "Adding custom selectable colour palettes, gradients, classes and more to your field types.",
"developer": "craftpulse",
"developerUrl": "https://github.com/craftpulse",
"documentationUrl": "https://github.com/craftpulse/craft-colour-swatches/blob/v4/README.md",
"changelogUrl": "https://github.com/craftpulse/craft-colour-swatches/blob/v4/CHANGELOG.md",
"class": "percipiolondon\\colourswatches\\ColourSwatches"
},
"scripts": {
"phpstan": "phpstan --memory-limit=1G"
},
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true
}
}
}