forked from rossriley/bolt-extension-colourpicker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
32 lines (31 loc) · 799 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
{
"name": "bolt/colourpicker",
"description": "An extension to add a colourpicker as a field type within Bolt",
"type": "bolt-extension",
"require": {
"bolt/bolt": ">1.9,<3.0.0"
},
"license": "MIT",
"authors": [{"name": "Ross Riley", "email": "[email protected]"}
],
"keywords": [
"backend", "field", "colourpicker"
],
"minimum-stability":"dev",
"prefer-stable":true,
"autoload": {
"files": [
"init.php"
],
"psr-4": {
"Bolt\\Extensions\\Bolt\\Colourpicker\\": "",
"Bolt\\Extensions\\Bolt\\Colourpicker\\Tests\\": "tests"
}
},
"extra": {
"bolt-assets": "assets",
"bolt-screenshots": [
"screenshot.png"
]
}
}