forked from simplesamlphp/simplesamlphp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
59 lines (59 loc) · 1.72 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
{
"name": "simplesamlphp/simplesamlphp",
"description": "A PHP implementation of a SAML 2.0 service provider and identity provider, also compatible with Shibboleth 1.3 and 2.0.",
"type": "project",
"keywords": [ "saml2", "shibboleth","oauth","ws-federation","sp","idp" ],
"homepage": "http://simplesamlphp.org",
"license": "LGPL-2.1",
"authors": [
{
"name": "Andreas Åkre Solberg",
"email": "andreas.solberg@uninett.no"
},
{
"name": "Olav Morken",
"email": "olav.morken@uninett.no"
},
{
"name": "Jaime Perez",
"email": "jaime.perez@uninett.no"
}
],
"autoload": {
"psr-4": {
"SimpleSAML\\": "lib/SimpleSAML"
},
"files": ["lib/_autoload_modules.php"]
},
"require": {
"php": ">=5.4",
"ext-SPL": "*",
"ext-zlib": "*",
"ext-pcre": "*",
"ext-openssl": "*",
"ext-dom": "*",
"ext-date": "*",
"ext-hash": "*",
"ext-json": "*",
"ext-mbstring": "*",
"simplesamlphp/saml2": "~3.0",
"robrichards/xmlseclibs": "~3.0",
"whitehat101/apr1-md5": "~1.0",
"twig/twig": "~1.0",
"gettext/gettext": "^3.5",
"jaimeperez/twig-configurable-i18n": "^1.2"
},
"require-dev": {
"ext-pdo_sqlite": "*",
"phpunit/phpunit": "~4.8",
"satooshi/php-coveralls": "^1.0",
"mikey179/vfsStream": "~1.6"
},
"suggests": {
"predis/predis": "1.1.1"
},
"support": {
"issues": "https://github.com/simplesamlphp/simplesamlphp/issues",
"source": "https://github.com/simplesamlphp/simplesamlphp"
}
}