This repository has been archived by the owner on Sep 19, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
68 lines (68 loc) · 1.98 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
{
"name": "xima-media/xm-mail-catcher",
"type": "typo3-cms-extension",
"description": "Display mails that were send to log file",
"homepage": "https://www.xima.de",
"license": "MIT",
"authors": [
{
"name": "Maik Schneider",
"role": "Developer",
"email": "maik.schneider@xima.de"
}
],
"keywords": [
"typo3",
"cms",
"mail"
],
"require": {
"php": "^8.0",
"typo3/cms-core": ">=v11.0.0",
"ext-json": "*",
"php-mime-mail-parser/php-mime-mail-parser": "^8.0"
},
"require-dev": {
"roave/security-advisories": "dev-master",
"typo3/cms-base-distribution": "^11.5",
"phpmd/phpmd": "^2.6.0",
"squizlabs/php_codesniffer": "^3.4",
"friendsofphp/php-cs-fixer": "^3.3",
"vimeo/psalm": "^4.0",
"phpstan/phpstan": "^1.6",
"bk2k/bootstrap-package": "dev-master"
},
"autoload": {
"psr-4": {
"Xima\\XmMailCatcher\\": "Classes"
}
},
"extra": {
"typo3/cms": {
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": "public",
"extension-key": "xm_mail_catcher"
}
},
"config": {
"vendor-dir": "vendor",
"allow-plugins": {
"typo3/cms-composer-installers": true,
"typo3/class-alias-loader": true
}
},
"scripts": {
"typo3-cms-scripts": [
"ln -sfn ../../../ public/typo3conf/ext/xm_mail_catcher",
"vendor/bin/typo3cms install:fixfolderstructure"
],
"post-autoload-dump": [
"@typo3-cms-scripts"
],
"php:fix": "./vendor/bin/php-cs-fixer --config=Configuration/php-cs-fixer.php fix Classes Configuration",
"ci:php:lint": "find *.php Classes Configuration -name '*.php' -print0 | xargs -0 -n 1 -P 4 php -l",
"ci:php:fixer": "./vendor/bin/php-cs-fixer --config=Configuration/php-cs-fixer.php fix --dry-run -v --show-progress=dots Classes Configuration",
"ci:php:stan": "./vendor/bin/phpstan --no-progress",
"phpstan:baseline": "./vendor/bin/phpstan --generate-baseline=phpstan-baseline.neon --allow-empty-baseline"
}
}