-
Notifications
You must be signed in to change notification settings - Fork 25
/
composer.json
52 lines (41 loc) · 1.38 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
{
"name": "korotovsky/sso-idp-bundle",
"type": "symfony-bundle",
"description": "Single-sign-on bundle for Symfony2. Identity Provider part.",
"keywords": ["single-sign-on", "sso", "login", "otp"],
"license": "MIT",
"authors": [
{
"name": "Peter Kruithof",
"email": "peter@financial-media.nl"
},
{
"name": "Dmitry Korotovsky",
"email": "dmitry@korotovsky.io"
}
],
"require": {
"php": ">=5.5",
"doctrine/orm": "~2.3",
"symfony/framework-bundle": "~2.8|~3.0|~4.0",
"symfony/security-bundle": "~3.1|~4.0",
"symfony/templating": "~3.1|~4.0",
"symfony/twig-bundle": "~3.1|~4.0",
"symfony/form": "~3.1|~4.0",
"symfony/console": "~3.1|~4.0",
"korotovsky/sso-library": "~0.3.1",
"ext-openssl": "*"
},
"require-dev": {
"phpunit/phpunit": "^5.7",
"doctrine/doctrine-bundle": "~1.6",
"doctrine/doctrine-fixtures-bundle": "~2.3",
"symfony/var-dumper": "^3.4|^4.1"
},
"autoload": {
"psr-4": {
"Krtv\\Bundle\\SingleSignOnIdentityProviderBundle\\": "src/Krtv/Bundle/SingleSignOnIdentityProviderBundle",
"Krtv\\Bundle\\SingleSignOnIdentityProviderBundle\\Tests\\": "tests/Krtv/Bundle/SingleSignOnIdentityProviderBundle/Tests"
}
}
}