-
Notifications
You must be signed in to change notification settings - Fork 56
Bundle config reference #118
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
bb5ddef
32f03f9
a798ec3
3e21f1d
62d4448
f2e4f28
fe4a041
54e204c
2f6d9c2
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -65,12 +65,24 @@ This page shows an example of all configuration values provided by the bundle. | |
stopwatch: | ||
enabled: true | ||
stopwatch: 'debug.stopwatch' | ||
|
||
toolbar: | ||
enabled: true | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. this should be kernel.debug, no? or is it only ever asked for if the debug toolbar itself is enabled? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
No. kernel.debug=false will turn off the toolbar.
correct There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. okay, then its fine like this |
||
formatter: null # Defaults to \Http\Message\Formatter\FullHttpMessageFormatter | ||
captured_body_length: 0 | ||
|
||
discovery: | ||
client: 'auto' | ||
async_client: false | ||
|
||
clients: | ||
acme: | ||
factory: 'httplug.factory.guzzle6' | ||
plugins: ['httplug.plugin.authentication.my_wsse', 'httplug.plugin.cache', 'httplug.plugin.retry'] | ||
flexible_client: false # Can only be true if http_methods_client is false | ||
http_methods_client: false # Can only be true if flexible_client is false | ||
config: | ||
verify: false | ||
timeout: 2 | ||
# more options to the guzzle 6 constructor | ||
# more options to the Guzzle 6 constructor | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,6 +17,7 @@ plugins | |
matchers | ||
param | ||
params | ||
profiler | ||
Puli | ||
rebase | ||
Semver | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
the logging is also controlled by a config setting that defaults to kernel.debug, right? we could maybe mention that below, near where we talk about the body capturing configuration