-
Notifications
You must be signed in to change notification settings - Fork 8
/
composer.json
101 lines (101 loc) · 3.61 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
{
"name": "blueways/bw-captcha",
"description": "Captcha element with audio support for TYPO3 form components. The captcha generation does not rely on Google or third-party integrations.",
"license": [
"GPL-2.0-or-later"
],
"type": "typo3-cms-extension",
"keywords": [
"TYPO3"
],
"authors": [
{
"name": "Maik Schneider",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "^8.1",
"ext-gd": "*",
"typo3/cms-core": "^12.0 || ^13.0"
},
"require-dev": {
"armin/editorconfig-cli": "^2.0",
"bk2k/bootstrap-package": "^15.0",
"derhansen/sf_event_mgt": "^7.6 || ^8.0",
"ergebnis/composer-normalize": "^2.44",
"friendsofphp/php-cs-fixer": "^3.12",
"helhum/typo3-console": "^7.0 || ^8.0",
"helmich/typo3-typoscript-lint": "^3.2",
"roave/security-advisories": "dev-latest",
"saschaegerer/phpstan-typo3": "^1.9",
"ssch/typo3-rector": "^2.10",
"symfony/translation": "^7.1",
"typo3/cms-base-distribution": "^12.4 || ^13.4",
"typo3/cms-lowlevel": "^12.4 || ^13.4"
},
"autoload": {
"psr-4": {
"Blueways\\BwCaptcha\\": "Classes",
"Gregwar\\Captcha\\": "Libraries/Captcha/src/Gregwar/Captcha",
"MaikSchneider\\Steganography\\": "Libraries/Steganography/src"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
}
},
"extra": {
"typo3/cms": {
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"extension-key": "bw_captcha",
"web-dir": "public"
}
},
"scripts": {
"ci:composer:normalize": "@composer normalize --no-check-lock --dry-run",
"ci:editorconfig:lint": "ec --strict --git-only -n",
"ci:php:fixer": "php-cs-fixer --config=php-cs-fixer.php fix --dry-run --format=checkstyle > php-cs-fixer.xml || true",
"ci:php:lint": "find *.php . -name '*.php' ! -path './vendor/*' ! -path './var/*' ! -path '*node_modules/*' -print0 | xargs -0 -n 1 -P 4 php -l",
"ci:php:stan": "phpstan --no-progress --error-format=checkstyle > phpstan.xml || true",
"ci:rector": "rector --dry-run",
"ci:sca": [
"@ci:composer:normalize",
"@ci:php:lint",
"@ci:php:fixer",
"@ci:php:stan",
"@ci:rector",
"@ci:editorconfig:lint",
"@ci:typoscript:lint",
"@ci:xml:lint",
"@ci:yaml:lint"
],
"ci:typoscript:lint": "typoscript-lint --fail-on-warnings",
"ci:xml:lint": "find ./ -name '*.xlf' ! -path './vendor/*' ! -path './var/*' | xargs -r xmllint --schema vendor/symfony/translation/Resources/schemas/xliff-core-1.2-transitional.xsd --noout",
"ci:yaml:lint": "find ./ ! -path './vendor/*' ! -path '*/node_modules/*' \\( -name '*.yaml' -o -name '*.yml' \\) | xargs -r yaml-lint",
"composer:normalize": "@composer normalize --no-check-lock",
"editorconfig:fix": "ec --strict --fix --git-only -n",
"php:fixer": "php-cs-fixer --config=php-cs-fixer.php fix",
"php:lint": "find *.php . -name '*.php' ! -path './vendor/*' ! -path './var/*' ! -path '*node_modules/*' -print0 | xargs -0 -n 1 -P 4 php -l",
"php:stan": "phpstan --generate-baseline=phpstan-baseline.neon --allow-empty-baseline",
"rector": "rector",
"sca": [
"@composer:normalize",
"@php:fixer",
"@rector",
"@editorconfig:fix",
"@php:lint",
"@php:stan",
"@typoscript:lint",
"@xml:lint",
"@yaml:lint"
],
"typoscript:lint": "typoscript-lint",
"xml:lint": "find ./ -name '*.xlf' ! -path './vendor/*' ! -path './var/*' | xargs -r xmllint --schema vendor/symfony/translation/Resources/schemas/xliff-core-1.2-transitional.xsd --noout",
"yaml:lint": "find ./ ! -path './vendor/*' ! -path '*/node_modules/*' \\( -name '*.yaml' -o -name '*.yml' \\) | xargs -r yaml-lint"
}
}