forked from DMKEBUSINESSGMBH/mksamlauth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
71 lines (71 loc) · 1.77 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": "dmk/mksamlauth",
"description": "SSO Authentication for your TYPO3 Frontend",
"type": "typo3-cms-extension",
"keywords": [
"TYPO3 CMS",
"saml",
"auth"
],
"homepage": "http://www.dmk-ebusiness.de/",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Eric Hertwig",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Markus Bachmann",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": ">=7.1",
"typo3/cms-core": "^8.7",
"lightsaml/lightsaml": "^1.4",
"symfony/http-foundation": "^3.4"
},
"require-dev": {
"saschaegerer/phpstan-typo3": "*@dev",
"phpstan/phpstan-strict-rules": "*",
"phpstan/phpstan": "*",
"friendsofphp/php-cs-fixer": "^2.13",
"phpunit/phpunit": "^7.1",
"nimut/testing-framework": "^4.1",
"helmich/typo3-typoscript-lint": "^1.4"
},
"autoload": {
"psr-4": {
"DMK\\MKSamlAuth\\": "Classes"
}
},
"autoload-dev": {
"psr-4": {
"DMK\\MKSamlAuth\\Tests\\": "Tests"
}
},
"support": {
"email": "[email protected]"
},
"replace": {
"typo3-ter/mksamlauth": "*"
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin",
"preferred-install": {
"typo3/cms": "source"
}
},
"extra": {
"branch-alias": {
"dev-master": "8.7.x-dev"
},
"typo3/cms": {
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": ".Build/Web"
}
}
}