-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
36 lines (36 loc) · 1.06 KB
/
composer.json
File metadata and controls
36 lines (36 loc) · 1.06 KB
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
{
"name": "tinect/redirects",
"description": "Redirect plugin for Shopware 6",
"version": "3.3.2",
"type": "shopware-platform-plugin",
"license": "MIT",
"authors": [
{
"name": "Tinect"
}
],
"minimum-stability": "RC",
"require": {
"shopware/core": "~6.6.10||~6.7.0",
"shopware/storefront": "*"
},
"extra": {
"shopware-plugin-class": "Tinect\\Redirects\\TinectRedirects",
"label": {
"de-DE": "Redirect Plugin",
"en-GB": "Redirect plugin"
}
},
"autoload": {
"psr-4": {
"Tinect\\Redirects\\": "src/"
}
},
"scripts": {
"check": [
"docker run --rm -v $(pwd):/ext shopware/shopware-cli:latest extension validate --check-against lowest --full /ext",
"docker run --rm -v $(pwd):/ext shopware/shopware-cli:latest extension validate --check-against highest --full /ext"
],
"format": "docker run --rm -v $(pwd):/ext shopware/shopware-cli:latest extension format /ext"
}
}