forked from shopwareArchive/swag-docs-storefront-assets
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
32 lines (32 loc) · 918 Bytes
/
Copy pathcomposer.json
File metadata and controls
32 lines (32 loc) · 918 Bytes
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": "swag/storefront-assets",
"description": "Example plugin to include custom styles and javascript into the Storefront",
"version": "v1.0.0",
"type": "shopware-platform-plugin",
"license": "MIT",
"authors": [
{
"name": "shopware AG"
}
],
"require": {
"shopware/core": "*",
"shopware/storefront": "*"
},
"extra": {
"shopware-plugin-class": "Swag\\StorefrontAssets\\StorefrontAssets",
"label": {
"de-DE": "Label für das Plugin StorefrontAssets",
"en-GB": "Label for the plugin StorefrontAssets"
},
"description": {
"de-DE": "Beschreibung für das Plugin StorefrontAssets",
"en-GB": "Description for the plugin StorefrontAssets"
}
},
"autoload": {
"psr-4": {
"Swag\\StorefrontAssets\\": "src/"
}
}
}