wp-env-app

The Framework app.php Configuration

The app.php file is an essential part of the Framework, allowing you to customize various configuration options to tailor your project to specific requirements. This provides an overview of the available configuration options and how to use them effectively.

Table of Contents

  1. Introduction
  2. Configuration Options
  3. Usage
  4. Examples

Introduction

The app.php file is a central configuration file in the framework, enabling you to define settings and parameters for your WordPress project. It provides flexibility and customization options, ensuring your project aligns with your needs.

Configuration Options

Here’s a breakdown of the available configuration options in app.php:

Usage

To customize your WordPress project’s configuration, follow these steps:

  1. Open the app.php file in the Framework installation.

  2. Locate the configuration options you want to modify.

  3. Update the values according to your project requirements.

  4. Save the app.php file.

Examples

Mailer Configuration

'mailer' => [
    'brevo' => [
        'apikey' => env('BREVO_API_KEY'),
    ],
    'postmark' => [
        'token' => env('POSTMARK_TOKEN'),
    ],
    // Add other mailer configurations here...
],

Security Configuration

'security' => [
    'encryption_key'     => null,
    'brute-force'        => true,
    'two-factor'         => true,
    'no-pwned-passwords' => true,
    'admin-ips'          => [],
],