-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
107 lines (107 loc) · 3.41 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
{
"name": "xima/xima-typo3-mailcatcher",
"type": "typo3-cms-extension",
"description": "Display mails that were send to log file",
"homepage": "https://www.xima.de",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Maik Schneider",
"role": "Developer",
"email": "[email protected]"
}
],
"repositories": [
{
"type": "github",
"url": "[email protected]:bmack/TYPO3-Console.git"
},
{
"type": "github",
"url": "[email protected]:maikschneider/typo3-codeception-helper.git"
}
],
"keywords": [
"typo3",
"typo3-cms-extension",
"mail"
],
"require": {
"php": "^7.4 || ^8.0",
"typo3/cms-core": "^11.0 || ^12.0 || ^13.0",
"ext-json": "*",
"zbateson/mail-mime-parser": "^2.0 || ^3.0"
},
"require-dev": {
"codeception/module-phpbrowser": "*",
"phpstan/phpstan": "^1.6",
"bk2k/bootstrap-package": "*",
"friendsofphp/php-cs-fixer": "^3.12",
"saschaegerer/phpstan-typo3": "^1.8",
"phpstan/extension-installer": "^1.3",
"phpmd/phpmd": "^2.13.0",
"ssch/typo3-rector": "*",
"typo3/testing-framework": "*",
"codeception/module-asserts": "*",
"codeception/module-cli": "*",
"codeception/module-webdriver": "*",
"helhum/typo3-console": "* || dev-issue/1169",
"typo3/cms-install": "*",
"codeception/module-filesystem": "*",
"eliashaeussler/typo3-codeception-helper": "dev-main",
"symfony/translation": "*"
},
"autoload": {
"psr-4": {
"Xima\\XimaTypo3Mailcatcher\\": "Classes"
}
},
"autoload-dev": {
"psr-4": {
"Xima\\XimaTypo3Mailcatcher\\Tests\\": "Tests/"
}
},
"extra": {
"typo3/cms": {
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": "public",
"extension-key": "xima_typo3_mailcatcher"
}
},
"config": {
"vendor-dir": "vendor",
"allow-plugins": {
"composer/installers": true,
"typo3/cms-composer-installers": true,
"typo3/class-alias-loader": true,
"phpstan/extension-installer": true,
"helhum/typo3-console-plugin": true,
"codeception/c3": true
}
},
"scripts": {
"post-autoload-dump": [
"@environment:prepare"
],
"environment:prepare": [
"codecept build",
"mkdir -p public/typo3temp/assets/xima_typo3_mailcatcher"
],
"php:fixer": "php-cs-fixer --config=php-cs-fixer.php fix",
"php:stan": "phpstan --generate-baseline=phpstan-baseline.neon --allow-empty-baseline",
"test:acceptance": [
".ddev/commands/web/init-typo3",
"codecept run --steps"
],
"test:unit": "phpunit -c phpunit.unit.xml --no-coverage",
"test:functional": "phpunit -c phpunit.functional.xml --no-coverage",
"test:coverage:unit": "phpunit -c phpunit.unit.xml",
"test:coverage:functional": "phpunit -c phpunit.functional.xml",
"test:coverage:acceptance": "@test:acceptance --coverage --coverage-xml",
"ci:php:lint": "find *.php . -name '*.php' ! -path './vendor/*' ! -path './var/*' ! -path '*node_modules/*' ! -path './public/*' -print0 | xargs -0 -n 1 -P 4 php -l",
"ci:php:fixer": "php-cs-fixer --config=php-cs-fixer.php fix --dry-run --format=checkstyle > php-cs-fixer.xml || true",
"ci:php:stan": "phpstan --no-progress --error-format=checkstyle > phpstan.xml || true",
"ci:xml:lint": "find . -name '*.xlf' ! -path './public/*' ! -path './vendor/*' | xargs -r xmllint --schema vendor/symfony/translation/Resources/schemas/xliff-core-1.2-transitional.xsd --noout",
"ci:yaml:lint": "find . ! -path '*node_modules/*' ! -path './vendor/*' ! -path './public/*' \\( -name '*.yaml' -o -name '*.yml' \\) | xargs -r yaml-lint"
}
}