-
Notifications
You must be signed in to change notification settings - Fork 60
/
composer.json
42 lines (42 loc) · 1.21 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
{
"name": "sheadawson/silverstripe-blocks",
"description": "An alternative to the SilverStripe Widgets module.",
"type": "silverstripe-module",
"keywords": [
"silverstripe",
"blocks",
"widgets"
],
"homepage": "https://github.com/sheadawson/silverstripe-blocks",
"authors": [
{
"name": "Shea Dawson",
"email": "[email protected]"
}
],
"require": {
"composer/installers": "*",
"silverstripe/framework": "^4.0",
"silverstripe/cms": "^4.0",
"symbiote/silverstripe-gridfieldextensions": "^3.0",
"symbiote/silverstripe-multivaluefield": "^5.0",
"unclecheese/betterbuttons": "2.x-dev"
},
"suggest": {
"unisolutions/silverstripe-copybutton": "Duplicate Blocks in Block Admin",
"micschk/silverstripe-gridfieldsitetreebuttons": "Edit pages directly from a Block's 'used on page' list"
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"installer-name": "blocks",
"branch-alias": {
"dev-master": "2.0.x-dev"
}
},
"autoload": {
"psr-4": {
"SheaDawson\\Blocks\\": "src/"
}
}
}