This repository was archived by the owner on May 13, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathcomposer.json
156 lines (156 loc) · 5.34 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
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
146
147
148
149
150
151
152
153
154
155
156
{
"name": "waldhacker/typo3-oauth2-client",
"description": "TYPO3 OAuth2 Login Client (backend and frontend)",
"license": [
"GPL-2.0-or-later"
],
"type": "typo3-cms-extension",
"authors": [
{
"name": "waldhacker",
"email": "[email protected]",
"homepage": "https://waldhacker.dev",
"role": "Developer"
}
],
"homepage": "https://github.com/waldhacker/ext-oauth2-client",
"support": {
"issues": "https://github.com/waldhacker/ext-oauth2-client/issues"
},
"require": {
"ext-pdo": "*",
"league/oauth2-client": "^2.6.0",
"psr/log": "*",
"typo3/cms-backend": "^10.4@dev || ^11.5@dev",
"typo3/cms-core": "^10.4@dev || ^11.5@dev",
"typo3/cms-fluid": "^10.4@dev || ^11.5@dev",
"typo3/cms-setup": "^10.4@dev || ^11.5@dev"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.23",
"friendsofphp/php-cs-fixer": "^3.0",
"overtrue/phplint": "^2.0",
"phpspec/prophecy-phpunit": "^2.0",
"phpstan/extension-installer": "^1.0",
"phpstan/phpstan": "^0.12.50",
"roave/security-advisories": "dev-latest",
"saschaegerer/phpstan-typo3": "@dev",
"symfony/yaml": "^5.1",
"typo3/cms-extensionmanager": "^10.4@dev || ^11.5@dev",
"typo3/cms-felogin": "^10.4@dev || ^11.5@dev",
"typo3/cms-fluid-styled-content": "^10.4@dev || ^11.5@dev",
"typo3/cms-frontend": "^10.4@dev || ^11.5@dev",
"typo3/cms-install": "^10.4@dev || ^11.5@dev",
"typo3/cms-recordlist": "^10.4@dev || ^11.5@dev",
"typo3/coding-standards": "^0.4.0",
"typo3/json-response": "*@dev",
"typo3/testing-framework": "^6.15",
"vimeo/psalm": "^3.0 || ^4.0",
"waldhacker/typo3-oauth2-client-test": "*@dev"
},
"suggest": {
"league/oauth2-github": "Github Authentication"
},
"repositories": [
{
"type": "path",
"url": "build/Tests/Extensions/*"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Waldhacker\\Oauth2Client\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"Waldhacker\\Oauth2Client\\Tests\\": "Tests/"
}
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"ergebnis/composer-normalize": true,
"phpstan/extension-installer": true,
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
},
"bin-dir": ".build/bin",
"platform": {
"php": "7.4.15"
},
"sort-packages": true,
"vendor-dir": ".build/vendor"
},
"extra": {
"composer-normalize": {
"indent-size": 4,
"indent-style": "space"
},
"typo3/cms": {
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"extension-key": "oauth2_client",
"web-dir": ".build/web"
}
},
"scripts": {
"post-autoload-dump": [
"mkdir -p .build/web/typo3conf/ext/",
"[ -L .build/web/typo3conf/ext/oauth2_client ] || ln -snvf ../../../../. .build/web/typo3conf/ext/oauth2_client"
],
"ci:cgl:check": [
"php-cs-fixer fix --config build/phpcs.dist -v --dry-run"
],
"ci:cgl:fix": [
"php-cs-fixer fix --config build/phpcs.dist"
],
"ci:lint:php": [
"phplint -c build/phplint.yaml"
],
"ci:lint:yaml": [
"php build/yaml-lint.php Configuration/"
],
"ci:normalize:check": [
"@composer normalize --dry-run"
],
"ci:normalize:fix": [
"@composer normalize"
],
"ci:psalm": [
"psalm --config=build/psalm.xml"
],
"ci:psalm:gen-baseline": [
"psalm -c build/psalm.xml --set-baseline=build/psalm-baseline.xml"
],
"ci:psalm:gen-baseline:v10": [
"psalm -c build/psalm-v10.xml --set-baseline=build/psalm-baseline-v10.xml"
],
"ci:psalm:v10": [
"psalm --config=build/psalm-v10.xml"
],
"ci:stan": [
"phpstan analyze --configuration build/phpstan.neon"
],
"ci:stan:gen-baseline": [
"phpstan analyze --configuration build/phpstan.neon --generate-baseline build/phpstan.baseline.neon"
],
"ci:stan:gen-baseline:v10": [
"phpstan analyze --configuration build/phpstan-v10.neon --generate-baseline build/phpstan.baseline-v10.neon"
],
"ci:stan:v10": [
"phpstan analyze --configuration build/phpstan-v10.neon"
],
"ci:tests:functional": [
"phpunit -c build/phpunit-functionals.xml --log-junit .build/logs/junit-functionals.xml"
],
"ci:tests:unit": [
"phpunit -c build/phpunit.xml --log-junit .build/logs/junit.xml"
],
"ci:tests:unit:cover": [
"mkdir -p .build/logs",
"phpdbg -d memory_limit=1024M -qrr ./.build/bin/phpunit -c build/phpunit.xml --coverage-text --colors=never --coverage-clover .build/logs/clover.xml --coverage-cobertura .build/logs/cobertura.xml --coverage-html .build/logs/html"
]
}
}