diff --git a/mosl/opensign-bridge-bundle/0.6/config/packages/opensign_bridge.yaml b/mosl/opensign-bridge-bundle/0.6/config/packages/opensign_bridge.yaml new file mode 100644 index 00000000..8ff07136 --- /dev/null +++ b/mosl/opensign-bridge-bundle/0.6/config/packages/opensign_bridge.yaml @@ -0,0 +1,7 @@ +open_sign_bridge: + opensign: + app_id: '%env(OPENSIGN_APP_ID)%' + master_key: '%env(OPENSIGN_MASTER_KEY)%' + api_url: '%env(OPENSIGN_API_URL)%' + user_id: '%env(OPENSIGN_USER_ID)%' + session_token: '%env(OPENSIGN_SESSION_TOKEN)%' diff --git a/mosl/opensign-bridge-bundle/0.6/manifest.json b/mosl/opensign-bridge-bundle/0.6/manifest.json new file mode 100644 index 00000000..05c39576 --- /dev/null +++ b/mosl/opensign-bridge-bundle/0.6/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "Mosl\\OpenSignBridgeBundle\\OpenSignBridgeBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} diff --git a/mosl/opensign-bridge-bundle/0.6/post-install.txt b/mosl/opensign-bridge-bundle/0.6/post-install.txt new file mode 100644 index 00000000..c457c2e2 --- /dev/null +++ b/mosl/opensign-bridge-bundle/0.6/post-install.txt @@ -0,0 +1,7 @@ + * Configure your OpenSign connection in config/packages/opensign_bridge.yaml + and set the required env vars: OPENSIGN_APP_ID, OPENSIGN_MASTER_KEY, OPENSIGN_API_URL, + OPENSIGN_USER_ID, OPENSIGN_SESSION_TOKEN. See: + https://github.com/imdela/OpenSignBridgeBundle#-installation-in-a-host-app + + * Deploy a self-hosted OpenSign server (Docker) yourself — this bundle only + provides the PHP client/integration layer, not the OpenSign server itself.