forked from derhansen/sf_yubikey
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
77 lines (77 loc) · 1.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
{
"name": "derhansen/sf_yubikey",
"type": "typo3-cms-extension",
"description": "Two-factor authentication with a YubiKey OTP",
"homepage": "https://github.com/derhansen/sf_yubikey",
"support": {
"issues": "https://github.com/derhansen/sf_yubikey/issues"
},
"authors": [
{
"name": "Torben Hansen",
"email": "torben@derhansen.com",
"homepage": "https://www.derhansen.com",
"role": "Developer"
}
],
"keywords": [
"TYPO3 CMS",
"yubikey",
"two-factor authentication"
],
"license": [
"GPL-2.0-or-later"
],
"prefer-stable": true,
"require": {
"typo3/cms-core": "^12.4"
},
"require-dev": {
"typo3/cms-composer-installers": "^5.0",
"typo3/cms-backend": "^12.4",
"typo3/cms-frontend": "^12.4",
"typo3/cms-extbase": "^12.4",
"typo3/cms-fluid": "^12.4",
"friendsofphp/php-cs-fixer": "^3.12.0",
"typo3/testing-framework": "^8.0.0 || dev-main",
"overtrue/phplint": "^9.0.0",
"saschaegerer/phpstan-typo3": "^1.1.2",
"phpstan/extension-installer": "^1.1",
"jangregor/phpstan-prophecy": "^1.0"
},
"autoload": {
"psr-4": {
"Derhansen\\SfYubikey\\": "Classes"
}
},
"autoload-dev": {
"psr-4": {
"Derhansen\\SfYubikey\\": "Tests"
}
},
"replace": {
"typo3-ter/sf-yubikey": "self.version"
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin",
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true,
"phpstan/extension-installer": true
}
},
"scripts": {
"post-autoload-dump": [
"mkdir -p .Build/Web/typo3conf/ext/",
"[ -L .Build/Web/typo3conf/ext/sf_yubikey ] || ln -snvf ../../../../. .Build/Web/typo3conf/ext/sf_yubikey"
]
},
"extra": {
"typo3/cms": {
"extension-key": "sf_yubikey",
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": ".Build/Web"
}
}
}