-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
52 lines (52 loc) · 2.1 KB
/
composer.json
File metadata and controls
52 lines (52 loc) · 2.1 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "frosh/altcha-captcha",
"description": "Self-hosted Altcha Captcha plugin for Shopware 6. Adds secure, user-friendly bot protection without relying on third-party services.",
"type": "shopware-platform-plugin",
"version": "1.9.0",
"authors": [
{
"name": "FriendsOfShopware",
"homepage": "https://friendsofshopware.de"
},
{
"name": "tinect"
}
],
"require": {
"shopware/core": "~6.6.0||~6.7.0",
"shopware/storefront": "*",
"altcha-org/altcha": "1.3.3"
},
"license": "MIT",
"autoload": {
"psr-4": {
"Frosh\\AltchaCaptcha\\": "src/"
}
},
"extra": {
"shopware-plugin-class": "Frosh\\AltchaCaptcha\\FroshAltchaCaptcha",
"label": {
"de-DE": "Altcha Captcha",
"en-GB": "Altcha Captcha"
},
"description": {
"de-DE": "Fügt selbstgehostetes Altcha-CAPTCHA zu Shopware 6 hinzu und stärkt die Formularsicherheit mit einer leichten, datenschutzfreundlichen Lösung gegen automatisierten Spam.",
"en-GB": "Adds self-hosted Altcha CAPTCHA support to Shopware 6, improving form security with a lightweight, privacy-first solution that protects shops from automated spam."
},
"manufacturerLink": {
"de-DE": "https://github.com/FriendsOfShopware/FroshAltchaCaptcha/",
"en-GB": "https://github.com/FriendsOfShopware/FroshAltchaCaptcha/"
},
"supportLink": {
"de-DE": "https://github.com/FriendsOfShopware/FroshAltchaCaptcha/",
"en-GB": "https://github.com/FriendsOfShopware/FroshAltchaCaptcha/"
}
},
"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"
}
}