-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
116 lines (116 loc) · 3.92 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
114
115
116
{
"name": "jpmschuler/showpageeditors",
"description": "TYPO3 EXT to retrieve every editor who can see a given PID in the backend",
"license": "GPL-2.0-or-later",
"type": "typo3-cms-extension",
"authors": [
{
"name": "J. Peter M. Schuler",
"email": "[email protected]",
"role": "Developer"
}
],
"homepage": "https://github.com/jpmschuler/typo3-showpageeditors",
"support": {
"issues": "https://github.com/jpmschuler/typo3-showpageeditors/issues",
"source": "https://github.com/jpmschuler/typo3-showpageeditors",
"docs": "https://github.com/jpmschuler/typo3-showpageeditors/blob/main/README.md"
},
"require": {
"php": "^7.2 || ^8.0",
"typo3/cms-core": "^9.5 || ^10.4 || ^11.5 || ^12 || *@dev"
},
"require-dev": {
"codeception/codeception": "^4.1.31",
"doctrine/dbal": "^2.13.8",
"ergebnis/composer-normalize": "^2.28.0",
"friendsofphp/php-cs-fixer": "^3.4.0",
"helhum/typo3-console": "^5 || ^6 || ^7",
"helmich/typo3-typoscript-lint": "^2.5.2",
"jangregor/phpstan-prophecy": "^1.0.0",
"php-coveralls/php-coveralls": "^2.5.2",
"phpstan/extension-installer": "^1.1.0",
"phpstan/phpstan": "^1.6.2",
"phpstan/phpstan-phpunit": "^1.1.1",
"phpunit/phpunit": "^8.5.26",
"roave/security-advisories": "dev-latest",
"saschaegerer/phpstan-typo3": "^1.1.2",
"seld/jsonlint": "^1.9.0",
"squizlabs/php_codesniffer": "^3.6.2",
"symfony/yaml": "^4.4.29 || ^5.3.6 || ^6.0",
"typo3/coding-standards": "^0.5.2",
"typo3/minimal": "^9 || ^10 || ^11 || ^12",
"typo3/testing-framework": "^6.15.3"
},
"autoload": {
"psr-4": {
"JPMSchuler\\ShowPageEditors\\": "Classes/"
}
},
"config": {
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true,
"ergebnis/composer-normalize": true,
"phpstan/extension-installer": true
},
"bin-dir": ".Build/vendor/bin",
"sort-packages": true,
"vendor-dir": ".Build/vendor"
},
"extra": {
"typo3/cms": {
"app-dir": ".Build",
"extension-key": "showpageeditors",
"updateLanguages": false,
"web-dir": ".Build/public"
}
},
"scripts": {
"ci": [
"@ci:static"
],
"ci:composer:normalize": "@composer normalize --dry-run",
"ci:json:lint": "find . ! -path '*.Build/*' ! -path '*node_modules/*' -name '*.json' | xargs -r php .Build/vendor/bin/jsonlint -q",
"ci:php": [
"@ci:php:copypaste",
"@ci:php:cs-fixer",
"@ci:php:lint",
"@ci:php:sniff",
"@ci:php:stan"
],
"ci:php:copypaste": "@php ./tools/phpcpd Classes",
"ci:php:cs-fixer": "php-cs-fixer fix --config .php-cs-fixer.php -v --dry-run --using-cache no --diff",
"ci:php:lint": "find *.php Classes Configuration -name '*.php' -print0 | xargs -r -0 -n 1 -P 4 php -l",
"ci:php:sniff": "phpcs Classes Configuration",
"ci:php:stan": "phpstan --no-progress",
"ci:static": [
"@ci:composer:normalize",
"@ci:json:lint",
"@ci:php:copypaste",
"@ci:php:cs-fixer",
"@ci:php:lint",
"@ci:php:sniff",
"@ci:php:stan",
"@ci:yaml:lint"
],
"ci:ts:lint": "echo \"not implemented\"",
"ci:yaml:lint": "find . ! -path '*.Build/*' ! -path '*node_modules/*' -name '*.yml' | xargs -r php ./.Build/vendor/bin/yaml-lint",
"coverage:create-directories": "mkdir -p build/logs .Build/coverage",
"docs:generate": [
"docker run --rm t3docs/render-documentation show-shell-commands > tempfile.sh; echo 'dockrun_t3rd makehtml' >> tempfile.sh; bash tempfile.sh; rm tempfile.sh"
],
"fix:php": [
"@fix:php:cs",
"@fix:php:sniff"
],
"fix:php:cs": "php-cs-fixer fix --config .php-cs-fixer.php",
"fix:php:sniff": "phpcbf Classes Configuration",
"link-extension": [
"@php -r 'is_dir($extFolder=__DIR__.\"/.Build/public/typo3conf/ext/\") || mkdir($extFolder, 0777, true);'",
"@php -r 'file_exists($extFolder=__DIR__.\"/.Build/public/typo3conf/ext/showpageeditors\") || symlink(__DIR__,$extFolder);'"
],
"phpstan:baseline": ".Build/vendor/bin/phpstan --generate-baseline=phpstan-baseline.neon",
"release": "./tools/release.sh"
}
}