-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
46 lines (46 loc) · 1.21 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
{
"name": "xima/xima-oauth2-extended",
"description": "Additional OAuth2 provider + on-the-fly user creation",
"type": "typo3-cms-extension",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Maik Schneider",
"email": "maik.schneider@xima.de",
"role": "Developer"
}
],
"require": {
"php": ">=8.1",
"league/oauth2-client": ">=2.7",
"waldhacker/typo3-oauth2-client": ">=2.1.1 || dev-feature/v12-compatibility-1",
"ext-pdo": "*",
"typo3/cms-core": "^11.0 || ^12.0"
},
"require-dev": {
"saschaegerer/phpstan-typo3": "^1.8",
"friendsofphp/php-cs-fixer": "^3.6",
"phpstan/extension-installer": "^1.3"
},
"extra": {
"typo3/cms": {
"extension-key": "xima_oauth2_extended"
}
},
"autoload": {
"psr-4": {
"Xima\\XimaOauth2Extended\\": "Classes"
}
},
"scripts": {
"php:fixer": "./vendor/bin/php-cs-fixer --config=php-cs-fixer.php fix",
"php:stan": "./vendor/bin/phpstan --generate-baseline=phpstan-baseline.neon --allow-empty-baseline"
},
"config": {
"allow-plugins": {
"typo3/cms-composer-installers": true,
"typo3/class-alias-loader": true,
"phpstan/extension-installer": true
}
}
}