# fluentform/3.2.4/config/app.php

Fluent Forms – Customizable Contact Forms, Survey, Quiz, &amp; Conversational Form Builder, version 3.2.4. 33 lines.

- Page: https://pluginprobe.com/plugins/fluentform/3.2.4/code/config/app.php
- Raw: https://pluginprobe.com/plugins/fluentform/3.2.4/raw/config/app.php
- Modified: 2019-05-31T20:28:28+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/fluentform/3.2.4/code/config/app.php#L10-L20`.

```php
<?php

return array(
	'env' => 'production',
	'providers' => array(
		'core' => array(
			'FluentForm\Framework\Foundation\AppProvider',
			'FluentForm\Framework\Config\ConfigProvider',
			'FluentForm\App\Providers\FluentValidatorProvider',
			'FluentForm\Framework\Request\RequestProvider',
			'FluentForm\Framework\View\ViewProvider',
		),
		'plugin' => array(

			'common' => array(
				'FluentForm\App\Providers\CommonProvider',
				'FluentForm\App\Providers\FormBuilderProvider',
                'FluentForm\App\Providers\WpFluentProvider',
			),
			
			'backend' => array(
				'FluentForm\App\Providers\BackendProvider',
                'FluentForm\App\Providers\MenuProvider',
				'FluentForm\App\Providers\AdminNoticeProvider'
			),

			'frontend' => array(
				'FluentForm\App\Providers\FrontendProvider',
			),
		),
	),
);

```
