pollen-solutions / wp-env
Pollen Wordpress Env Component - Wordpress configuration with .env file.
Requires
- php: ^7.4 || ^8.0
- pollen-solutions/support: ^1.0
- pollen-solutions/wp-salt: ^1.0
Requires (Dev)
- phpunit/phpunit: ^9.0
- roave/security-advisories: dev-latest
This package is auto-updated.
Last update: 2024-10-29 06:19:35 UTC
README
Pollen Solutions Wordpress Env Component provides a simply way to configure your Wordpress application.
Installation
composer require pollen-solutions/wp-env
Replace the contents of wp-config.php file with the code below :
use Pollen\WpEnv\WpEnv; // Optionnal but recommended start time global indicator defined('START_TIME') ?: define('START_TIME', microtime(true)); require_once __DIR__ . '/vendor/autoload.php'; new WpEnv(__DIR__); require_once(ABSPATH . 'wp-settings.php');
Configuration
.env config file
Fondamentals
Create a .env file at the root of your project :
# ENVIRONMENT ## Environnement of your application. ## dev|prod. APP_ENV=dev ## Enabling debug APP_DEBUG=true ## Url of your application APP_URL=https://127.0.0.1:8000 ## Application timezone APP_TIMEZONE=Europe/Paris # PATH (Optionnal) ## Relative public path of your application APP_PUBLIC_DIR=/ ## Relative path to the wordpress root folder, containing wp-admin and wp-includes folder APP_WP_DIR=/ ## Relative path to the wp-content root folder, containing languages, themes, uploads ... ## MUST BE WRITABLE BY HTTP SERVER APP_WP_PUBLIC_DIR=wp-content # DATABASE ## DATABASE DRIVER DB_CONNECTION=mysql ## DATABASE HOST DB_HOST=127.0.0.1 ## DATABASE PORT DB_PORT=3306 ## DATABASE NAME DB_DATABASE=wordpress ## DATABASE USERNAME DB_USERNAME=root ## DATABASE PASSWORD DB_PASSWORD=root ## DATABASE TABLES PREFIX DB_PREFIX=wp_ # WORDPRESS CONFIG # @see https://wordpress.org/support/article/editing-wp-config-php/ WP_DEBUG_LOG=true DISALLOW_FILE_MODS=true AUTOMATIC_UPDATER_DISABLED=false DISABLE_WP_CRON=false ## WORDPRESS SALT ## @see https://developer.wordpress.org/reference/functions/wp_salt/ ## @see https://api.wordpress.org/secret-key/1.1/salt/ ## Generate salt from cli : ## php vendor/bin/wp-salt dotenv --clean >> .env
Nesting Variables
It's possible to nest an environment variable within another, useful to cut down on repetition.
This is done by wrapping an existing environment variable in ${…} e.g.
BASE_DIR=/var/webroot/project-root CACHE_DIR=${BASE_DIR}/cache TMP_DIR=${BASE_DIR}/tmp
Overwriting
It's possible to overwrite environment variable within another throught .env.local file.
# > .env file BASE_DIR=/var/webroot/common-project-root
# > .env.local file BASE_DIR=/var/webroot/local-project-root
.wp-config.local config file
Same as the original wp-config.php file, the wp-config.local.php file at the root of your project allow to define constants of your Wordpress application.
use Pollen\Support\Env; use Pollen\Support\Filesystem as fs; // LOGS if (!defined('WP_DEBUG_LOG')) { define('WP_DEBUG_LOG', getcwd() . fs::DS . 'var' . fs::DS . 'log' . fs::DS . 'error.log'); } // AUTHENTICATION if (!defined('COOKIE_DOMAIN')) { define('COOKIE_DOMAIN', Env::get('DOMAIN_CURRENT_SITE')); } if (!defined('COOKIEPATH')) { define('COOKIEPATH', '/'); } if (!defined('SITECOOKIEPATH')) { define('SITECOOKIEPATH', '/'); }