-
-
Notifications
You must be signed in to change notification settings - Fork 75
Expand file tree
/
Copy path.wp-env.json
More file actions
43 lines (43 loc) · 1.08 KB
/
.wp-env.json
File metadata and controls
43 lines (43 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"core": "https://wordpress.org/wordpress-6.8.2.zip",
"env": {
"development": {
"multisite": true,
"plugins": [
"."
],
"mappings": {
"wp-content/mu-plugins/email-smtp-dev.php": "./mu-plugins/email-smtp-dev/email-smtp-dev.php",
"wp-content/sunrise.php": "./sunrise.php"
},
"config": {
"WP_DEBUG": true,
"WP_DEBUG_DISPLAY": true,
"WP_DEBUG_LOG": true,
"SCRIPT_DEBUG": true,
"WP_MEMORY_LIMIT": "256M",
"WP_MAX_MEMORY_LIMIT": "512M",
"SUNRISE": true
}
},
"tests": {
"multisite": true,
"plugins": [
"."
],
"mappings": {
"wp-content/mu-plugins/email-smtp-test.php": "./mu-plugins/email-smtp-test/email-smtp-test.php",
"wp-content/sunrise.php": "./sunrise.php"
},
"config": {
"WP_DEBUG": true,
"WP_DEBUG_DISPLAY": false,
"WP_DEBUG_LOG": true,
"SCRIPT_DEBUG": true,
"WP_MEMORY_LIMIT": "256M",
"WP_MAX_MEMORY_LIMIT": "512M",
"SUNRISE": true
}
}
}
}