From 7b766911d25aa03079615ea283b9c5b2869504e7 Mon Sep 17 00:00:00 2001 From: insidestyles Date: Sat, 19 Oct 2019 07:42:21 +0300 Subject: [PATCH] Recipe for insidestyles/json-rpc-bundle V2 --- .../2.0/config/packages/json_rpc_api.yaml | 14 ++++++++++++++ .../2.0/config/routes/json_rpc_api_routing.yaml | 3 +++ insidestyles/json-rpc-bundle/2.0/manifest.json | 8 ++++++++ 3 files changed, 25 insertions(+) create mode 100644 insidestyles/json-rpc-bundle/2.0/config/packages/json_rpc_api.yaml create mode 100644 insidestyles/json-rpc-bundle/2.0/config/routes/json_rpc_api_routing.yaml create mode 100644 insidestyles/json-rpc-bundle/2.0/manifest.json diff --git a/insidestyles/json-rpc-bundle/2.0/config/packages/json_rpc_api.yaml b/insidestyles/json-rpc-bundle/2.0/config/packages/json_rpc_api.yaml new file mode 100644 index 00000000..8e4b5906 --- /dev/null +++ b/insidestyles/json-rpc-bundle/2.0/config/packages/json_rpc_api.yaml @@ -0,0 +1,14 @@ +json_rpc_api: + handlers: + auth: + path: /auth + host: null + serializer: null + logger: null + annotation: null + main: + path: /api/v1 + host: null + serializer: null + logger: null + annotation: null diff --git a/insidestyles/json-rpc-bundle/2.0/config/routes/json_rpc_api_routing.yaml b/insidestyles/json-rpc-bundle/2.0/config/routes/json_rpc_api_routing.yaml new file mode 100644 index 00000000..708ed680 --- /dev/null +++ b/insidestyles/json-rpc-bundle/2.0/config/routes/json_rpc_api_routing.yaml @@ -0,0 +1,3 @@ +_json_rpc_api: + resource: . + type: json_rpc_api diff --git a/insidestyles/json-rpc-bundle/2.0/manifest.json b/insidestyles/json-rpc-bundle/2.0/manifest.json new file mode 100644 index 00000000..68dac51e --- /dev/null +++ b/insidestyles/json-rpc-bundle/2.0/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "Insidestyles\\JsonRpcBundle\\JsonRpcBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +}