Ian McLean
Ian McLean
\2. describes our situation migrating a bunch of sites to a composer based workflow. This comes about because sites have traditionally used `modules` as the module directory. At some point...
Can 2. also apply to themes?
Because point 2 may be quite a common scenario compared to other other paths, I've made the following changes to my local `findContribProjects()`: ``` /** * @param $root_composer_json * *...
Sorry for the noise. It's not as simple as the above as module updates will be put into `modules/contrib` even if they're found in `modules`.
That would be a good outcome and effectively what I did. Composer put all the updates in `modules/contrib` and I manually removed the old versions from `modules`. I also needed...
Thanks, this information is very useful. I've updated the code accordingly but am still getting the error you mention in #114 . I'm developing an OAuth2 module (CMS based) to...
Thanks @decomplexity . The requested scopes are `offline_access https://outlook.office.com/SMTP.Send`. See attached for the MS Graph permissions. Should these be removed completely? It looks like I haven't added any scopes for...
@hajekj The exact error is "invalid_grant AADSTS9002313: Invalid request. Request is malformed or invalid".
@decomplexity I filled in the contact form on your website and received an error when submitting it: "Sending failed. Error message"
@hajekj The scopes are configured as an array: `$provider->scope = ['offline_access', 'https://outlook.office.com/SMTP.Send'];` However, I haven't specified a `scopeSeparator`. @decomplexity Thanks, I've removed "offline_access" from the PHPMailer auth and am still...