-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
37 lines (37 loc) · 1.07 KB
/
composer.json
File metadata and controls
37 lines (37 loc) · 1.07 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
{
"name": "iwouldrathercode/php-custom-saml",
"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/iwouldrathercode/php-custom-saml",
"license": "MIT",
"version": "1.4.0",
"authors": [
{
"name": "Shankar",
"email": "psgganesh@gmail.com"
}
],
"require": {
"php": ">=5.5.0",
"ext-openssl": "*",
"illuminate/support": ">=5.0.0",
"iwouldrathercode/php-custom-one-login": "1.0.8"
},
"require-dev": {
"mockery/mockery": "0.9.*",
"phpunit/phpunit": "~4.0"
},
"autoload": {
"psr-0": {
"Iwouldrathercode\\Saml2\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Iwouldrathercode\\Saml2\\Saml2ServiceProvider"
]
}
},
"minimum-stability": "dev"
}