# fluentform/1.2.4/config/app.php

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

- Page: https://pluginprobe.com/plugins/fluentform/1.2.4/code/config/app.php
- Raw: https://pluginprobe.com/plugins/fluentform/1.2.4/raw/config/app.php
- Modified: 2018-02-03T11:29:32+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/1.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\Framework\Request\RequestProvider',
			'FluentForm\Framework\View\ViewProvider',
		),

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

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

```
