forked from TehTux/jh_captcha
-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
47 lines (47 loc) · 1.43 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": "haffner/jh_captcha",
"description": "Use Google reCAPTCHA (v2/v3) in your own TYPO3 extensions, EXT:form, EXT:powermail and EXT:formhandler as spam protection.",
"type": "typo3-cms-extension",
"keywords": ["TYPO3 CMS", "jh_captcha", "Captcha", "reCAPTCHA"],
"license": "GPL-2.0",
"authors": [
{
"name": "Jan Haffner",
"email": "info@jan-haffner.de",
"homepage": "http://www.jan-haffner.de",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/TehTux/jh_captcha/issues",
"docs": "https://docs.typo3.org/typo3cms/extensions/jh_captcha/"
},
"require": {
"typo3/cms-core": "^10.4 || ^11.5"
},
"replace": {
"typo3-ter/jh_captcha": "self.version"
},
"autoload": {
"psr-4": {
"Haffner\\JhCaptcha\\": "Classes"
}
},
"scripts": {
"test:phplint": "find . -name \\*.php ! -path \"./.Build/*\" | parallel --gnu php -d display_errors=stderr -l {} \\;",
"post-autoload-dump": [
"@php -r 'is_dir($extFolder=__DIR__.\"/.Build/public/typo3conf/ext/\") || mkdir($extFolder, 0777, true);'",
"@php -r 'file_exists($extFolder=__DIR__.\"/.Build/public/typo3conf/ext/jh_captcha\") || symlink(__DIR__,$extFolder);'"
]
},
"extra": {
"typo3/cms": {
"extension-key": "jh_captcha",
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": ".Build/public"
}
},
"config": {
"vendor-dir": ".Build/vendor"
}
}