-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
105 lines (105 loc) · 3.22 KB
/
Copy pathcomposer.json
File metadata and controls
105 lines (105 loc) · 3.22 KB
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
{
"name": "xima/xima-typo3-internal-news",
"description": "This extension provides an internal news system for TYPO3.",
"license": [
"GPL-2.0-or-later"
],
"type": "typo3-cms-extension",
"authors": [
{
"name": "Konrad Michalik",
"email": "hej@konradmichalik.dev",
"role": "Maintainer"
}
],
"require": {
"php": "^8.1",
"psr/http-message": "^1.0 || ^2.0",
"simshaun/recurr": "^5.0.3",
"typo3/cms-backend": "^12.0 || ^13.0",
"typo3/cms-core": "^12.0 || ^13.0",
"typo3/cms-dashboard": "^12.0 || ^13.0",
"typo3/cms-extbase": "^12.0 || ^13.0",
"typo3/cms-fluid": "^12.0 || ^13.0",
"typo3fluid/fluid": "^2.15 || ^4.0"
},
"require-dev": {
"armin/editorconfig-cli": "^2.2.1",
"eliashaeussler/php-cs-fixer-config": "2.4.0",
"eliashaeussler/version-bumper": "^2.4 || ^3.0",
"ergebnis/composer-normalize": "^2.48.2",
"helhum/typo3-console": "^7.0 || ^8.1",
"helmich/typo3-typoscript-lint": "^3.3.0",
"move-elevator/composer-translation-validator": "^1.3.1",
"phpstan/phpstan-deprecation-rules": "^1.0 || ^2.0",
"phpstan/phpstan-phpunit": "^1.0 || ^2.0",
"phpstan/phpstan-strict-rules": "^1.0 || ^2.0",
"phpunit/phpunit": "^10.2 || ^11.0 || ^12.0",
"saschaegerer/phpstan-typo3": "^1.10 || ^2.0",
"spaze/phpstan-disallowed-calls": "^4.12.0",
"ssch/typo3-rector": "^2.10 || ^3.0",
"symfony/translation": "^6.3 || ^7.0",
"tomasvotruba/type-coverage": "^1.0 || ^2.0",
"typo3/cms-base-distribution": "^12.0 || ^13.4",
"typo3/cms-lowlevel": "^12.0 || ^13.4",
"typo3/coding-standards": "^0.7 || ^0.8"
},
"autoload": {
"psr-4": {
"Xima\\XimaTypo3InternalNews\\": "Classes/"
}
},
"config": {
"allow-plugins": {
"eliashaeussler/version-bumper": true,
"ergebnis/composer-normalize": true,
"helhum/dotenv-connector": true,
"move-elevator/composer-translation-validator": true,
"php-http/discovery": true,
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
},
"sort-packages": true
},
"extra": {
"typo3/cms": {
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"extension-key": "xima_typo3_internal_news",
"web-dir": "public"
}
},
"scripts": {
"fix": [
"@fix:composer",
"@fix:editorconfig",
"@fix:php"
],
"fix:composer": "@composer normalize",
"fix:editorconfig": "@lint:editorconfig --fix",
"fix:php": "php vendor/bin/php-cs-fixer --config=php-cs-fixer.php fix",
"lint": [
"@lint:composer",
"@lint:editorconfig",
"@lint:php",
"@lint:language",
"@lint:typoscript",
"@lint:yaml"
],
"lint:composer": "@fix:composer --dry-run",
"lint:editorconfig": "ec --git-only",
"lint:language": "@composer validate-translations ./Resources/Private/Language",
"lint:php": "@fix:php --dry-run",
"lint:typoscript": "typoscript-lint --fail-on-warnings",
"lint:yaml": "find ./ ! -path './vendor/*' ! -path '*/node_modules/*' ! -path './.Build/*' ! -path './xima_typo3_content_planner/*' \\( -name '*.yaml' -o -name '*.yml' \\) -exec yaml-lint {} +",
"migration": [
"@migration:rector"
],
"migration:rector": "rector process -c rector.php",
"sca": [
"@sca:php"
],
"sca:php": "phpstan analyse --memory-limit=2G",
"test": "@test:coverage --no-coverage",
"test:coverage": "XDEBUG_MODE=coverage phpunit -c phpunit.xml"
}
}