-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
101 lines (101 loc) · 2.6 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
{
"name": "mteu/typo3-stream-writer",
"description": "This extension adds the possibility to log to php://stdout and php://stderr",
"license": "GPL-3.0-or-later",
"type": "typo3-cms-extension",
"authors": [
{
"name": "Martin Adler",
"email": "[email protected]"
}
],
"require": {
"php": "~8.2.0 || ~8.3.0 || ~8.4.0",
"typo3/cms-core": "~12.4.0 || ~13.4.0"
},
"require-dev": {
"armin/editorconfig-cli": "^2.0",
"eliashaeussler/version-bumper": "^2.0",
"ergebnis/composer-normalize": "^2.43",
"friendsofphp/php-cs-fixer": "^3.60",
"mteu/docblock-rules": "^0.4",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan": "^2.0",
"phpstan/phpstan-deprecation-rules": "^2.0",
"phpstan/phpstan-phpunit": "^2.0",
"phpstan/phpstan-strict-rules": "^2.0",
"phpunit/php-code-coverage": "^10.1",
"phpunit/phpcov": "^9.0",
"phpunit/phpunit": "^10.5",
"shipmonk/phpstan-rules": "^4.1",
"spaze/phpstan-disallowed-calls": "^4.0",
"ssch/typo3-rector": "^3.0",
"symfony/process": "^7.1",
"typo3/coding-standards": "^0.8.0",
"typo3/testing-framework": "^8.2"
},
"autoload": {
"psr-4": {
"mteu\\StreamWriter\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"mteu\\StreamWriter\\Tests\\": "Tests/"
}
},
"config": {
"allow-plugins": {
"eliashaeussler/version-bumper": true,
"ergebnis/composer-normalize": true,
"phpstan/extension-installer": true,
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
},
"bin-dir": ".build/bin",
"sort-packages": true,
"vendor-dir": ".build/vendor"
},
"extra": {
"typo3/cms": {
"extension-key": "typo3_stream_writer",
"web-dir": ".build/web"
}
},
"scripts": {
"fix": [
"@fix:composer",
"@fix:editorconfig",
"@fix:php"
],
"fix:composer": "@composer normalize",
"fix:editorconfig": "@lint:editorconfig --fix",
"fix:php": "php-cs-fixer fix",
"lint": [
"@lint:composer",
"@lint:editorconfig",
"@lint:php"
],
"lint:composer": "@fix:composer --dry-run",
"lint:editorconfig": "ec",
"lint:php": "@fix:php --dry-run",
"migration": [
"@migration:rector"
],
"migration:rector": "rector process -c rector.php",
"sca": [
"@sca:php"
],
"sca:php": "phpstan analyse -c phpstan.neon",
"test": [
"@test:unit"
],
"test:coverage": [
"@test:coverage:unit",
"@test:coverage:merge"
],
"test:coverage:merge": "phpcov merge --html .build/coverage/merged_html --clover .build/coverage/merged.clover.xml --text php://stdout .build/coverage/ ",
"test:coverage:unit": "phpunit -c phpunit.unit.xml",
"test:unit": "phpunit -c phpunit.unit.xml --no-coverage"
}
}