-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
113 lines (112 loc) · 4.33 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
108
109
110
111
112
113
{
"name": "aoe/update-refindex",
"description": "Extension contains scheduler-task to update refindex of TYPO3",
"type": "typo3-cms-extension",
"homepage": "https://github.com/AOEpeople/TYPO3-Update-Refindex",
"license": "GPL-3.0",
"support": {
"email": "[email protected]",
"issues": "https://github.com/AOEpeople/TYPO3-Update-Refindex/issues",
"source": "https://github.com/AOEpeople/TYPO3-Update-Refindex"
},
"authors": [
{
"name": "AOE GmbH",
"email": "[email protected]",
"homepage": "http://www.aoe.com"
}
],
"require": {
"php": "^8.1",
"typo3/cms-core": "^12.4",
"typo3/cms-scheduler": "*",
"ext-pdo": "*"
},
"require-dev": {
"typo3/testing-framework": "^8.0",
"phpspec/prophecy": "^1.0.0",
"phpunit/phpcov": "*",
"phpcompatibility/php-compatibility": "^9.3",
"phpstan/phpstan": "^1.10",
"rector/rector": "^1.0",
"symplify/easy-coding-standard": "^12.0",
"symplify/phpstan-rules": "^13.0.0"
},
"autoload": {
"psr-4": {
"Aoe\\UpdateRefindex\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"Aoe\\UpdateRefindex\\Tests\\": "Tests"
}
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin",
"allow-plugins": {
"typo3/cms-composer-installers": true,
"typo3/class-alias-loader": true
}
},
"scripts": {
"post-autoload-dump": [
"mkdir -p .Build/Web/typo3conf/ext/",
"[ -L .Build/Web/typo3conf/ext/update_refindex ] || ln -snvf ../../../../. .Build/Web/typo3conf/ext/update_refindex"
],
"test:unit": [
"[ -e .Build/bin/phpunit ] || composer update",
"TYPO3_PATH_WEB=.Build/Web .Build/bin/phpunit -c Tests/UnitTests.xml Tests/Unit"
],
"test:unit-xdebug": [
"[ -e .Build/bin/phpunit ] || composer update",
"XDEBUG_SESSION=1 PHP_IDE_CONFIG=\"serverName=localhost\" XDEBUG_MODE=debug TYPO3_PATH_WEB=.Build/Web .Build/bin/phpunit -c Tests/UnitTests.xml Tests/Unit"
],
"code-style": [
"[ -e ./.Build/bin/rector ] || composer install",
"./.Build/bin/ecs check --config .code-quality/ecs.php",
"./.Build/bin/rector process --dry-run --config .code-quality/rector.php"
],
"code-analysis": [
"./.Build/bin/phpstan analyse -c .code-quality/phpstan.neon --memory-limit=1G"
],
"code-analysis--baseline": [
"./.Build/bin/phpstan analyse -c .code-quality/phpstan.neon --memory-limit=1G --generate-baseline"
],
"code-compatibility": [
"[ -e ./.Build/vendor/symplify/easy-coding-standard/vendor/squizlabs/php_codesniffer/bin/phpcs ] || composer update",
"[ -d ./reports/php_checkstyle ] || mkdir -p reports/php_checkstyle/",
"./.code-quality/configure-checkstyle.sh",
"./.Build/vendor/symplify/easy-coding-standard/vendor/squizlabs/php_codesniffer/bin/phpcs -d memory_limit=1G --standard=PHPCompatibility --colors --ignore=*/.Build/* -p . --runtime-set testVersion 8.1",
"./.Build/vendor/symplify/easy-coding-standard/vendor/squizlabs/php_codesniffer/bin/phpcs -d memory_limit=1G --standard=PHPCompatibility --colors --ignore=*/.Build/* -p . --runtime-set testVersion 8.2",
"./.Build/vendor/symplify/easy-coding-standard/vendor/squizlabs/php_codesniffer/bin/phpcs -d memory_limit=1G --standard=PHPCompatibility --colors --ignore=*/.Build/* -p . --runtime-set testVersion 8.3"
],
"code-check-pipeline": [
"@composer code-style",
"@composer code-analysis",
"@composer code-compatibility"
],
"extension-release": [
"rm -rf .Build",
"rm -rf .code-quality",
"rm -rf Tests/",
"rm .gitignore"
]
},
"extra": {
"branch-alias": {
"dev-main": "12.0.x-dev"
},
"typo3/cms": {
"extension-key": "update_refindex",
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": ".Build/Web"
}
},
"keywords": [
"TYPO3",
"extbase",
"update-refindex"
]
}