forked from cvc-digital/typo3-saml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
68 lines (68 loc) · 2.06 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
{
"name": "cvc/typo3-saml",
"description": "This extension adds an authentication with SAML",
"license": "GPL-3.0-or-later",
"type": "typo3-cms-extension",
"authors": [
{
"name": "CARL von CHIARI GmbH",
"email": "[email protected]"
}
],
"homepage": "https://cvc.digital",
"require": {
"php": ">=7.2",
"ext-json": "*",
"simplesamlphp/simplesamlphp": "^1.19",
"typo3/cms-backend": "^9.5",
"typo3/cms-core": "^9.5",
"typo3/cms-extbase": "^9.5",
"typo3/cms-fluid": "^9.5",
"typo3/minimal": "^9.5"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.23",
"friendsofphp/php-cs-fixer": "^3",
"nimut/testing-framework": "^6",
"phpstan/phpstan": "^1",
"phpunit/phpunit": "^8",
"saschaegerer/phpstan-typo3": "^1"
},
"replace": {},
"autoload": {
"psr-4": {
"Cvc\\Typo3\\CvcSaml\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"Cvc\\Typo3\\CvcSaml\\Tests\\": "Tests/"
}
},
"config": {
"allow-plugins": {
"simplesamlphp/composer-module-installer": true,
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true,
"ergebnis/composer-normalize": true
},
"bin-dir": ".Build/bin",
"vendor-dir": ".Build/vendor"
},
"extra": {
"typo3/cms": {
"app-dir": ".Build",
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"extension-key": "cvc_saml",
"web-dir": ".Build/public"
}
},
"scripts": {
"post-autoload-dump": [
"mkdir -p .Build/public/typo3conf/ext/",
"[ -L .Build/public/typo3conf/ext/cvc_saml ] || ln -snvf ../../../../. .Build/public/typo3conf/ext/cvc_saml",
"ln -snvf ../vendor/simplesamlphp/simplesamlphp/www .Build/public/simplesamlphp",
"ln -snvf vendor/simplesamlphp/simplesamlphp .Build/"
]
}
}