forked from chrisdejager/SingleSignOnIdentityProviderBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
40 lines (35 loc) · 1.11 KB
/
composer.json
File metadata and controls
40 lines (35 loc) · 1.11 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
{
"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/symfony": "~2.8|~3.0",
"korotovsky/sso-library": "~0.3.0",
"ext-openssl": "*"
},
"require-dev": {
"phpunit/phpunit": ">=4.4",
"doctrine/doctrine-bundle": "~1.6",
"doctrine/doctrine-fixtures-bundle": "~2.3"
},
"autoload": {
"psr-4": {
"Krtv\\Bundle\\SingleSignOnIdentityProviderBundle\\": "src/Krtv/Bundle/SingleSignOnIdentityProviderBundle",
"Krtv\\Bundle\\SingleSignOnIdentityProviderBundle\\Tests\\": "tests/Krtv/Bundle/SingleSignOnIdentityProviderBundle/Tests"
}
}
}