-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathcomposer.json
More file actions
56 lines (56 loc) · 1.47 KB
/
composer.json
File metadata and controls
56 lines (56 loc) · 1.47 KB
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
{
"name": "nbgrp/onelogin-saml-bundle",
"description": "OneLogin SAML Symfony Bundle",
"license": "BSD-3-Clause",
"type": "symfony-bundle",
"keywords": [
"SAML",
"OneLogin",
"multiple IdP",
"SSO"
],
"authors": [
{
"name": "Alexander Menshchikov",
"email": "alexander.menshchikov@yandex.ru"
}
],
"require": {
"php": "^8.4",
"onelogin/php-saml": "^4",
"psr/log": "^1 || ^2 || ^3",
"symfony/config": "^8",
"symfony/dependency-injection": "^8",
"symfony/deprecation-contracts": "^3",
"symfony/event-dispatcher-contracts": "^3",
"symfony/http-foundation": "^8",
"symfony/http-kernel": "^8",
"symfony/routing": "^8",
"symfony/security-bundle": "^8",
"symfony/security-core": "^8",
"symfony/security-http": "^8"
},
"require-dev": {
"doctrine/orm": "^2.3 || ^3",
"phpunit/phpunit": "^12",
"symfony/event-dispatcher": "^8"
},
"autoload": {
"psr-4": {
"Nbgrp\\OneloginSamlBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Nbgrp\\Tests\\OneloginSamlBundle\\": "tests/"
}
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true
}
},
"scripts": {
"nba": "docker run --rm -v $PWD:/app --workdir /app nbgrp/auditor:latest"
}
}