-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
130 lines (130 loc) · 3.99 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
126
127
128
129
130
{
"name": "in2code/powermail_cleaner",
"description": "Powermail Cleaner helps to clean up quick and easy old requests",
"keywords": [
"typo3",
"form",
"mailform",
"spamprevention"
],
"homepage": "https://www.in2code.de/",
"support": {
"issues": "https://github.com/in2code-pro/powermail_cleaner/issues",
"source": "https://github.com/in2code-pro/powermail_cleaner/"
},
"authors": [
{
"name": "Marcus Schwemer",
"email": "[email protected]",
"role": "Product Owner, Developer"
},
{
"name": "Stefan Busemann",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Daniel Hoffmann",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Andreas Nedbal",
"email": "[email protected]",
"role": "Developer"
}
],
"type": "typo3-cms-extension",
"license": "GPL-2.0-or-later",
"require": {
"typo3/cms-core": "^12.4",
"in2code/powermail": "^12.0 || dev-eap",
"ext-json": "*",
"ext-gd": "*"
},
"require-dev": {
"typo3/cms-about": "^12.4",
"typo3/cms-adminpanel": "^12.4",
"typo3/cms-backend": "^12.4",
"typo3/cms-belog": "^12.4",
"typo3/cms-beuser": "^12.4",
"typo3/cms-extbase": "^12.4",
"typo3/cms-extensionmanager": "^12.4",
"typo3/cms-filelist": "^12.4",
"typo3/cms-fluid": "^12.4",
"typo3/cms-fluid-styled-content": "^12.4",
"typo3/cms-form": "^12.4",
"typo3/cms-frontend": "^12.4",
"typo3/cms-impexp": "^12.4",
"typo3/cms-info": "^12.4",
"typo3/cms-install": "^12.4",
"typo3/cms-lowlevel": "^12.4",
"typo3/cms-opendocs": "^12.4",
"typo3/cms-recordlist": "^12.4",
"typo3/cms-recycler": "^12.4",
"typo3/cms-redirects": "^12.4",
"typo3/cms-reports": "^12.4",
"typo3/cms-rte-ckeditor": "^12.4",
"typo3/cms-scheduler": "^12.4",
"typo3/cms-seo": "^12.4",
"typo3/cms-setup": "^12.4",
"typo3/cms-tstemplate": "^12.4",
"typo3/cms-viewpage": "^12.4",
"helhum/typo3-console": "^8.0",
"undefined/translate-locallang": "^2.9",
"friendsofphp/php-cs-fixer": "^3.64",
"helmich/typo3-typoscript-lint": "^3.2",
"squizlabs/php_codesniffer": "^3.10",
"phpmd/phpmd": "^2.15",
"behat/behat": "^3.14",
"se/selenium-server-standalone": "^3.141",
"friends-of-behat/mink-extension": "^2.7",
"behat/mink-selenium2-driver": "^1.7",
"friends-of-behat/mink-browserkit-driver": "^1.6",
"drevops/behat-screenshot": "^1.2"
},
"repositories": [
{
"type": "git",
"url": "[email protected]:in2code-pro/powermail.git"
}
],
"autoload": {
"psr-4": {
"In2code\\PowermailCleaner\\": "Classes/"
}
},
"extra": {
"typo3/cms": {
"web-dir": ".build/public",
"extension-key": "powermail_cleaner"
}
},
"config": {
"vendor-dir": ".build/vendor",
"bin-dir": ".build/bin",
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
}
},
"conflict": {
"traw/powermailcaptcha": "*"
},
"scripts": {
"post-autoload-dump": [
"mkdir -p .build/vendor/in2code/",
"[ -L .build/vendor/in2code/powermail_cleaner ] || ln -snvf ../../../. .build/vendor/in2code/powermail_cleaner"
],
"package-states": [
".build/bin/typo3cms install:fixfolderstructure"
],
"test:behaviour": "behat --config Tests/Behavior/behat.ddev.yml",
"test:behaviour:tag": "behat --config Tests/Behavior/behat.ddev.yml --tags",
"test:behaviour:stop": "behat --config Tests/Behavior/behat.ddev.yml --stop-on-failure",
"test:php:cs": ".Build/bin/php-cs-fixer --version && .Build/bin/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:typoscript:lint": "typoscript-lint --config=.project/tests/typoscript-lint.yml",
"test:unit": "phpunit -c phpunit.xml.dist"
}
}