-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
71 lines (71 loc) · 2.85 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
{
"name": "sbuerk/typo3-cmscomposerinstallers-testingframework-bridge",
"description": "Compatibility patch for extension testing with TYPO3 v12",
"type": "composer-plugin",
"homepage": "https://github.com/sbuerk/typo3-cmscomposerinstallers-testingframework-bridge",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Stefan Bürk",
"email": "stefan@buerk.tech"
}
],
"support": {
"general": "https://github.com/sbuerk/typo3-cmscomposerinstallers-testingframework-bridge/issues",
"issues": "https://github.com/sbuerk/typo3-cmscomposerinstallers-testingframework-bridge/issues"
},
"config": {
"sort-packages": true
},
"require": {
"php": "^7.4 || ^8.0 || ^8.1 || ^8.2",
"composer-plugin-api": "^2.0.0"
},
"require-dev": {
"composer/composer": "^2.0",
"friendsofphp/php-cs-fixer": "^3.4.0",
"overtrue/phplint": "^2.4.1",
"phpstan/phpstan": "^1.8.4",
"phpstan/phpstan-strict-rules": "^1.4.3"
},
"autoload": {
"psr-4": {
"SBUERK\\TYPO3CmsComposerInstallersTestingFrameworkBridge\\": "src/"
}
},
"scripts": {
"cgl:check": [
"@php vendor/bin/php-cs-fixer fix --config=Build/php-cs-fixer/php-cs-fixer.php --dry-run --diff"
],
"cgl:fix": [
"@php vendor/bin/php-cs-fixer fix --config=Build/php-cs-fixer/php-cs-fixer.php "
],
"ci:tests": [
"@ci:php:lint"
],
"ci:php:lint": [
"@php vendor/bin/phplint --configuration=Build/phplint/phplint.yml"
],
"ci:phpstan:check": [
"@php vendor/bin/phpstan analyse -c Build/phpstan/phpstan.neon --no-progress --no-interaction --memory-limit 4G"
],
"ci:phpstan:check-github": [
"@php vendor/bin/phpstan analyse -c Build/phpstan/phpstan.neon --no-progress --no-interaction --memory-limit 4G --error-format=github"
],
"ci:phpstan:baseline": [
"@php vendor/bin/phpstan analyse -c Build/phpstan/phpstan.neon --no-progress --no-interaction --memory-limit 4G --generate-baseline=Build/phpstan/phpstan-baseline.neon"
]
},
"scripts-descriptions": {
"cgl:check": "Check all php files for CGL compliance and report violations.",
"cgl:fix": "Check all php files for CGL compliance and fix violations.",
"ci:tests": "Execute multipe tests in chain",
"ci:php:lint": "Lint php files",
"ci:phpstan:check": "Run static code analyzer",
"ci:phpstan:check-github": "Runstatic code analyzer with github error format for github action workflow.",
"ci:phpstan:baseline": "Regenerate phpstan baseline file"
},
"extra": {
"class": "SBUERK\\TYPO3CmsComposerInstallersTestingFrameworkBridge\\Installer\\Plugin"
}
}