- Issue created by @chrisfromredfin
- πΊπΈUnited States chrisfromredfin Portland, Maine
So, I think the fix is (line 320):
$path = realpath($package['path']);
becomes:
$path = realpath($package['path'] ?? '');
UPDATE: Meh, no that doesn't work because it resolves to the "web" folder and not the composer root.
- πΊπΈUnited States chrisfromredfin Portland, Maine
$path = realpath($package['path'] ?? $working_dir);
might do it, but doesn't feel quite right. - Status changed to Closed: duplicate
over 1 year ago 3:39pm 6 June 2023 - πΊπΈUnited States chrisfromredfin Portland, Maine
Dupe of https://www.drupal.org/project/automatic_updates/issues/3363259 π Compatibility with Composer 2.5.7 Fixed