makaira/oxid-connect-compat

There is no license information available for the latest version (2.2.1) of this package.

Make makaira/connect compatible with oxid < 6.2

2.2.1 2022-11-08 09:08 UTC

README

  • this library adds backward compatibility for makaira/connect module for Oxid versions older then 6.2
  • makes symfony dependency injection through services.yaml in module directories available
  • makes console commands callable through ./vendor/bin/makaira-connect
  • for oxid < 6.0 please install Oxid connect first and add the following lines to your project composer.json to let composer copy the connect module to the modules directory
      "scripts": {
        "post-update-cmd": "Makaira\\ConnectCompat\\Composer::postUpdate",
        "post-install-cmd": "Makaira\\ConnectCompat\\Composer::postUpdate"
      },
    add also the following line before require_once OX_BASE_PATH . 'modules/functions.php'; to your oxid bootstrap.php file
      require_once __DIR__ . '/../vendor/autoload.php';