-
Notifications
You must be signed in to change notification settings - Fork 70
/
composer.json
38 lines (38 loc) · 1.05 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
{
"name": "lightsaml/sp-bundle",
"license": "MIT",
"type": "symfony-bundle",
"description": "Light SAML2 SP Symfony Bundle",
"homepage": "http://www.lightsaml.com/SP-Bundle/",
"authors": [
{
"name": "Milos Tomic",
"email": "[email protected]",
"homepage": "http://github.com/tmilos",
"role": "Developer"
}
],
"autoload": {
"psr-0": {
"LightSaml\\SpBundle\\Tests\\": "tests/",
"LightSaml\\SpBundle\\": "src/"
}
},
"require": {
"php": ">=5.6",
"symfony/framework-bundle": "~2.7|~3.0|~4.0",
"symfony/security-bundle": "~2.7|~3.0|~4.0",
"lightsaml/symfony-bridge": "~1.3"
},
"require-dev": {
"phpunit/phpunit": "^5.7",
"sebastian/comparator": "^1.2.4|~2.0|~3.0",
"symfony/symfony": "~2.7|~3.0|~4.0",
"symfony/monolog-bundle": "~2.7|~3.0|~4.0"
},
"config": {
"bin-dir": "bin"
},
"prefer-stable": true,
"minimum-stability": "stable"
}