Plugin Directory

Changeset 3107640


Ignore:
Timestamp:
06/25/2024 05:56:30 PM (22 months ago)
Author:
deepakanand767
Message:

Removed composer error for php version dependency

Location:
wp-dummy-content-generator/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • wp-dummy-content-generator/trunk/README.txt

    r3089550 r3107640  
    1241243.4.0 - Made it compatible 7.4 to 8.3 php version.
    1251253.4.1 - Removed unwanted vendors.
     1263.4.2 - Removed composer error for php version dependency.
    126127== Upgrade Notice ==
  • wp-dummy-content-generator/trunk/composer.json

    r3089543 r3107640  
    22    "require": {
    33        "fakerphp/faker": "^1.23"
     4    },
     5    "config": {
     6        "platform-check": false
    47    }
    58}
  • wp-dummy-content-generator/trunk/vendor/composer/autoload_real.php

    r3089547 r3107640  
    2222            return self::$loader;
    2323        }
    24 
    25         require __DIR__ . '/platform_check.php';
    2624
    2725        spl_autoload_register(array('ComposerAutoloaderIniteed7cf5acd9f66679ff115a04fdda952', 'loadClassLoader'), true, true);
  • wp-dummy-content-generator/trunk/wp_dummy_content_generator.php

    r3089550 r3107640  
    1717 * Plugin URI:        https://wpdcg.online/
    1818 * 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.1
     19 * Version:           3.4.2
    2020 * Author:            Deepak anand
    2121 * Author URI:        https://wpdcg.online/about-us/
     
    2323 * License URI:       http://www.gnu.org/licenses/gpl-2.0.txt
    2424 * Text Domain:       wp_dummy_content_generator
    25  * WC tested up to:   8.4.0
     25 * WC tested up to:   9.0.2
    2626 * Domain Path:       /languages
    2727 */
     
    3737 * Rename this for your plugin and update it as you release new versions.
    3838 */
    39 define( 'wp_dummy_content_generator_PLUGIN_NAME_VERSION', '3.4.1' );
     39define( 'wp_dummy_content_generator_PLUGIN_NAME_VERSION', '3.4.2' );
    4040define( 'wp_dummy_content_generator_PLUGIN_BASE_URL',plugin_basename( __FILE__ ));
    4141define( 'wp_dummy_content_generator_PLUGIN_BASE_URI',plugin_dir_path( __FILE__ ));
Note: See TracChangeset for help on using the changeset viewer.