Skip to content

Commit a495081

Browse files
committed
Update onlogin package and fix config issues
1 parent 5281635 commit a495081

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"require": {
1414
"php": ">=5.4.0",
1515
"illuminate/support": "4.2.*",
16-
"onelogin/php-saml": "2.7.0"
16+
"onelogin/php-saml": "2.9.0"
1717
},
1818
"autoload": {
1919
"classmap": [

src/Kn4ppster/Saml2/Saml2ServiceProvider.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ class Saml2ServiceProvider extends ServiceProvider
2323
*/
2424
public function boot()
2525
{
26-
$this->package('kn4ppster/saml2');
26+
$this->package('kn4ppster/laravel4-saml2');
2727

2828
include __DIR__ . '/../../routes.php';
2929
}

src/controllers/Saml2Controller.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ public function acs()
5555
*/
5656
public function sls()
5757
{
58-
$errors = Saml2Auth::sls(Config::get('laravel4-saml2::settings.retrieveParametersFromServer'));
58+
$errors = Saml2Auth::sls(Config::get('laravel4-saml2::saml_settings.retrieveParametersFromServer'));
5959
if (!empty($errors)) {
6060
Log::error("Could not log out", $errors);
6161
throw new \Exception("Could not log out");

0 commit comments

Comments
 (0)