forked from waldhacker/ext-oauth2-client
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
142 lines (142 loc) · 4.83 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
{
"name": "in2code/typo3-oauth2-client-fork",
"description": "FORK: 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": {
"php": "^8.1",
"ext-pdo": "*",
"league/oauth2-client": "^2.7",
"psr/log": "*",
"typo3/cms-backend": "^11.5@dev || ^12.4@dev",
"typo3/cms-core": "^11.5@dev || ^12.4@dev",
"typo3/cms-fluid": "^11.5@dev || ^12.4@dev",
"typo3/cms-setup": "^11.5@dev || ^12.4@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": "^11.5@dev || ^12.4@dev",
"typo3/cms-felogin": "^11.5@dev || ^12.4@dev",
"typo3/cms-fluid-styled-content": "^11.5@dev || ^12.4@dev",
"typo3/cms-frontend": "^11.5@dev || ^12.4@dev",
"typo3/cms-install": "^11.5@dev || ^12.4@dev",
"typo3/cms-recordlist": "^11.5@dev || ^12.4@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",
"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:stan": [
"phpstan analyze --configuration build/phpstan.neon"
],
"ci:stan:gen-baseline": [
"phpstan analyze --configuration build/phpstan.neon --generate-baseline build/phpstan.baseline.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"
]
}
}