- Issue created by @iStryker
- Assigned to danrod
- 🇨🇦Canada danrod Ottawa
I merged the MR, but I'm not closing the task until I make sure it installs correctly on D11.
- 🇨🇦Canada danrod Ottawa
The module seems to be downloading ok with composer:
I'll leave it to "Needs Review" for a bit, just in case anyone wants to do extra tests.
- 🇨🇦Canada danrod Ottawa
I have the bambora library installed and I'm still getting this error:
I think the issue is in the logic at the
bambora.install
file:<?php /** * @file * Contains install and update functions for Bambora. */ /** * Implements hook_requirements(). */ function bambora_requirements($phase) { if ($phase !== 'install') { return []; } // All good if the library exists. if (class_exists('\Beanstream\Gateway')) { return []; } return [ 'bambora_library' => [ 'description' => t('Bambora payments requires the beanstream/beanstream library.'), 'severity' => REQUIREMENT_ERROR, ], ]; }
I'll open another issue for that because it's out of the scope of this issue. I'll mark this as "Fixed"