Adding Graphqlite bundle

This commit is contained in:
David Négrier
2019-01-29 17:59:01 +01:00
parent 65dc26935a
commit d6613bd8bf
2 changed files with 24 additions and 0 deletions
@@ -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
@@ -0,0 +1,8 @@
{
"bundles": {
"TheCodingMachine\\Graphqlite\\Bundle\\GraphqliteBundle": ["all"]
},
"copy-from-recipe": {
"config/": "%CONFIG_DIR%/"
}
}