-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
35 lines (35 loc) · 912 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
30
31
32
33
34
35
{
"name": "runelaenen/sw6-redirects",
"description": "Redirect plugin for Shopware 6",
"version": "1.4.0",
"type": "shopware-platform-plugin",
"license": "MIT",
"authors": [
{
"name": "Rune Laenen",
"email": "[email protected]",
"homepage": "https://laenen.me"
}
],
"require": {
"php": "^7.4 || ^8.0"
},
"extra": {
"shopware-plugin-class": "RuneLaenen\\Redirects\\RuneLaenenRedirects",
"label": {
"de-DE": "Redirect Plugin",
"en-GB": "Redirect plugin"
}
},
"autoload": {
"psr-4": {
"RuneLaenen\\Redirects\\": "src/"
}
},
"require-dev": {
"phpro/grumphp-shim": "^1.3",
"shopware/platform": "*",
"symplify/easy-coding-standard": "^9.4",
"kubawerlos/php-cs-fixer-custom-fixers": "^3.1"
}
}