Changeset 3107640
- Timestamp:
- 06/25/2024 05:56:30 PM (22 months ago)
- Location:
- wp-dummy-content-generator/trunk
- Files:
-
- 4 edited
-
README.txt (modified) (1 diff)
-
composer.json (modified) (1 diff)
-
vendor/composer/autoload_real.php (modified) (1 diff)
-
wp_dummy_content_generator.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-dummy-content-generator/trunk/README.txt
r3089550 r3107640 124 124 3.4.0 - Made it compatible 7.4 to 8.3 php version. 125 125 3.4.1 - Removed unwanted vendors. 126 3.4.2 - Removed composer error for php version dependency. 126 127 == Upgrade Notice == -
wp-dummy-content-generator/trunk/composer.json
r3089543 r3107640 2 2 "require": { 3 3 "fakerphp/faker": "^1.23" 4 }, 5 "config": { 6 "platform-check": false 4 7 } 5 8 } -
wp-dummy-content-generator/trunk/vendor/composer/autoload_real.php
r3089547 r3107640 22 22 return self::$loader; 23 23 } 24 25 require __DIR__ . '/platform_check.php';26 24 27 25 spl_autoload_register(array('ComposerAutoloaderIniteed7cf5acd9f66679ff115a04fdda952', 'loadClassLoader'), true, true); -
wp-dummy-content-generator/trunk/wp_dummy_content_generator.php
r3089550 r3107640 17 17 * Plugin URI: https://wpdcg.online/ 18 18 * Description: The "WP Dummy Content Generator" plugin is particularly useful for developers, designers, and website administrators who want to quickly populate their WordPress site with realistic dummy content. It saves time and effort by automatically generating content that mimics real posts and pages, enabling you to focus on other aspects of website development or testing. 19 * Version: 3.4. 119 * Version: 3.4.2 20 20 * Author: Deepak anand 21 21 * Author URI: https://wpdcg.online/about-us/ … … 23 23 * License URI: http://www.gnu.org/licenses/gpl-2.0.txt 24 24 * Text Domain: wp_dummy_content_generator 25 * WC tested up to: 8.4.025 * WC tested up to: 9.0.2 26 26 * Domain Path: /languages 27 27 */ … … 37 37 * Rename this for your plugin and update it as you release new versions. 38 38 */ 39 define( 'wp_dummy_content_generator_PLUGIN_NAME_VERSION', '3.4. 1' );39 define( 'wp_dummy_content_generator_PLUGIN_NAME_VERSION', '3.4.2' ); 40 40 define( 'wp_dummy_content_generator_PLUGIN_BASE_URL',plugin_basename( __FILE__ )); 41 41 define( 'wp_dummy_content_generator_PLUGIN_BASE_URI',plugin_dir_path( __FILE__ ));
Note: See TracChangeset
for help on using the changeset viewer.