version.php 929 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <?php
  2. /**
  3. * WordPress Version
  4. *
  5. * Contains version information for the current WordPress release.
  6. *
  7. * @package WordPress
  8. * @since 1.2.0
  9. */
  10. /**
  11. * The WordPress version string.
  12. *
  13. * Holds the current version number for WordPress core. Used to bust caches
  14. * and to enable development mode for scripts when running from the /src directory.
  15. *
  16. * @global string $wp_version
  17. */
  18. $wp_version = '6.1.1';
  19. /**
  20. * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
  21. *
  22. * @global int $wp_db_version
  23. */
  24. $wp_db_version = 53496;
  25. /**
  26. * Holds the TinyMCE version.
  27. *
  28. * @global string $tinymce_version
  29. */
  30. $tinymce_version = '49110-20201110';
  31. /**
  32. * Holds the required PHP version.
  33. *
  34. * @global string $required_php_version
  35. */
  36. $required_php_version = '5.6.20';
  37. /**
  38. * Holds the required MySQL version.
  39. *
  40. * @global string $required_mysql_version
  41. */
  42. $required_mysql_version = '5.0';