forked from UndefinedOffset/silverstripe-colorpicker
-
Notifications
You must be signed in to change notification settings - Fork 12
/
composer.json
37 lines (37 loc) · 798 Bytes
/
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
{
"name": "tractorcow/silverstripe-colorpicker",
"description": "Color picker field for Silverstripe CMS using the ColorPicker jQuery plugin",
"type": "silverstripe-vendormodule",
"keywords": [
"silverstripe",
"color",
"colour",
"colorpicker"
],
"authors": [
{
"name": "Damian Mooyman",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/tractorcow/silverstripe-colorpicker/issues"
},
"require": {
"silverstripe/framework": "^4.0 || ^5.0"
},
"extra": {
"branch-alias": {
"dev-master": "4.0.x-dev"
},
"expose": [
"client"
]
},
"autoload": {
"psr-4": {
"TractorCow\\Colorpicker\\": "src/",
"TractorCow\\Colorpicker\\Tests\\": "tests/php/"
}
}
}