forked from simonschaufi/gkh_rss_import
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
145 lines (145 loc) · 6.86 KB
/
Copy pathcomposer.json
File metadata and controls
145 lines (145 loc) · 6.86 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
{
"name": "gkh/gkh-rss-import",
"description": "Fetch an RSS / Atom Feed and display its content on the Frontend.",
"license": "GPL-2.0-or-later",
"type": "typo3-cms-extension",
"keywords": [
"TYPO3",
"Atom Feed",
"RSS Feed"
],
"require": {
"php": "~8.2.0 || ~8.3.0 || ~8.4.0",
"ext-iconv": "*",
"ext-intl": "*",
"typo3/cms-core": "^13.4.10"
},
"require-dev": {
"ext-json": "*",
"a9f/fractor-composer-json": "^0.5.8",
"a9f/typo3-fractor": "^0.5.8",
"composer/pcre": "^3.3.2",
"ergebnis/composer-normalize": "^2.49.0",
"ezyang/htmlpurifier": "^4.19.0",
"friendsofphp/php-cs-fixer": "^3.93.1",
"helmich/typo3-typoscript-lint": "^3.3.0",
"helmich/typo3-typoscript-parser": "^2.8.1",
"league/flysystem": "^3.31.0",
"league/flysystem-local": "^3.31.0",
"league/mime-type-detection": "^1.16.0",
"phpstan/phpstan": "^2.1.38",
"phpstan/phpstan-phpunit": "^2.0.12",
"phpunit/phpunit": "^11.5.21",
"roave/security-advisories": "dev-latest",
"squizlabs/php_codesniffer": "^4.0.1",
"ssch/typo3-rector": "^3.11.0",
"symfony/cache": "^7.3.6",
"symfony/cache-contracts": "^3.6.0",
"symfony/console": "^7.1.4",
"symfony/event-dispatcher": "^7.3.3",
"symfony/event-dispatcher-contracts": "^3.6.0",
"symfony/translation": "^7.1.3",
"symfony/var-exporter": "^7.3.4",
"symfony/yaml": "^7.1.4",
"symplify/easy-coding-standard": "^13.0.4",
"typo3/class-alias-loader": "^1.2.0",
"typo3/cms-install": "^13.4.10",
"typo3/testing-framework": "^9.3.0"
},
"replace": {
"typo3-ter/gkh-rss-import": "self.version"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"GertKaaeHansen\\GkhRssImport\\": "Classes"
},
"files": [
"Resources/PHP/lastRSS.php",
"Resources/PHP/smarttrim.php"
]
},
"autoload-dev": {
"psr-4": {
"GertKaaeHansen\\GkhRssImport\\Tests\\": "Tests"
}
},
"config": {
"allow-plugins": {
"a9f/fractor-extension-installer": true,
"ergebnis/composer-normalize": 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": {
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"extension-key": "gkh_rss_import",
"web-dir": ".Build/public"
}
},
"scripts": {
"ci:composer:normalize": "@composer normalize --no-check-lock --dry-run",
"ci:composer:psr-verify": "@composer dumpautoload --optimize --strict-psr --no-plugins",
"ci:php:ecs": ".Build/bin/ecs --config=Build/ecs/ecs.php",
"ci:php:fractor": ".Build/bin/fractor process --config Build/fractor/fractor.php --dry-run",
"ci:php:rector": ".Build/bin/rector process --config Build/rector/rector.php --dry-run",
"ci:php:sniff": ".Build/bin/phpcs Classes Configuration Tests",
"ci:php:stan": ".Build/bin/phpstan analyse -c Build/phpstan/phpstan.neon --no-progress --no-interaction --memory-limit 4G",
"ci:tests:create-directories": "mkdir -p .Build/public/typo3temp/var/tests",
"ci:tests:functional": [
"@ci:tests:create-directories",
"find 'Tests/Functional' -wholename '*Test.php' | parallel --gnu 'echo; echo \"Running functional test suite {}\"; .Build/bin/phpunit -c Build/phpunit/FunctionalTests.xml {}';"
],
"ci:tests:unit": ".Build/bin/phpunit -c Build/phpunit/UnitTests.xml",
"ci:typoscript:lint": ".Build/bin/typoscript-lint -c Build/typoscript-lint/typoscript-lint.yml --ansi -n --fail-on-warnings -vvv",
"ci:xliff:lint": "php Build/bin/console lint:xliff Resources/Private/Language",
"ci:yaml:lint": "find . ! -path '*.Build/*' ! -path '*node_modules/*' -regextype egrep -regex '.*.ya?ml$' | xargs -r php ./.Build/bin/yaml-lint",
"fix:composer:normalize": "@composer normalize --no-check-lock",
"fix:php:ecs": ".Build/bin/ecs --config=Build/ecs/ecs.php --fix",
"fix:php:fractor": ".Build/bin/fractor process --config Build/fractor/fractor.php",
"fix:php:rector": ".Build/bin/rector process --config Build/rector/rector.php",
"fix:php:sniff": ".Build/bin/phpcbf Classes Configuration Tests",
"local:functional-tests": "TYPO3_PATH_ROOT=$PWD/.Build/public .Build/bin/phpunit --colors -c Build/phpunit/FunctionalTests.xml --stop-on-failure",
"local:test-typoscript-lint": ".Build/bin/typoscript-lint -c .typoscript-lint.yml",
"local:unit-tests": ".Build/bin/phpunit --colors -c Build/phpunit/UnitTests.xml --stop-on-failure",
"phpstan:baseline": ".Build/bin/phpstan analyse -c Build/phpstan/phpstan.neon --no-progress --no-interaction --memory-limit 4G --generate-baseline=Build/phpstan/phpstan-baseline.neon --allow-empty-baseline",
"test": [
"@fix:composer:normalize",
"@local:test-typoscript-lint",
"@fix:php:rector",
"@fix:php:ecs",
"@local:unit-tests",
"@local:functional-tests"
]
},
"scripts-descriptions": {
"ci:composer:normalize": "Checks the composer.json.",
"ci:composer:psr-verify": "Verifies PSR-4 namespace correctness.",
"ci:php:ecs": "Checks the code style with easy coding standard.",
"ci:php:fractor": "Migrates code with Fractor in dry run mode.",
"ci:php:rector": "Migrates code with Rector in dry run mode.",
"ci:php:sniff": "Checks the code style with PHP_CodeSniffer (PHPCS).",
"ci:php:stan": "Runs PHPStan to check for static analysis errors.",
"ci:tests:create-directories": "Creates the directories required to smoothely run the functional tests.",
"ci:tests:functional": "Runs the functional tests.",
"ci:tests:unit": "Runs the unit tests.",
"ci:typoscript:lint": "Lints the TypoScript files.",
"ci:xliff:lint": "Lints the XLIFF files.",
"ci:yaml:lint": "Lints the YAML files.",
"fix:composer:normalize": "Normalizes composer.json file content.",
"fix:php:ecs": "Fixes the code style with easy coding standard.",
"fix:php:fractor": "Migrates code with Fractor.",
"fix:php:rector": "Migrates code with Rector.",
"fix:php:sniff": "Fixes the code style with PHP_CodeSniffer.",
"local:functional-tests": "Runs the functional tests.",
"local:test-typoscript-lint": "Checks the TypoScript files.",
"local:unit-tests": "Runs the unit tests.",
"phpstan:baseline": "Generates the PHPStan baseline file."
}
}