Configuring Application
Overview of configuration options for the Nette Application.
Application
application:
	# shows "Nette Application" panel in Tracy BlueScreen?
	debugger: ...           # (bool) defaults to true
	# will error-presenter be called on error?
	catchExceptions: ...    # (bool) defaults to true in production mode
	# name of error-presenter
	errorPresenter: Error   # (string) defaults to 'Nette:Error'
	# defines the rules for resolving the presenter name to a class
	mapping: ...
	# do bad links generate warnings?
	# has effect only in developer mode
	silentLinks: ...        # (bool) defaults to false
Because error-presenters are not called by default in development mode and the errors are displayed by Tracy, changing the
value catchExceptions to true helps to verify that error-presenters works correct during
development.
Option silentLinks determines how Nette behaves in developer mode when link generation fails (for example, because
there is no presenter, etc). The default value false means that Nette triggers E_USER_WARNING. Setting
to true suppresses this error message. In a production environment, E_USER_WARNING is always invoked. We
can also influence this behavior by setting the presenter variable $invalidLinkMode.
The mapping defines the rules by which the class name is derived from the presenter name.
Automatic Registration of Presenters
Nette automatically adds presenters as services to the DI container, which significantly speeds up their creation. How Nette finds out presenters can be configured:
application:
	# to look for presenters in Composer class map?
	scanComposer: ...      # (bool) defaults to true
	# what string must contain the class and file name?
	scanFilter: ...        # (string) defaults to 'Presenter'
	# in which directories to look for presenters?
	scanDirs:              # (string[]|false) defaults to '%appDir%'
		- %vendorDir%/mymodule
The directories listed in scanDirs do not override the default value %appDir%, but complement it, so
scanDirs will contain both paths %appDir% and %vendorDir%/mymodule. If we want to overwrite
the default directory, we use exclamation
mark:
application:
	scanDirs!:
		- %vendorDir%/mymodule
Directory scanning can be turned off by setting false. We do not recommend completely suppressing the automatic addition of presenters, otherwise application performance will be reduced.
Latte
This setting globally affects the behavior of Latte in components and presenters.
latte:
	# switches Latte to XHTML mode
	xhtml: ...           # (bool) defaults to false
	# class of $this->template
	templateClass: App\MyTemplateClass # defaults to Nette\Bridges\ApplicationLatte\Template
It is also possible to register new tags either by entering the class name or by referring to the service. Method
install() is called by default, but this can be changed by specifying the name of another method:
latte:
	# registration of user Latte tags
	macros:
		- App\MyLatteMacros::register         # static method, classname or callable
		- @App\MyLatteMacrosFactory           # service with install method
		- @App\MyLatteMacrosFactory::register # service with register method
services:
	- App\MyLatteMacrosFactory
Routing
Basic settings:
routing:
	# shows routing panel in Tracy Bar?
	debugger: ...   # (bool) defaults to true
	# to serialize router to DI container?
	cache: ...      # (bool) defaults to false
Router is usually defined in the RouterFactory class. Alternatively, routs can
also be defined in the configuration using mask: action pairs, but this method does not offer such a wide variation
in settings:
routing:
	routes:
		'detail/<id>': Admin:Home:default
		'<presenter>/<action>': Front:Home:default
Constants
Creating PHP constants.
constants:
	FOOBAR: 'baz'
The FOOBAR constant will created after startup.
Constants should not serve as globally available variables. To pass values to objects, use dependency injection.
PHP
You can set PHP directives. An overview of all directives can be found at php.net.
php:
	date.timezone: Europe/Prague