Matt Glaman

Results 412 comments of Matt Glaman

Ha! I was going to write a blog post review of the setup but I wanted to ping you about the case to see if I was nuts on the...

@naveenvalecha is this fixed, then?

Cool! I'll work on a PR. Folks can override it after the import of settings.ddev.php and if swiftmailer doesn't exist, then it's just a dropped config override

Actually. I think the fix is to just define `config_install_path`. Per `drupal_install_config_directories`: It will respect the defined path. ``` if (empty($config_directories[CONFIG_SYNC_DIRECTORY])) { if (empty($install_state['config_install_path'])) { // Add a randomized config...

I think the fix is just adding `config_install_path: web/profiles/contrib/contenta_jsonapi/config/sync` in the .info.yml; needs manual testing.

@SuperNami I just reposted here from someone on Slack that was having issues and offered to open an issue. It looks like your solution and notes in #353 are exactly...

See ``` // Json Serialize Code public function jsonSerialize(){ $values = array_filter((array)get_object_vars($this), function ($val){ return !is_null($val); }); $mapper = \net\authorize\util\Mapper::Instance(); foreach($values as $key => $value){ $classDetails = $mapper->getClass(get_class() , $key);...

Just found https://github.com/simplesamlphp/saml2/issues/125, which links to > Provide the required external dependencies by extending and implementing the SAML2\Compat\AbstractContainer then injecting it in the ContainerSingleton (see example below). So we have...

@tvdijen I can give a hand, too. We're building an idP for our Drupal instance.

Is this something feasible for the library? LightSAML is not feasible, either. SAML2 is too tightly coupled to SimpleSAML. We need to have a working idP and I would be...