14 * Holds the current version number for WordPress core. Used to bust caches |
14 * Holds the current version number for WordPress core. Used to bust caches |
15 * and to enable development mode for scripts when running from the /src directory. |
15 * and to enable development mode for scripts when running from the /src directory. |
16 * |
16 * |
17 * @global string $wp_version |
17 * @global string $wp_version |
18 */ |
18 */ |
19 $wp_version = '6.6.2'; |
19 $wp_version = '6.8.2'; |
20 |
20 |
21 /** |
21 /** |
22 * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema. |
22 * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema. |
23 * |
23 * |
24 * @global int $wp_db_version |
24 * @global int $wp_db_version |
25 */ |
25 */ |
26 $wp_db_version = 57155; |
26 $wp_db_version = 60421; |
27 |
27 |
28 /** |
28 /** |
29 * Holds the TinyMCE version. |
29 * Holds the TinyMCE version. |
30 * |
30 * |
31 * @global string $tinymce_version |
31 * @global string $tinymce_version |
32 */ |
32 */ |
33 $tinymce_version = '49110-20201110'; |
33 $tinymce_version = '49110-20250317'; |
34 |
34 |
35 /** |
35 /** |
36 * Holds the required PHP version. |
36 * Holds the required PHP version. |
37 * |
37 * |
38 * @global string $required_php_version |
38 * @global string $required_php_version |
39 */ |
39 */ |
40 $required_php_version = '7.2.24'; |
40 $required_php_version = '7.2.24'; |
41 |
41 |
42 /** |
42 /** |
|
43 * Holds the names of required PHP extensions. |
|
44 * |
|
45 * @global string[] $required_php_extensions |
|
46 */ |
|
47 $required_php_extensions = array( |
|
48 'json', |
|
49 'hash', |
|
50 ); |
|
51 |
|
52 /** |
43 * Holds the required MySQL version. |
53 * Holds the required MySQL version. |
44 * |
54 * |
45 * @global string $required_mysql_version |
55 * @global string $required_mysql_version |
46 */ |
56 */ |
47 $required_mysql_version = '5.5.5'; |
57 $required_mysql_version = '5.5.5'; |