forked from Cyber-Duck/Silverstripe-Block-Page
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
42 lines (42 loc) · 1.08 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": "cyber-duck/silverstripe-block-page",
"description": "A modular approach to building pages in SilverStripe",
"type": "silverstripe-vendormodule",
"homepage": "http://github.com/cyber-duck/silverstripe-block-page",
"keywords": [
"silverstripe",
"silverstripe 4",
"modular page",
"block page",
"page"
],
"license": "MIT",
"authors": [
{
"name": "Andrew Mc Cormack",
"email": "andrewm@cyber-duck.co.uk",
"homepage": "https://github.com/Andrew-Mc-Cormack"
}
],
"support": {
"issues": "http://github.com/cyber-duck/silverstripe-block-page/issues"
},
"require": {
"php": ">=5.6"
},
"autoload": {
"psr-4": {
"CyberDuck\\BlockPage\\": "src/",
"CyberDuck\\BlockPage\\Tests\\": "tests/"
}
},
"extra": {
"installer-name": "block-page",
"expose": [
"assets/css",
"assets/js"
]
},
"minimum-stability": "dev",
"prefer-stable": true
}