forked from maikschneider/bw_captcha
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
102 lines (102 loc) · 3.52 KB
/
composer.json
File metadata and controls
102 lines (102 loc) · 3.52 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
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
{
"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": "schneider.maik@me.com",
"role": "Developer"
}
],
"require": {
"php": "^8.1",
"ext-gd": "*",
"typo3/cms-core": "^12.0 || ^13.0 || ^14.0"
},
"require-dev": {
"armin/editorconfig-cli": "^2.0",
"bk2k/bootstrap-package": "^15.0 || ^16.0",
"derhansen/sf_event_mgt": "^7.6 || ^8.0 || ^9.0",
"ergebnis/composer-normalize": "^2.44",
"friendsofphp/php-cs-fixer": "^3.12",
"helhum/typo3-console": "^7.0 || ^8.0 || ^9.0",
"helmich/typo3-typoscript-lint": "^3.2",
"move-elevator/composer-translation-validator": "^1.3.1",
"saschaegerer/phpstan-typo3": "^2.1.1 || ^3.0.0",
"ssch/typo3-rector": "^3.9.0",
"typo3/cms-base-distribution": "^12.4 || ^13.4 || ^14.0",
"typo3/cms-lowlevel": "^12.4 || ^13.4 || ^14.0"
},
"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,
"move-elevator/composer-translation-validator": true,
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
},
"lock": false
},
"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:language:lint": "composer validate-translations Resources/Private/Language",
"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:language:lint",
"@ci:rector",
"@ci:editorconfig:lint",
"@ci:typoscript:lint",
"@ci:yaml:lint"
],
"ci:typoscript:lint": "typoscript-lint --fail-on-warnings",
"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",
"language:lint": "composer validate-translations Resources/Private/Language",
"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",
"@language:lint",
"@php:stan",
"@typoscript:lint",
"@yaml:lint"
],
"typoscript:lint": "typoscript-lint",
"yaml:lint": "find ./ ! -path './vendor/*' ! -path '*/node_modules/*' \\( -name '*.yaml' -o -name '*.yml' \\) | xargs -r yaml-lint"
}
}