-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
52 lines (52 loc) · 1.51 KB
/
composer.json
File metadata and controls
52 lines (52 loc) · 1.51 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
{
"name": "zschuessler/lightsaml",
"license": "MIT",
"type": "library",
"description": "Fork of Light SAML 2.0 PHP library",
"keywords": ["SAML 2.0", "PHP", "library", "lightSAML", "Single SignOn", "Single Logout"],
"homepage": "https://www.lightsaml.com/",
"authors": [
{
"name": "Milos Tomic",
"email": "tmilos@gmail.com",
"homepage": "https://github.com/tmilos/",
"role": "Developer"
},
{
"name": "Forlabs Team",
"email": "hello@forlabs.fr",
"homepage": "https://github.com/4Labs/",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/qikker-online/lightSAML/issues",
"source": "https://github.com/qikker-online/lightSAML",
"docs": "http://www.lightsaml.com/LightSAML-Core/"
},
"autoload": {
"psr-0": {
"LightSaml\\Tests\\": "tests/",
"LightSaml\\": "src/"
}
},
"require": {
"php": ">=5.6",
"ext-dom": "*",
"robrichards/xmlseclibs": "~2.0|~3.0",
"symfony/http-foundation": "~5.0",
"symfony/event-dispatcher": "~5.0"
},
"require-dev": {
"symfony/dom-crawler": "~5.0",
"symfony/css-selector": "~5.0",
"pimple/pimple": "~3.0",
"phpunit/phpunit": "~5.7|~7",
"monolog/monolog": "~1.3"
},
"config": {
"bin-dir": "bin"
},
"prefer-stable": true,
"minimum-stability": "stable"
}