-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
116 lines (116 loc) · 4.35 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "dreistromland/typo3-hcaptcha",
"type": "typo3-cms-extension",
"description": "TYPO3 Extension to add hCaptcha to EXT:form - The privacy friendly captcha alternative.",
"license": ["GPL-2.0-or-later"],
"homepage": "https://github.com/dreistromland/typo3-ext-hcaptcha",
"support": {
"issues": "https://github.com/dreistromland/typo3-ext-hcaptcha/issues"
},
"authors": [
{
"name": "waldhacker",
"email": "[email protected]",
"homepage": "https://waldhacker.dev",
"role": "Developer"
},
{
"name": "dreistrom.land AG",
"email": "[email protected]",
"homepage": "https://dreistrom.land",
"role": "Developer"
}
],
"prefer-stable": true,
"minimum-stability": "dev",
"require": {
"php": "^7.2 | ^8.0 | ^8.1 | ^8.2 | ^8.3",
"ext-json": "*",
"typo3/cms-core": "^10.4@dev || ^11.5@dev || ^12.4@dev || ^13.0@dev",
"typo3/cms-extbase": "^10.4@dev || ^11.5@dev || ^12.4@dev || ^13.0@dev",
"typo3/cms-fluid": "^10.4@dev || ^11.5@dev || ^12.4@dev || ^13.0@dev",
"typo3/cms-form": "^10.4@dev || ^11.5@dev || ^12.4@dev || ^13.0@dev"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.16 | ^3.13",
"overtrue/phplint": "^2.0 | ^5.3 | ^9.1",
"phpspec/prophecy-phpunit": "^2.0",
"phpstan/extension-installer": "^1.0",
"phpunit/phpunit": "^9.4 || ^10.5",
"roave/security-advisories": "dev-latest",
"saschaegerer/phpstan-typo3": "^1.8",
"typo3/cms-fluid-styled-content": "^10.4@dev || ^11.5@dev || ^12.1@dev || ^13.0@dev",
"typo3/coding-standards": "^0.3 | ^0.5",
"typo3/testing-framework": "^7.x-dev || ^8",
"vimeo/psalm": "^3.0 | ^4.0 | ^5.0",
"zbateson/mail-mime-parser": "^2.0"
},
"suggest": {
"vlucas/phpdotenv": "^2.4"
},
"autoload": {
"psr-4": {
"Waldhacker\\Hcaptcha\\": "Classes/",
"Waldhacker\\Hcaptcha\\Tests\\": "Tests/"
}
},
"config": {
"bin-dir": ".build/bin",
"sort-packages": true,
"vendor-dir": ".build/vendor",
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true,
"phpstan/extension-installer": true
}
},
"scripts": {
"post-autoload-dump": [
"mkdir -p .build/web/typo3conf/ext/", "[ -L .build/web/typo3conf/ext/hcaptcha ] || ln -snvf ../../../../. .build/web/typo3conf/ext/hcaptcha"
],
"ci:lint:php": [
"phplint -c build/phplint.yaml"
],
"ci:lint:yaml": [
"php build/yaml-lint.php Configuration/"
],
"ci:lint:typoscript": [
"typoscript-lint -c build/tslint.yaml"
],
"ci:stan": [
"phpstan analyze --configuration build/phpstan.neon"
],
"ci:stan:gen-baseline": [
"phpstan analyze --configuration build/phpstan.neon --generate-baseline build/phpstan.baseline.neon"
],
"ci:psalm": [
"psalm --config=build/psalm.xml --php-version=$(php -r 'echo phpversion();')"
],
"ci:psalm:gen-baseline": [
"psalm --config=build/psalm.xml --php-version=$(php -r 'echo phpversion();') --set-baseline=build/psalm-baseline.xml"
],
"ci:cgl:check": [
"php-cs-fixer fix --config build/phpcs.dist -v --dry-run"
],
"ci:cgl:fix": [
"php-cs-fixer fix --config build/phpcs.dist"
],
"ci:tests:unit:cover": [
"mkdir -p .build/logs",
"phpdbg -d memory_limit=1024M -qrr ./.build/bin/phpunit -c build/phpunit.xml --coverage-text --colors=never --coverage-clover .build/logs/clover.xml --coverage-cobertura .build/logs/cobertura.xml --coverage-html .build/logs/html"
],
"ci:tests:unit": [
"phpunit -c build/phpunit.xml --log-junit .build/logs/junit.xml"
],
"ci:tests:functional": [
"phpunit -c build/phpunit-functionals.xml --log-junit .build/logs/junit-functionals.xml"
]
},
"extra": {
"typo3/cms": {
"extension-key": "hcaptcha",
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": ".build/web"
}
}
}