-
Notifications
You must be signed in to change notification settings - Fork 174
/
composer.json
125 lines (125 loc) · 3.96 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
117
118
119
120
121
122
123
124
125
{
"name": "in2code/powermail",
"description": "Powermail is a well-known, editor-friendly, powerful and easy to use mailform extension for TYPO3 with a lots of features",
"keywords": [
"typo3",
"form",
"mailform",
"spamprevention"
],
"homepage": "https://github.com/einpraegsam/powermail",
"authors": [
{
"name": "Stefan Busemann",
"email": "[email protected]",
"role": "Update Manager",
"homepage": "https://www.in2code.de"
},
{
"name": "Alex Kellner",
"email": "[email protected]",
"role": "Product owner, Technical owner",
"homepage": "https://www.in2code.de"
},
{
"name": "Marcus Schwemer",
"email": "[email protected]",
"role": "Developer",
"homepage": "https://www.in2code.de"
}
],
"type": "typo3-cms-extension",
"license": "GPL-2.0-or-later",
"require": {
"php": "^8.1",
"typo3/cms-core": "^12.4",
"ext-json": "*",
"ext-gd": "*",
"ext-fileinfo": "*",
"ext-curl": "*"
},
"suggest": {
"sjbr/static-info-tables": "*",
"jambagecom/base-excel": "^v1.29.0"
},
"replace": {
"typo3-ter/powermail": "self.version"
},
"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",
"squizlabs/php_codesniffer": "^3.5",
"phpmd/phpmd": "^2.8",
"behat/behat": "^3.8",
"helhum/typo3-console": "^8.0.x-dev",
"se/selenium-server-standalone": "^3.141",
"symfony/config": "^6.2",
"friends-of-behat/mink-extension": "^2.5",
"behat/mink-selenium2-driver": "^1.5",
"typo3/cms-adminpanel": "^12.4",
"typo3/cms-belog": "^12.4",
"typo3/cms-beuser": "^12.4",
"typo3/cms-dashboard": "^12.4",
"friends-of-behat/mink-browserkit-driver": "^1.5",
"drevops/behat-screenshot": "^1.1",
"typo3/testing-framework": "^8.0",
"phpstan/phpstan": "^1.12.3",
"jambagecom/base-excel": "^2.1"
},
"autoload": {
"psr-4": {
"In2code\\Powermail\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"In2code\\Powermail\\Tests\\": "Tests",
"TYPO3\\CMS\\Core\\Tests\\": ".Build/vendor/typo3/cms/typo3/sysext/core/Tests/",
"TYPO3\\CMS\\Fluid\\Tests\\": ".Build/vendor/typo3/cms/typo3/sysext/fluid/Tests/"
}
},
"config": {
"vendor-dir": ".build/vendor",
"bin-dir": ".build/vendor/bin",
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
}
},
"scripts": {
"render:docs": "docker run --rm --pull always -v $(pwd):/project -it ghcr.io/typo3-documentation/render-guides:latest --config=Documentation",
"test:behaviour": "behat --config Tests/Behavior/behat.yml",
"test:behaviour:tag": "behat --config Tests/Behavior/behat.yml --tags",
"test:behaviour:stop": "behat --config Tests/Behavior/behat.yml --stop-on-failure",
"test:php:cs": "php-cs-fixer --version && php-cs-fixer fix --dry-run --config=.project/tests/.php-cs-fixer.php --diff",
"test:php:lint": "find *.php Classes Configuration Tests -name '*.php' -print0 | xargs -0 -n 1 -P 4 php -l",
"test:php:phpstan": "phpstan analyse -c .project/tests/phpstan.neon",
"test:php:phpstan:generate-baseline": "phpstan analyse -c .project/tests/phpstan.neon --generate-baseline .project/tests/phpstan-baseline.neon",
"test:typoscript:lint": "typoscript-lint --config=.project/tests/typoscript-lint.yml",
"test:unit": "phpunit -c phpunit.xml.dist"
},
"extra": {
"typo3/cms": {
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": ".build/public",
"extension-key": "powermail",
"ignore-as-root": false
}
}
}