I want to use the simplesamlphp package for my SSO implementation. However, I cannot install the package via composer, because one of the dependencies no longer exists.
"simplesamlphp/simplesamlphp": "dev-master"
Output after running composer update -o
:
Problem 1
- simplesamlphp/saml2 v0.4.1 requires robrichards/xmlseclibs 1.3.* -> no matching package found.
- simplesamlphp/saml2 v0.4.0 requires robrichards/xmlseclibs 1.3.* -> no matching package found.
- simplesamlphp/saml2 v0.3.0 requires robrichards/xmlseclibs 1.3.* -> no matching package found.
I know that simplesamlphp has a package simplesamlphp/xmlseclibs. Is there a way to load that package instead of the non-existing robrichards package?
I have searched for answers in the Composer documentation, but an alias is only used for local repositories it seems.