forked from lightSAML/lightSAML
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
50 lines (50 loc) · 1.53 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
{
"name": "lightsaml/lightsaml",
"license": "MIT",
"type": "library",
"description": "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": "[email protected]",
"homepage": "https://github.com/tmilos/",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/lightsaml/lightsaml/issues",
"source": "https://github.com/lightSAML/lightSAML",
"docs": "http://www.lightsaml.com/LightSAML-Core/"
},
"autoload": {
"psr-0": {
"LightSaml\\Tests\\": "tests/",
"LightSaml\\": "src/"
}
},
"require": {
"php": ">=5.5.1",
"robrichards/xmlseclibs": "~2.0|~3.0|~4.0",
"symfony/http-foundation": "~2.3|~3.0|~4.0",
"symfony/event-dispatcher": "~2.3|~3.0|~4.0"
},
"require-dev": {
"symfony/dom-crawler": "~2.3|~3.0|~4.0",
"symfony/css-selector": "~2.3|~3.0|~4.0",
"pimple/pimple": "~3.0",
"phpunit/phpunit": "~4.5",
"monolog/monolog": "~1.3",
"satooshi/php-coveralls": "~0.6"
},
"suggest": {
"lightsaml/symfony-bridge": "Symfony 2 build container bridge",
"lightsaml/sp-bundle": "Symfony 2 SP security bundle"
},
"config": {
"bin-dir": "bin"
},
"prefer-stable": true,
"minimum-stability": "stable"
}