forked from aacotroneo/laravel-saml2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
41 lines (41 loc) · 1.13 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
{
"name": "aacotroneo/laravel-saml2",
"description": "A Laravel package for Saml2 integration as a SP (service provider) for multiple IdPs, based on OneLogin toolkit which is much more lightweight than simplesamlphp.",
"keywords": ["laravel","saml", "saml2", "onelogin"],
"homepage": "https://github.com/aacotroneo/laravel-saml2",
"license": "MIT",
"version": "2.1.0",
"authors": [
{
"name": "aacotroneo",
"email": "aacotroneo@gmail.com"
},
{
"name": "Niraj Patkar",
"email": "niraj@alphonso.in"
}
],
"require": {
"php": ">=5.5.0",
"ext-openssl": "*",
"illuminate/support": ">=5.0.0",
"onelogin/php-saml": "^3.0.0"
},
"require-dev": {
"mockery/mockery": "0.9.*",
"phpunit/phpunit": "~4.0"
},
"autoload": {
"psr-0": {
"Aacotroneo\\Saml2\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Aacotroneo\\Saml2\\Saml2ServiceProvider"
]
}
},
"minimum-stability": "stable"
}