diff --git a/timiki/rpc-client-bundle/4.0/config/packages/rpc_client.yaml b/timiki/rpc-client-bundle/4.0/config/packages/rpc_client.yaml new file mode 100644 index 00000000..f4f1c677 --- /dev/null +++ b/timiki/rpc-client-bundle/4.0/config/packages/rpc_client.yaml @@ -0,0 +1,9 @@ +# Read the documentation: https://github.com/timiki/rpc-client-bundle + +rpc_client: + + # connection: + # name_1: RPC_SERVER_URL_1 + # name_2: RPC_SERVER_URL_2 + + connection: null diff --git a/timiki/rpc-client-bundle/4.0/manifest.json b/timiki/rpc-client-bundle/4.0/manifest.json new file mode 100644 index 00000000..8e36a4b2 --- /dev/null +++ b/timiki/rpc-client-bundle/4.0/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "Timiki\\Bundle\\RpcClientBundle\\RpcClientBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} diff --git a/timiki/rpc-server-bundle/4.0/config/packages/rpc_server.yaml b/timiki/rpc-server-bundle/4.0/config/packages/rpc_server.yaml new file mode 100644 index 00000000..8c5042d4 --- /dev/null +++ b/timiki/rpc-server-bundle/4.0/config/packages/rpc_server.yaml @@ -0,0 +1,15 @@ +# Read the documentation: https://github.com/timiki/rpc-server-bundle + +rpc_server: + + mapping: '%kernel.root_dir%/Method' + + # id cache service, must be instance of Doctrine\Common\Cache\CacheProvider + # by default use file cache + + cache: null + + # id serializer service, must be instance of Timiki\Bundle\RpcServerBundle\Serializer\SerializerInterface + # by default use 'rpc.server.serializer.base' service + + serializer: 'rpc.server.serializer.base' diff --git a/timiki/rpc-server-bundle/4.0/config/routes/rpc_server.yaml b/timiki/rpc-server-bundle/4.0/config/routes/rpc_server.yaml new file mode 100644 index 00000000..134ab17e --- /dev/null +++ b/timiki/rpc-server-bundle/4.0/config/routes/rpc_server.yaml @@ -0,0 +1,4 @@ +rpc: + path: /rpc + defaults: { _controller: RpcServerBundle:Rpc:handler } + methods: [POST] diff --git a/timiki/rpc-server-bundle/4.0/manifest.json b/timiki/rpc-server-bundle/4.0/manifest.json new file mode 100644 index 00000000..0966a1b2 --- /dev/null +++ b/timiki/rpc-server-bundle/4.0/manifest.json @@ -0,0 +1,9 @@ +{ + "bundles": { + "Timiki\\Bundle\\RpcServerBundle\\RpcServerBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/", + "src/": "%SRC_DIR%/" + } +} diff --git a/timiki/rpc-server-bundle/4.0/src/Method/.gitignore b/timiki/rpc-server-bundle/4.0/src/Method/.gitignore new file mode 100644 index 00000000..e69de29b