OpenConext / Stepup-saml-bundle

A PHP Symfony bundle that adds SAML capabilities to your application using simplesamlphp/saml2
Apache License 2.0
14 stars 24 forks source link

Bump dependencies #116

Closed tvdijen closed 1 year ago

tvdijen commented 1 year ago

This PR bumps the saml2 library to the latest version and bumps several dev dependencies It also bumps the minimum required PHP-version to 7.3, which is in line with PR #115

tvdijen commented 1 year ago

Note that the upgrade of saml2 has changed the way Issuer and NameID work. I can already tell that this will require some minor changes to the gateway-bundle as well

tvdijen commented 1 year ago

I must admit I have not yet test-driven them in a real life scenario but we will do so quite soon. If any functional issues come to the surface we will address them then and there.

I have, and Gateway breaks due to the old use of string Issuer/NameID's. They are objects now and therefore any occurence of $nameId should be replaced with $nameId->getValue()...

See: https://github.com/simplesamlphp/saml2/blob/release-4.x/UPGRADING.md