forked from in2code-de/powermail_cond
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
63 lines (63 loc) · 1.9 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
{
"name": "in2code/powermail_cond",
"description": "Add conditions (via AJAX) to powermail forms for fields and pages",
"keywords": ["typo3", "form", "mailform", "spamprevention"],
"homepage": "https://github.com/einpraegsam/powermail_cond",
"authors": [
{
"name": "Alex Kellner",
"email": "[email protected]",
"role": "Product owner",
"homepage": "https://www.in2code.de"
},
{
"name": "Oliver Eglseder",
"email": "[email protected]",
"role": "Developer",
"homepage": "https://www.in2code.de"
}
],
"type": "typo3-cms-extension",
"license": "GPL-2.0-or-later",
"require": {
"in2code/powermail": ">=8.0.0 < 9.0.0",
"ext-json": "*"
},
"require-dev": {
"typo3/cms-core": "^10.4",
"nimut/testing-framework": "^5.0",
"mikey179/vfsstream": "^1.6",
"phpunit/phpunit": "^6.0",
"squizlabs/php_codesniffer": "^3.5",
"phpmd/phpmd": "^2.8",
"friendsofphp/php-cs-fixer": "^3.3",
"helmich/typo3-typoscript-lint": "^2.5"
},
"replace": {
"typo3-ter/powermail-cond": "self.version"
},
"autoload": {
"psr-4": {
"In2code\\PowermailCond\\": "Classes/"
}
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin"
},
"scripts": {
"post-autoload-dump": [
"mkdir -p .Build/public/typo3conf/ext/",
"[ -L .Build/public/typo3conf/ext/powermail_cond ] || ln -snvf ../../../../. .Build/public/typo3conf/ext/powermail_cond"
],
"test:php:cs": "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:ts:lint": "typoscript-lint -c .project/tests/typoscript-lint.yml --fail-on-warnings"
},
"extra": {
"typo3/cms": {
"web-dir": ".Build/public",
"extension-key": "powermail_cond"
}
}
}