-
-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathcomposer.json
More file actions
74 lines (73 loc) · 1.81 KB
/
Copy pathcomposer.json
File metadata and controls
74 lines (73 loc) · 1.81 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "evoweb/recaptcha",
"type": "typo3-cms-extension",
"description": "Easy on Humans, Hard on Bots",
"homepage": "https://www.evoweb.de",
"license": [
"GPL-2.0-or-later"
],
"keywords": [
"recaptcha",
"nocaptcha 2",
"invisible captcha"
],
"support": {
"source" : "https://github.com/evoWeb/recaptcha",
"issues": "https://github.com/evoWeb/recaptcha/issues",
"docs": "https://docs.typo3.org/p/evoweb/recaptcha/main/en-us/"
},
"config": {
"cache-dir": ".cache/composer",
"bin-dir": "bin",
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
}
},
"require": {
"typo3/cms-core": "^14.3",
"typo3/cms-extbase": "^13.4 || ^14.3 || 15.*.*@dev || dev-main",
"typo3/cms-fluid": "^13.4 || ^14.3 || 15.*.*@dev || dev-main",
"typo3/cms-frontend": "^13.4 || ^14.3 || 15.*.*@dev || dev-main",
"psr/http-message": "^1.1 || ^2.0"
},
"require-dev": {
"evoweb/sf-register": "^13.2.4 || ^14.0.2 || dev-develop",
"friendsofphp/php-cs-fixer": "^3.64.0",
"phpstan/phpstan": "^2.1.54",
"symfony/translation": "^7.4 || ^8.1"
},
"suggest": {
"typo3/cms-form": "*"
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"typo3/cms": {
"extension-key": "recaptcha"
}
},
"scripts": {
"prepare-release": [
"rm -rf .github",
"rm -rf Build",
"rm .gitattributes",
"rm .gitignore",
"sed -i \"s/version' => '.*'/version' => '$(echo ${GITHUB_REF} | cut -d / -f 3)'/\" ext_emconf.php\n"
],
"post-install-cmd": [
"ln -sf ../vendor/typo3/testing-framework/Resources/Core/Build/ Build/phpunit;"
],
"post-update-cmd": [
"@post-install-cmd"
],
"post-autoload-dump": [
"TYPO3\\TestingFramework\\Composer\\ExtensionTestEnvironment::prepare"
]
},
"autoload": {
"psr-4": {
"Evoweb\\Recaptcha\\": "Classes/"
}
}
}