-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
54 lines (54 loc) · 1.64 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
48
49
50
51
52
53
54
{
"name": "columbusinteractive/typo3-easycaptcha",
"description": "An easy to use extension which enables you to use captchas in the TYPO3 form extension.",
"type": "typo3-cms-extension",
"require": {
"ext-gd": "*",
"ext-json": "*",
"php": "^7.2 || ^8.0",
"typo3/cms-core": "^12.4",
"typo3/cms-form": "^12.4",
"laminas/laminas-captcha": "^2.9",
"laminas/laminas-validator": "^2.13.0",
"laminas/laminas-session": "^2.9.0"
},
"require-dev": {
"roave/security-advisories": "dev-master"
},
"license": "MIT",
"homepage": "https://github.com/columbusinteractive/typo3-easycaptcha",
"keywords": [
"typo3",
"captcha",
"spam-protection"
],
"authors": [
{
"name": "Columbus Interactive GmbH",
"email": "hello@columbus-interactive.de",
"homepage": "https://www.columbus-interactive.de",
"role": "Developer"
}
],
"support": {
"email": "hello@columbus-interactive.de",
"source": "https://github.com/columbusinteractive/typo3-easycaptcha"
},
"autoload": {
"psr-4": {
"ColumbusInteractive\\EasyCaptcha\\": "Classes/"
}
},
"extra": {
"typo3/cms": {
"extension-key": "easycaptcha"
}
},
"scripts" : {
"extension-build": [
"composer global require helhum/ter-client",
"@composer install -d Resources/Private/Php/Composer",
"#/home/www/.composer/vendor/bin/ter-client upload easycaptcha ./ -u $USERNAME -p $password -m $VERSION"
]
}
}