From d6613bd8bf2cd8f40652b008b81f434aa88511eb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20N=C3=A9grier?= Date: Tue, 29 Jan 2019 17:59:01 +0100 Subject: [PATCH] Adding Graphqlite bundle --- .../3.0/config/packages/graphqlite.yaml | 16 ++++++++++++++++ .../graphqlite-bundle/3.0/manifest.json | 8 ++++++++ 2 files changed, 24 insertions(+) create mode 100644 thecodingmachine/graphqlite-bundle/3.0/config/packages/graphqlite.yaml create mode 100644 thecodingmachine/graphqlite-bundle/3.0/manifest.json diff --git a/thecodingmachine/graphqlite-bundle/3.0/config/packages/graphqlite.yaml b/thecodingmachine/graphqlite-bundle/3.0/config/packages/graphqlite.yaml new file mode 100644 index 00000000..faab94ef --- /dev/null +++ b/thecodingmachine/graphqlite-bundle/3.0/config/packages/graphqlite.yaml @@ -0,0 +1,16 @@ +# Read more about Graphqlite available options at: https://graphqlite.thecodingmachine.io/docs/symfony-bundle +graphqlite: + namespace: + controllers: App\Controller\ + types: + - App\ + debug: + # Include exception messages in output when an error arises + INCLUDE_DEBUG_MESSAGE: false + # Include stacktrace in output when an error arises + INCLUDE_TRACE: false + # Exceptions are not caught by the engine and propagated to Symfony + RETHROW_INTERNAL_EXCEPTIONS: false + # Exceptions that do not implement ClientAware interface are + # not caught by the engine and propagated to Symfony. + RETHROW_UNSAFE_EXCEPTIONS: true diff --git a/thecodingmachine/graphqlite-bundle/3.0/manifest.json b/thecodingmachine/graphqlite-bundle/3.0/manifest.json new file mode 100644 index 00000000..bd35527d --- /dev/null +++ b/thecodingmachine/graphqlite-bundle/3.0/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "TheCodingMachine\\Graphqlite\\Bundle\\GraphqliteBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +}