-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
29 lines (29 loc) · 840 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
{
"name": "christopherdarling/silverstripe-theme-manifest-assets",
"description": "Loads theme assets from a JSON manifest produced from a build tool like Webpack",
"type": "silverstripe-vendormodule",
"keywords": ["silverstripe", "manifest", "asset", "theme", "webpack"],
"license": "MIT",
"authors": [
{
"name": "Christopher Darling",
"homepage": "http://www.christopherdarling.co.uk",
"role": "Developer"
}
],
"require": {
"silverstripe/vendor-plugin": "^1",
"silverstripe/framework": "^4.0"
},
"support": {
"issues": "https://github.com/christopherdarling/silverstripe-theme-manifest-assets"
},
"extra": {
"installer-name": "cd_silverstripe-theme-manifest-assets"
},
"autoload": {
"psr-4": {
"ChristopherDarling\\ThemeManifestAssets\\": "src/"
}
}
}