-
Notifications
You must be signed in to change notification settings - Fork 8
/
composer.json
executable file
·47 lines (47 loc) · 1.93 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
43
44
45
46
47
{
"name": "frosh/platform-share-basket",
"version": "2.1.0",
"type": "shopware-platform-plugin",
"description": "Shopware Plugin to share your basket",
"license": "MIT",
"authors": [
{
"name": "FriendsOfShopware",
"homepage": "https://friendsofshopware.de"
}
],
"autoload": {
"psr-4": {
"Frosh\\ShareBasket\\": "src/"
}
},
"extra": {
"shopware-plugin-class": "Frosh\\ShareBasket\\FroshPlatformShareBasket",
"copyright": "FriendsOfShopware",
"label": {
"de-DE": "Warenkorb teilen",
"en-GB": "Share basket"
},
"description": {
"de-DE": "Dieses Plugin erlaubt es Ihren Kunden den aktuellen Warenkorb zu speichern und per Link, E-Mail, Facebook oder WhatsApp zu teilen. Einsehbare gespeicherte Warenkörbe in Administration.",
"en-GB": "This plugin allows your customers to save the current shopping cart and share it via link, email, Facebook or WhatsApp. Saved baskets can be viewed in administration."
},
"manufacturerLink": {
"de-DE": "https://github.com/FriendsOfShopware/FroshPlatformShareBasket",
"en-GB": "https://github.com/FriendsOfShopware/FroshPlatformShareBasket"
},
"supportLink": {
"de-DE": "https://github.com/FriendsOfShopware/FroshPlatformShareBasket/issues",
"en-GB": "https://github.com/FriendsOfShopware/FroshPlatformShareBasket/issues"
}
},
"require": {
"shopware/core": "~6.6.0",
"shopware/administration": "~6.6.0",
"shopware/storefront": "~6.6.0"
},
"scripts": {
"cs-fix": "docker run --rm -v $(pwd):$(pwd) -w $(pwd) oskarstark/php-cs-fixer-ga --rules @PER-CS2.0,@PER-CS2.0:risky --allow-risky=yes .",
"phpstan": "docker run --rm -v $(pwd):/app aragon999/phpstan-shopware:v6.6.0.0-rc1 analyse --level max ."
}
}