Plugin Directory

Changeset 2445608

Timestamp:
12/24/2020 03:55:13 PM (4 years ago)
Author:
codeinwp
Message:

Release v3.5.2

Location:
feedzy-rss-feeds
Files:
127 added
4 deleted
19 edited

Legend:

Unmodified
Added
Removed
  • feedzy-rss-feeds/trunk/CHANGELOG.md

    r2409946 r2445608  
    11
     2
     3
     4
     5
     6
    27 ### v3.5.1 - 2020-10-30
    38 **Changes:**
  • feedzy-rss-feeds/trunk/css/feedzy-rss-feeds.css

    r2409946 r2445608  
    33 * Feedzy RSS Feed
    44 * Copyright: (c) 2016 Themeisle, themeisle.com
    5  * Version: 3.5.1
     5 * Version: 3.5.
    66 * Plugin Name: FEEDZY RSS Feeds
    77 * Plugin URI: http://themeisle.com/plugins/feedzy-rss-feeds/
  • feedzy-rss-feeds/trunk/feedzy-rss-feed.php

    r2409946 r2445608  
    1616 * Plugin URI:        https://themeisle.com/plugins/feedzy-rss-feeds-lite/
    1717 * Description:       A small and lightweight RSS aggregator plugin. Fast and very easy to use, it allows you to aggregate multiple RSS feeds into your WordPress site through fully customizable shortcodes & widgets.
    18  * Version:           3.5.1
     18 * Version:           3.5.
    1919 * Author:            Themeisle
    2020 * Author URI:        http://themeisle.com
     
    129129    $feedzy = Feedzy_Rss_Feeds::instance();
    130130    $feedzy->run();
    131     $vendor_file = FEEDZY_ABSPATH . '/vendor/autoload_52.php';
     131    $vendor_file = FEEDZY_ABSPATH . '/vendor/autoload.php';
    132132    if ( is_readable( $vendor_file ) ) {
    133133        require_once $vendor_file;
  • feedzy-rss-feeds/trunk/includes/abstract/feedzy-rss-feeds-admin-abstract.php

    r2409946 r2445608  
    261261            return true;
    262262        }
    263         $keywords_title = $sc['keywords_title'];
    264         if ( ! empty( $keywords_title ) ) {
    265             $continue = false;
    266             foreach ( $keywords_title as $keyword ) {
    267                 if ( strpos( $item->get_title(), $keyword ) !== false ) {
    268                     $continue = true;
    269                 }
    270             }
    271         }
    272 
    273         if ( array_key_exists( 'keywords_ban', $sc ) ) {
    274             $keywords_ban = $sc['keywords_ban'];
    275             if ( ! empty( $keywords_ban ) ) {
    276                 foreach ( $keywords_ban as $keyword ) {
     263
     264        if ( isset( $sc['keywords_inc'] ) && ! empty( $sc['keywords_inc'] ) ) {
     265            $keywords = $sc['keywords_inc'];
     266            if ( ! empty( $keywords ) ) {
     267                $continue = false;
     268                foreach ( $keywords as $keyword ) {
     269                    if ( strpos( $item->get_title(), $keyword ) !== false || strpos( $item->get_description(), $keyword ) !== false ) {
     270                        $continue = true;
     271                    }
     272                }
     273            }
     274        } elseif ( isset( $sc['keywords_title'] ) && ! empty( $sc['keywords_title'] ) ) {
     275            $keywords = $sc['keywords_title'];
     276            if ( ! empty( $keywords ) ) {
     277                $continue = false;
     278                foreach ( $keywords as $keyword ) {
     279                    if ( strpos( $item->get_title(), $keyword ) !== false ) {
     280                        $continue = true;
     281                    }
     282                }
     283            }
     284        }
     285
     286        if ( isset( $sc['keywords_exc'] ) && ! empty( $sc['keywords_exc'] ) ) {
     287            $keywords = $sc['keywords_exc'];
     288            if ( ! empty( $keywords ) ) {
     289                foreach ( $keywords as $keyword ) {
     290                    if ( strpos( $item->get_title(), $keyword ) !== false || strpos( $item->get_description(), $keyword ) !== false ) {
     291                        return false;
     292                    }
     293                }
     294            }
     295        } elseif ( isset( $sc['keywords_ban'] ) && ! empty( $sc['keywords_ban'] ) ) {
     296            $keywords = $sc['keywords_ban'];
     297            if ( ! empty( $keywords ) ) {
     298                foreach ( $keywords as $keyword ) {
    277299                    if ( strpos( $item->get_title(), $keyword ) !== false ) {
    278300                        return false;
     
    501523                // only display item if title contains specific keywords (comma-separated list/case sensitive)
    502524                'keywords_title' => '',
     525
     526
    503527                // cache refresh
    504528                'refresh'        => '12_hours',
     
    664688            );
    665689        }
    666 
    667         require_once( ABSPATH . WPINC . '/class-wp-feed-cache.php' );
    668690        require_once( ABSPATH . WPINC . '/class-wp-feed-cache-transient.php' );
    669691        require_once( ABSPATH . WPINC . '/class-wp-simplepie-file.php' );
     
    673695        $feed->set_useragent( apply_filters( 'http_headers_useragent', $default_agent ) );
    674696        if ( false === apply_filters( 'feedzy_disable_db_cache', false, $feed_url ) ) {
    675             $feed->set_cache_class( 'WP_Feed_Cache' );
     697            SimplePie_Cache::register( 'wp_transient', 'WP_Feed_Cache_Transient' );
     698            $feed->set_cache_location( 'wp_transient' );
    676699            add_filter(
    677700                'wp_feed_cache_transient_lifetime', function( $time ) use ( $cache_time ) {
     
    861884            $sc['keywords_title'] = array_map( 'trim', explode( ',', $sc['keywords_title'] ) );
    862885        }
     886
     887
     888
     889
    863890        if ( ! empty( $sc['keywords_ban'] ) ) {
    864891            $sc['keywords_ban'] = rtrim( $sc['keywords_ban'], ',' );
    865892            $sc['keywords_ban'] = array_map( 'trim', explode( ',', $sc['keywords_ban'] ) );
     893
     894
     895
     896
    866897        }
    867898        if ( empty( $sc['summarylength'] ) || ! is_numeric( $sc['summarylength'] ) ) {
     
    10801111        $count = 0;
    10811112        $items = apply_filters( 'feedzy_feed_items', $feed->get_items( $sc['offset'] ), $feed_url );
     1113
    10821114        foreach ( (array) $items as $item ) {
    1083                 $continue = apply_filters( 'feedzy_item_keyword', true, $sc, $item, $feed_url );
     1115            );
    10841116            if ( $continue === true ) {
    10851117                // Count items. This should be > and not >= because max, when not defined and empty, becomes 0.
     
    10871119                    break;
    10881120                }
    1089                 $item_attr                         = apply_filters( 'feedzy_item_attributes', $item_attr = '', $sizes, $item, $feed_url, $sc );
    1090                 $feed_items[ $count ]             = $this->get_feed_item_filter( $sc, $sizes, $item, $feed_url, $count );
     1121                $item_attr                         = apply_filters( 'feedzy_item_attributes', $item_attr = '', $sizes, $item, $feed_url, $sc );
     1122                $feed_items[ $count ]             = $this->get_feed_item_filter( $sc, $sizes, $item, $feed_url, $count );
    10911123                $feed_items[ $count ]['itemAttr'] = $item_attr;
    1092                 $count ++;
    1093             }
     1124                $count++;
     1125            }
     1126            $index++;
    10941127        }
    10951128
     
    11071140     * @param   object $item The feed item object.
    11081141     * @param   string $feed_url The feed url.
    1109      * @param   int    $index The item number.
     1142     * @param   int    $index The item number (may not be the same as the item_index).
     1143     * @param   int    $item_index The real index of this items in the feed (maybe be different from $index if filters are used).
    11101144     *
    11111145     * @return array
    11121146     */
    1113     private function get_feed_item_filter( $sc, $sizes, $item, $feed_url, $index ) {
     1147    private function get_feed_item_filter( $sc, $sizes, $item, $feed_url, $index ) {
    11141148        $item_link = $item->get_permalink();
    11151149        // if the item has no link (possible in some cases), use the feed link
     
    12961330            'item_source'       => $feed_source,
    12971331        );
    1298         $item_array = apply_filters( 'feedzy_item_filter', $item_array, $item, $sc, $index );
     1332        $item_array = apply_filters( 'feedzy_item_filter', $item_array, $item, $sc, $index );
    12991333
    13001334        return $item_array;
  • feedzy-rss-feeds/trunk/includes/admin/feedzy-rss-feeds-import.php

    r2409946 r2445608  
    165165     * @param   object $item The feed item.
    166166     * @param   array  $sc The shorcode attributes array.
    167      * @param   int    $index The item number.
     167     * @param   int    $index The item number (may not be the same as the item_index).
     168     * @param   int    $item_index The real index of this items in the feed (maybe be different from $index if filters are used).
    168169     *
    169170     * @return mixed
    170171     */
    171     public function add_data_to_item( $itemArray, $item, $sc = null, $index = null ) {
     172    public function add_data_to_item( $itemArray, $item, $sc = null, $index = null ) {
    172173        $itemArray['item_categories'] = $this->retrieve_categories( null, $item );
    173174
     
    177178
    178179        $itemArray['item']      = $item;
     180
    179181        return $itemArray;
    180182    }
     
    973975
    974976        $shortcode = sprintf(
    975             '[feedzy-rss feeds="%s" max="%d" feed_title=no meta=no summary=no thumb=no error_empty="%s" keywords_title="%s" %s="%s" _dry_run_tags_="%s" _dryrun_="yes"]',
     977            '[feedzy-rss feeds="%s" max="%d" feed_title=no meta=no summary=no thumb=no error_empty="%s" keywords_="%s" %s="%s" _dry_run_tags_="%s" _dryrun_="yes"]',
    976978            $feedzy_meta_data['source'],
    977979            $feedzy_meta_data['import_feed_limit'],
    978980            '', // should be empty
    979981            $feedzy_meta_data['inc_key'],
     982
     983
    980984            feedzy_is_pro() ? 'keywords_ban' : '',
    981985            feedzy_is_pro() ? $feedzy_meta_data['exc_key'] : '',
     
    10731077                'default'        => '',
    10741078                'size'           => '250',
    1075                 'keywords_title' => $inc_key,
    1076                 'keywords_ban'   => $exc_key,
     1079                'keywords_inc'   => $inc_key, // this is not keywords_title
     1080                'keywords_ban'   => $exc_key, // to support old pro that does not support keywords_exc
     1081                'keywords_exc'   => $exc_key, // this is not keywords_ban
    10771082                'columns'        => 1,
    10781083                'offset'         => 0,
     
    10811086            ), $job
    10821087        );
     1088
     1089
     1090
    10831091
    10841092        $options['__jobID'] = $job->ID;
     
    11851193
    11861194            if ( $this->feedzy_is_business() ) {
    1187                 $post_title = apply_filters( 'feedzy_parse_custom_tags', $post_title, $results['feed'], $index );
     1195                $post_title = apply_filters( 'feedzy_parse_custom_tags', $post_title, $results['feed'], $i );
    11881196            }
    11891197
     
    12421250
    12431251            if ( $this->feedzy_is_business() ) {
    1244                 $post_content = apply_filters( 'feedzy_parse_custom_tags', $post_content, $results['feed'], $index );
     1252                $post_content = apply_filters( 'feedzy_parse_custom_tags', $post_content, $results['feed'], $i );
    12451253            }
    12461254
     
    13181326            }
    13191327
    1320             do_action( 'feedzy_import_extra', $job, $results, $new_post_id, $index, $import_errors, $import_info );
    1321 
    1322             $index++;
     1328            do_action( 'feedzy_import_extra', $job, $results, $new_post_id, $index, $item['item_index'], $import_errors, $import_info );
    13231329
    13241330            if ( ! empty( $import_featured_img ) ) {
     
    13341340                        $img_success = false;
    13351341                    }
     1342
     1343
     1344
     1345
     1346
     1347
     1348
     1349
    13361350                } else {
    13371351                    $image_url = $import_featured_img;
     
    13471361                }
    13481362            }
     1363
     1364
    13491365
    13501366            // indicate that this post was imported by feedzy.
  • feedzy-rss-feeds/trunk/includes/feedzy-rss-feeds.php

    r2409946 r2445608  
    105105    public function init() {
    106106        self::$plugin_name = 'feedzy-rss-feeds';
    107         self::$version = '3.5.1';
     107        self::$version = '3.5.';
    108108        self::$instance->load_dependencies();
    109109        self::$instance->set_locale();
     
    250250            self::$instance->loader->add_action( 'admin_notices', $plugin_import, 'admin_notices' );
    251251            self::$instance->loader->add_action( 'plugins_loaded', $plugin_import, 'add_cron' );
    252             self::$instance->loader->add_filter( 'feedzy_item_filter', $plugin_import, 'add_data_to_item', 10, 4 );
     252            self::$instance->loader->add_filter( 'feedzy_item_filter', $plugin_import, 'add_data_to_item', 10, );
    253253            self::$instance->loader->add_filter( 'feedzy_display_tab_settings', $plugin_import, 'display_tab_settings', 10, 2 );
    254254            self::$instance->loader->add_filter( 'feedzy_save_tab_settings', $plugin_import, 'save_tab_settings', 10, 2 );
  • feedzy-rss-feeds/trunk/includes/util/feedzy-rss-feeds-util-simplepie.php

    r1851040 r2445608  
    1111if ( ! class_exists( 'SimplePie' ) ) {
    1212    require_once( ABSPATH . WPINC . '/class-simplepie.php' );
    13     require_once( ABSPATH . WPINC . '/class-wp-feed-cache.php' );
    1413    require_once( ABSPATH . WPINC . '/class-wp-feed-cache-transient.php' );
    1514    require_once( ABSPATH . WPINC . '/class-wp-simplepie-file.php' );
  • feedzy-rss-feeds/trunk/includes/views/import-metabox-edit.php

    r2398010 r2445608  
    5858                <?php echo apply_filters( 'feedzy_upsell_content', '' ); ?>
    5959                <div class="label_description">
    60                     <label class="feedzy-sr-only"><?php echo __( 'Display item only if the title contains specific keyword(s)', 'feedzy-rss-feeds' ); ?></label>
     60                    <label class="feedzy-sr-only"><?php echo __( 'Display item only if the title contains specific keyword(s)', 'feedzy-rss-feeds' ); ?></label>
    6161                    <div>
    6262                        <small><?php echo sprintf( __( 'You can provide comma-separated words. Remember, these words are %1$scase sensitive%2$s .e.g. News, news, STOCK', 'feedzy-rss-feeds' ), '<b>', '</b>' ); ?></small>
     
    6565                <div class="feedzy-separator"></div>
    6666                <div class="form-group input-group form_item">
    67                     <input type="text" name="feedzy_meta_data[inc_key]" placeholder="<?php echo __( '(eg. news, sports etc.)', 'feedzy-rss-feeds' ); ?>" class="form-control" value="<?php echo $inc_key; ?>"/>
     67                    <input type="text" name="feedzy_meta_data[inc_key]" placeholder="<?php echo __( '(eg. news, etc.)', 'feedzy-rss-feeds' ); ?>" class="form-control" value="<?php echo $inc_key; ?>"/>
    6868                </div>
    6969            </div>
     
    7272                <?php echo apply_filters( 'feedzy_upsell_content', '' ); ?>
    7373                <div class="label_description">
    74                     <label class="feedzy-sr-only"><?php echo __( 'Exclude item if the title contains specific keyword(s)', 'feedzy-rss-feeds' ); ?></label>
     74                    <label class="feedzy-sr-only"><?php echo __( 'Exclude item if the title contains specific keyword(s)', 'feedzy-rss-feeds' ); ?></label>
    7575                    <div>
    7676                        <small><?php echo sprintf( __( 'You can provide comma-separated words. Remember, these words are %1$scase sensitive%2$s .e.g. News, news, STOCK', 'feedzy-rss-feeds' ), '<b>', '</b>' ); ?></small>
     
    7979                <div class="feedzy-separator"></div>
    8080                <div class="form-group input-group form_item">
    81                     <input type="text" name="feedzy_meta_data[exc_key]" placeholder="<?php echo __( '(eg. news, sports etc.)', 'feedzy-rss-feeds' ); ?>" class="form-control" value="<?php echo $exc_key; ?>"/>
     81                    <input type="text" name="feedzy_meta_data[exc_key]" placeholder="<?php echo __( '(eg. news, etc.)', 'feedzy-rss-feeds' ); ?>" class="form-control" value="<?php echo $exc_key; ?>"/>
    8282                </div>
    8383            </div>
     
    8787                    <label class="feedzy-sr-only"><?php _e( 'How many feed items to import from the source?', 'feedzy-rss-feeds' ); ?></label>
    8888                    <div>
    89                         <small><?php echo sprintf( __( 'If you choose a high number, please check that you configuration can support it or your imports may fail.', 'feedzy-rss-feeds' ), '<b>', '</b>' ); ?></small>
     89                        <small><?php echo sprintf( __( 'If you choose a high number, please check that you configuration can support it or your imports may fail.', 'feedzy-rss-feeds' ), '<b>', '</b>' ); ?></small>
    9090                    </div>
    9191                </div>
     
    101101                    <label class="feedzy-sr-only"><?php _e( 'Automatically delete the posts created for this import after how many days?', 'feedzy-rss-feeds' ); ?></label>
    102102                    <div>
    103                         <small><?php _e( 'Helpful if you want to remove stale or old items automatically. If you choose 0, the imported items will never be deleted.', 'feedzy-rss-feeds' ); ?></small>
     103                        <small><?php _e( 'Helpful if you want to remove stale or old items automatically. If you choose 0, the imported items will n deleted.', 'feedzy-rss-feeds' ); ?></small>
    104104                    </div>
    105105                </div>
  • feedzy-rss-feeds/trunk/readme.md

    r2409946 r2445608  
    44**Requires at least:** 3.7 
    55**Requires PHP:** 5.3 
    6 **Tested up to:** 5.5 
     6**Tested up to:** 5. 
    77**Stable tag:** trunk 
    88**License:** GPLv2 or later 
     
    462462
    463463 == Changelog ==
     464
     465
     466
     467
     468
     469
    464470### 3.5.1 - 2020-10-30  ###
    465471
  • feedzy-rss-feeds/trunk/readme.txt

    r2409946 r2445608  
    44Requires at least: 3.7
    55Requires PHP: 5.3
    6 Tested up to: 5.5
     6Tested up to: 5.
    77Stable tag: trunk
    88License: GPLv2 or later
     
    462462
    463463 == Changelog ==
    464 = 3.5.1 - 2020-10-30  =
     464= 3.5.2 - 2020-12-24  =
     465
     466* [Fix] Compatibility with WP 5.6
     467* [Fix] Composer requiring PHP greater than 7.1.0
     468
     469
     470= 3.5.1 - 2020-10-30  =
    465471
    466472* [Fix] Importing random images with https://source.unsplash.com/random generator link in Feed to Post
     
    469475
    470476
    471 = 3.5.0 - 2020-10-12  = 
     477= 3.5.0 - 2020-10-12  =
    472478
    473479* [Feat] Improved interface for adding new imports and for the imports listing page
     
    475481
    476482
    477 = 3.4.3 - 2020-08-26  = 
     483= 3.4.3 - 2020-08-26  =
    478484
    479485* [Fix] HTML tags being trimmed on save of the import job
     
    481487
    482488
    483 = 3.4.2 - 2020-08-12  = 
     489= 3.4.2 - 2020-08-12  =
    484490
    485491* - [Fix] Compatibility with WP 5.5
     
    488494
    489495
    490 = 3.4.1 - 2020-07-23  = 
     496= 3.4.1 - 2020-07-23  =
    491497
    492498* - [Feat] Feed2Post - Provide more info on imported content and possible errors
  • feedzy-rss-feeds/trunk/themeisle-hash.json

    r2409946 r2445608  
    1 {"feedzy-rss-feed.php":"e893f730727345d6269b9932fd862c85","index.php":"71c0755260138a4b7b2182c3c61179f6","uninstall.php":"cdb21f8648e005cbb9c73481d1750186"}
     1{"feedzy-rss-feed.php":"","index.php":"71c0755260138a4b7b2182c3c61179f6","uninstall.php":"cdb21f8648e005cbb9c73481d1750186"}
  • feedzy-rss-feeds/trunk/vendor/autoload.php

    r2409946 r2445608  
    55require_once __DIR__ . '/composer' . '/autoload_real.php';
    66
    7 return ComposerAutoloaderInita8bbe8b2d9dd55695f1245350eb5f93c::getLoader();
     7return ComposerAutoloaderInit::getLoader();
  • feedzy-rss-feeds/trunk/vendor/codeinwp/themeisle-sdk/CHANGELOG.md

    r2358719 r2445608  
     1
     2
     3
     4
     5
    16##### [Version 3.2.15](https://github.com/Codeinwp/themeisle-sdk/compare/v3.2.14...v3.2.15) (2020-07-23)
    27
  • feedzy-rss-feeds/trunk/vendor/codeinwp/themeisle-sdk/load.php

    r2358719 r2445608  
    1515}
    1616// Current SDK version and path.
    17 $themeisle_sdk_version = '3.2.15';
     17$themeisle_sdk_version = '3.2.1';
    1818$themeisle_sdk_path    = dirname( __FILE__ );
    1919
  • feedzy-rss-feeds/trunk/vendor/codeinwp/themeisle-sdk/src/Modules/Rollback.php

    r2266501 r2445608  
    228228
    229229        $transient = get_transient( $this->product->get_key() . '_warning_rollback' );
     230
     231
     232
    230233
    231234        if ( false === $transient ) {
     
    269272        $transient = get_transient( $this->product->get_key() . '_warning_rollback' );
    270273
     274
     275
     276
    271277        if ( false === $transient ) {
    272278            set_transient( $this->product->get_key() . '_warning_rollback', 'in progress', 30 );
  • feedzy-rss-feeds/trunk/vendor/codeinwp/themeisle-sdk/src/Modules/Uninstall_feedback.php

    r2325794 r2445608  
    237237
    238238            .ti-feedback .popup--form input[type="radio"] {
    239                 margin: 0 10px 0 0;
     239               
    240240            }
    241241
     
    315315
    316316            .ti-feedback .buttons input:last-child {
    317                 margin-left: auto;
     317               
    318318            }
    319319
     
    367367                display: block;
    368368                position: absolute;
    369                 border: 20px solid #23A1CE;
    370                 left: -10px;
    371369                top: 50%;
     370
     371
     372
     373
    372374                border-top: 20px solid transparent;
    373                 border-bottom: 20px solid transparent;
    374                 border-left: 0;
    375                 transform: translateY(-50%);
     375                border-left: 20px solid #23A1CE;
     376                border-bottom: 20px solid transparent;' :
     377                'left: -10px;
     378                border-top: 20px solid transparent;
     379                border-right: 20px solid #23A1CE;
     380                border-bottom: 20px solid transparent;';
     381                ?>
    376382            }
    377383
     
    381387                white-space: normal;
    382388                width: 400px;
    383                 left: 100%;
     389               
    384390                top: -15px;
    385391            }
  • feedzy-rss-feeds/trunk/vendor/composer/autoload_namespaces.php

    r1669344 r2445608  
    77
    88return array(
    9     'xrstf\\Composer52' => array($vendorDir . '/xrstf/composer-php52/lib'),
    109);
  • feedzy-rss-feeds/trunk/vendor/composer/autoload_real.php

    r2409946 r2445608  
    33// autoload_real.php @generated by Composer
    44
    5 class ComposerAutoloaderInita8bbe8b2d9dd55695f1245350eb5f93c
     5class ComposerAutoloaderInit
    66{
    77    private static $loader;
     
    2020        }
    2121
    22         spl_autoload_register(array('ComposerAutoloaderInita8bbe8b2d9dd55695f1245350eb5f93c', 'loadClassLoader'), true, true);
     22        spl_autoload_register(array('ComposerAutoloaderInit', 'loadClassLoader'), true, true);
    2323        self::$loader = $loader = new \Composer\Autoload\ClassLoader();
    24         spl_autoload_unregister(array('ComposerAutoloaderInita8bbe8b2d9dd55695f1245350eb5f93c', 'loadClassLoader'));
     24        spl_autoload_unregister(array('ComposerAutoloaderInit', 'loadClassLoader'));
    2525
    2626        $map = require __DIR__ . '/autoload_namespaces.php';
     
    4343        $includeFiles = require __DIR__ . '/autoload_files.php';
    4444        foreach ($includeFiles as $fileIdentifier => $file) {
    45             composerRequirea8bbe8b2d9dd55695f1245350eb5f93c($fileIdentifier, $file);
     45            composerRequire($fileIdentifier, $file);
    4646        }
    4747
     
    5050}
    5151
    52 function composerRequirea8bbe8b2d9dd55695f1245350eb5f93c($fileIdentifier, $file)
     52function composerRequire($fileIdentifier, $file)
    5353{
    5454    if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
  • feedzy-rss-feeds/trunk/vendor/composer/installed.json

    r2358719 r2445608  
    77            "type": "git",
    88            "url": "https://github.com/Codeinwp/themeisle-sdk.git",
    9             "reference": "95b7447a5f4faba410c281c4bf278fbd740fed71"
     9            "reference": ""
    1010        },
    1111        "dist": {
    1212            "type": "zip",
    13             "url": "https://api.github.com/repos/Codeinwp/themeisle-sdk/zipball/95b7447a5f4faba410c281c4bf278fbd740fed71",
    14             "reference": "95b7447a5f4faba410c281c4bf278fbd740fed71",
     13            "url": "https://api.github.com/repos/Codeinwp/themeisle-sdk/zipball/",
     14            "reference": "",
    1515            "shasum": ""
    1616        },
    1717        "require-dev": {
    18             "dealerdirect/phpcodesniffer-composer-installer": "^0.4.4",
    19             "squizlabs/php_codesniffer": "^3.1",
    20             "wp-coding-standards/wpcs": "^1.0.0"
     18            "automattic/vipwpcs": "^1.0.0",
     19            "dealerdirect/phpcodesniffer-composer-installer": "0.7.0",
     20            "phpcompatibility/php-compatibility": "^9",
     21            "squizlabs/php_codesniffer": "^3.3",
     22            "wp-coding-standards/wpcs": "^1"
    2123        },
    22         "time": "2020-07-23 15:02:10",
     24        "time": "2020-",
    2325        "type": "library",
    2426        "installation-source": "source",
     
    3436            }
    3537        ],
    36         "description": "ThemeIsle SDK.",
     38        "description": "ThemeIsle SDK",
    3739        "homepage": "https://github.com/Codeinwp/themeisle-sdk",
    3840        "keywords": [
    3941            "wordpress"
    4042        ]
    41     },
    42     {
    43         "name": "xrstf/composer-php52",
    44         "version": "v1.0.20",
    45         "version_normalized": "1.0.20.0",
    46         "source": {
    47             "type": "git",
    48             "url": "https://github.com/composer-php52/composer-php52.git",
    49             "reference": "bd41459d5e27df8d33057842b32377c39e97a5a8"
    50         },
    51         "dist": {
    52             "type": "zip",
    53             "url": "https://api.github.com/repos/composer-php52/composer-php52/zipball/bd41459d5e27df8d33057842b32377c39e97a5a8",
    54             "reference": "bd41459d5e27df8d33057842b32377c39e97a5a8",
    55             "shasum": ""
    56         },
    57         "time": "2016-04-16 21:52:24",
    58         "type": "library",
    59         "extra": {
    60             "branch-alias": {
    61                 "dev-default": "1.x-dev"
    62             }
    63         },
    64         "installation-source": "dist",
    65         "autoload": {
    66             "psr-0": {
    67                 "xrstf\\Composer52": "lib/"
    68             }
    69         },
    70         "notification-url": "https://packagist.org/downloads/",
    71         "license": [
    72             "MIT"
    73         ]
    7443    }
    7544]
Note: See TracChangeset for help on using the changeset viewer.