-
Notifications
You must be signed in to change notification settings - Fork 23
/
composer.json
87 lines (87 loc) · 2.36 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
{
"name": "in2code/powermail_cond",
"description": "Add conditions (via AJAX) to powermail forms for fields and pages",
"license": "GPL-2.0-or-later",
"type": "typo3-cms-extension",
"keywords": [
"typo3",
"form",
"mailform",
"spamprevention"
],
"authors": [
{
"name": "Alex Kellner",
"email": "[email protected]",
"homepage": "https://www.in2code.de",
"role": "Product owner"
},
{
"name": "Oliver Eglseder",
"email": "[email protected]",
"homepage": "https://www.in2code.de",
"role": "Developer"
}
],
"homepage": "https://github.com/in2code-de/powermail_cond",
"require": {
"php": "^8.1",
"ext-json": "*",
"ext-pdo": "*",
"in2code/powermail": "^11.0 || ^12.0",
"typo3/cms-core": "^12.4"
},
"require-dev": {
"typo3/cms-extbase": "^12.4",
"typo3/cms-extensionmanager": "^12.4",
"typo3/cms-felogin": "^12.4",
"typo3/cms-filelist": "^12.4",
"typo3/cms-fluid-styled-content": "^12.4",
"typo3/cms-frontend": "^12.4",
"typo3/cms-info": "^12.4",
"typo3/cms-install": "^12.4",
"typo3/cms-recordlist": "^12.4",
"typo3/cms-rte-ckeditor": "^12.4",
"typo3/cms-scheduler": "^12.4",
"typo3/cms-setup": "^12.4",
"typo3/cms-t3editor": "^12.4",
"typo3/cms-tstemplate": "^12.4",
"typo3/cms-lowlevel": "^12.4",
"helmich/typo3-typoscript-lint": "^3.1",
"mikey179/vfsstream": "^1.6",
"friendsofphp/php-cs-fixer": "^3.10",
"helhum/typo3-console": "^8.0",
"symfony/config": "^6.2",
"typo3/cms-adminpanel": "^12.4",
"typo3/cms-belog": "^12.4"
},
"replace": {
"typo3-ter/powermail-cond": "self.version"
},
"autoload": {
"psr-4": {
"In2code\\PowermailCond\\": "Classes/"
}
},
"config": {
"allow-plugins": {
"typo3/cms-composer-installers": true,
"typo3/class-alias-loader": true,
"ergebnis/composer-normalize": false
},
"bin-dir": ".Build/bin",
"vendor-dir": ".Build/vendor"
},
"extra": {
"typo3/cms": {
"extension-key": "powermail_cond",
"web-dir": ".Build/public"
}
},
"scripts": {
"test:php:cs": "php-cs-fixer fix --dry-run --config=.project/tests/.php-cs-fixer.php --diff",
"test:php:csfix": "php-cs-fixer fix --config=.project/tests/.php-cs-fixer.php --diff",
"test:php:lint": "find *.php Classes Configuration -name '*.php' -print0 | xargs -0 -n 1 -P 4 php -l",
"test:ts:lint": "typoscript-lint -c .project/tests/typoscript-lint.yml --fail-on-warnings"
}
}