Plugin Directory

Changeset 2241498


Ignore:
Timestamp:
02/10/2020 02:36:22 AM (6 years ago)
Author:
10quality
Message:

Updating to version 2.3.11

Location:
simple-post-gallery/trunk
Files:
5 deleted
28 edited

Legend:

Unmodified
Added
Removed
  • simple-post-gallery/trunk/README.txt

    r2216112 r2241498  
    22Post Gallery
    33Contributors: 10quality
     4Donate link: https://www.10quality.com/donations/
    45Tags: gallery, post gallery, pictures, images, lightbox, customizable, customization, galleries, videos, video gallery, photo gallery, swipebox, youtube, vimeo
    56Requires at least: 3.2
    67Requires PHP: 5.4
    78Tested up to: 5.3
    8 Stable tag: 2.3.10
     9Stable tag: 2.3.11
    910License: MIT
    1011License URI: http://www.linfo.org/mitlicense.html
     
    5960== Changelog ==
    6061
     62= 2.3.11 =
     63*Release Date - 9 Feb 2020*
     64
     65* Framework files updated.
     66* Fixed reported issue related to WP-CLI and BlockController.
     67* Comments refactored.
     68
    6169= 2.3.10 =
    6270*Release Date - 20 December 2019*
  • simple-post-gallery/trunk/app/Config/app.php

    r2216112 r2241498  
    2020    ],
    2121
    22     'version' => '2.3.10',
     22    'version' => '2.3.11',
     23
     24    'author' => '10 Quality Studio <https://www.10quality.com/>',
    2325
    2426    'autoenqueue' => [
  • simple-post-gallery/trunk/app/Controllers/AdminController.php

    r1880431 r2241498  
    1111/**
    1212 * Handles admin methods.
     13 * WordPress MVC Controller.
    1314 *
    14  * @author Alejandro Mostajo <http://about.me/amostajo>
    15  * @copyright 10Quality <http://www.10quality.com>
    16  * @package PostGallery
    17  * @version 2.1.8
     15 * @author Ale Mostajo <http://about.me/amostajo>
     16 * @copyright 10 Quality <http://www.10quality.com>
     17 * @package simple-post-gallery
     18 * @version 2.1.11
    1819 */
    1920class AdminController extends Controller
     
    2829     * Enqueues and registers scripts.
    2930     * @since 1.0.0
    30      * @since 1.0.4 Updated to version 1.0.4.
    31      * @since 2.0.0 Works with new framework.
    32      * @since 2.1.0 Normalized font-awesome location.
    33      * @since 2.1.1 Updated dependency version.
    3431     *
    35      * @global object $postgallery Main class.
     32     * @hook admin_enqueue_scripts
    3633     */
    3734    public function enqueue()
    3835    {
    39         global $postgallery;
    4036        wp_register_style(
    4137            'font-awesome',
     
    4844            assets_url( 'css/app.css', __FILE__ ),
    4945            [ 'font-awesome' ],
    50             $postgallery->config->get( 'version' )
     46            post_gallery()->config->get( 'version' )
    5147        );
    5248        wp_register_script(
     
    6157            assets_url( 'js/app.js', __FILE__ ),
    6258            [ 'wp-media-uploader' ],
    63             $postgallery->config->get( 'version' ),
     59            post_gallery()->config->get( 'version' ),
    6460            true
    6561        );
     
    6864     * Registers admin menus.
    6965     * @since 1.0.0
     66     *
     67     * @hook admin_menu
    7068     */
    7169    public function menu()
     
    8381     * Displays admin settings.
    8482     * @since 1.0.0
    85      * @since 1.0.3 Added cache tab.
    86      * @since 2.0.0 Hooks modified.
     83     *
     84     * @see self::menu()
    8785     */
    8886    public function view_settings()
     
    118116     * Returns flag indicating success operation
    119117     * @since 1.0.0
    120      * @since 1.0.3 Added cache flush.
    121      * @since 2.0.0 Hook added.
     118     *
     119     * @see self::view_settings()
    122120     *
    123121     * @param object $socialFeeder Social Feeder model
     
    156154    /**
    157155     * Returns shorcode actions.
    158      * Filter "post_gallery_metabox_shortcode_actions"
    159156     * @since 2.1.8
     157     *
     158     * @hook post_gallery_metabox_shortcode_actions
    160159     *
    161160     * @param array $actions Shortcode actions.
  • simple-post-gallery/trunk/app/Controllers/BlockController.php

    r2206154 r2241498  
    77/**
    88 * Handles gutenberg related hooks.
     9 * WordPress MVC Controller.
    910 *
    1011 * @author Cami Mostajo
    1112 * @copyright 10Quality <http://www.10quality.com>
    12  * @package PostGallery
     13 * @package simple-post-gallery
    1314 * @version 2.3.8
    1415 */
     
    1920     * @since 2.3.0
    2021     *
     22     * @hook init
     23     *
    2124     * @link https://www.youtube.com/watch?v=Qsf4YODc-cQ
    22      *
    23      * @global PostGallery\Main $postgallery
    2425     */
    2526    public function register()
  • simple-post-gallery/trunk/app/Controllers/ConfigController.php

    r2206916 r2241498  
    77/**
    88 * Config Controller.
     9 * WordPress MVC Controller.
    910 *
    1011 * @author Alejandro Mostajo <http://about.me/amostajo>
    1112 * @copyright 10Quality <http://www.10quality.com>
    12  * @package PostGallery
     13 * @package simple-post-gallery
    1314 * @version 2.3.9
    1415 */
     
    1819     * Enqueues and registers scripts.
    1920     * @since 1.0.0
     21     *
     22     * @hook wp_enqueue_scripts
    2023     */
    2124    public function enqueue()
     
    3740    /**
    3841     * Returns action links.
    39      * Filter "plugin_action_links_[basename]"
    40      * Wordpress hook
    4142     * @since 2.0.0
     43     *
     44     * @hook plugin_action_links_[basename]
    4245     *
    4346     * @param array $links Plugin action links.
  • simple-post-gallery/trunk/app/Controllers/GalleryController.php

    r1887904 r2241498  
    1212/**
    1313 * Gallery Controller.
     14 * WordPress MVC Controller.
    1415 *
    1516 * @author Alejandro Mostajo <http://about.me/amostajo>
    1617 * @copyright 10Quality <http://www.10quality.com>
    17  * @package PostGallery
     18 * @package simple-post-gallery
    1819 * @version 2.2.6
    1920 */
     
    2324     * Returns a post gallery.
    2425     * @since 1.0.0
    25      * @since 2.0.0 WPMVC compatibility and hooks.
    26      * @since 2.1.5 Hot fix to allow PHP 5.4 compatibility.
     26     *
     27     * @see functions.php::get_gallery()
    2728     *
    2829     * @param mixed $post_id Post ID.
     
    5152     * Displays a post gallery.
    5253     * @since 1.0.0
    53      * @since 2.0.0 WPMVC compatibility, format customization.
    54      * @since 2.1.2 Adds gallery scripta and swipebox support.
    55      * @since 2.1.5 Hot fix to allow PHP 5.4 compatibility.
    56      * @since 2.2.2 Checks for shortcode attributes.
    57      * @since 2.2.6 Lightbox removed.
     54     *
     55     * @see functions.php::the_gallery()
    5856     *
    5957     * @param mixed $post_id Post ID.
     
    105103     * Registers metaboxes.
    106104     * @since 1.0.0
     105     *
     106     * @hook add_meta_boxes
    107107     *
    108108     * @param string $post_type Post type to validate.
     
    126126     * Displays gallery metabox.
    127127     * @since 1.0.0
    128      * @since 2.0.0 Added hooks.
     128     *
     129     * @see self::add_metabox()
    129130     *
    130131     * @param object $post Post object WP_Post.
     
    160161     * Saves gallery information.
    161162     * @since 1.0.0
    162      * @since 2.0.0 Formats support.
    163      * @since 2.2.4 Fixed missing $model bug.
     163     *
     164     * @hook save_post
    164165     *
    165166     * @param int $post_id Post id.
  • simple-post-gallery/trunk/app/Controllers/NoticeController.php

    r1880431 r2241498  
    66use WPMVC\MVC\Controller;
    77/**
    8  * NoticeController controller.
    9  * Generated with ayuco.
     8 * Notice hooks.
     9 * WordPress MVC Controller.
    1010 *
    1111 * @author Alejandro Mostajo <http://about.me/amostajo>
    1212 * @copyright 10Quality
    13  * @package PostGallery
     13 * @package simple-post-gallery
    1414 * @version 2.2.0
    1515 */
     
    1818    /**
    1919     * Checks for dismissed notices.
    20      * Action "admin_init"
    21      * Wordpress hook
    2220     * @since 2.1.2
     21     *
     22     * @hook admin_init
    2323     */
    2424    public function check_dismissed()
     
    3131    /**
    3232     * Display important admin notices.
    33      * Action "admin_notices"
    34      * Wordpress hook
    3533     * @since 2.1.2
    36      * @since 2.2.0 Removed notice 0.
     34     *
     35     * @hook admin_notices
    3736     */
    3837    public function show()
  • simple-post-gallery/trunk/app/Controllers/VideoController.php

    r1887286 r2241498  
    1010use PostGallery\Models\Attachment;
    1111/**
    12  * VideoController controller.
    13  * Generated with ayuco.
     12 * Video hooks.
     13 * WordPress MVC Controller.
    1414 *
    1515 * @author Alejandro Mostajo <http://about.me/amostajo>
    1616 * @copyright 10Quality <http://www.10quality.com>
    17  * @package PostGallery
     17 * @package simple-post-gallery
    1818 * @version 2.2.0
    1919 */
     
    4646    }
    4747    /**
    48      * Filter "media_upload_tabs"
    49      * Wordpress hook
    50      * @since 2.1.0
     48     * Returns media uploader tabs.
     49     * @since 2.1.0
     50     *
     51     * @hook media_upload_tabs
    5152     *
    5253     * @param array $tabs Media tabs.
     
    6061    }
    6162    /**
    62      * Action "media_upload_video_importer"
    63      * Wordpress hook
    64      * @since 2.1.0
     63     * Adds video iframe.
     64     * @since 2.1.0
     65     *
     66     * @hook media_upload_video_importer
    6567     */
    6668    public function media_tab()
     
    7779    }
    7880    /**
    79      * Action "wp_ajax_video_importer_validate"
    80      * Wordpress hook
    81      * @since 2.1.0
     81     * Ajax call for validating video URL.
     82     * @since 2.1.0
     83     *
     84     * @hook wp_ajax_video_importer_validate
    8285     */
    8386    public function ajax_validate()
     
    114117    }
    115118    /**
    116      * Filter "post_gallery_video_preview"
    117      * Wordpress hook
    118      * @since 2.1.0
     119     * Returns video HTML preview.
     120     * @since 2.1.0
     121     *
     122     * @hook post_gallery_video_preview
    119123     *
    120124     * @param string $html HTML preview.
     
    142146    }
    143147    /**
    144      * Action "wp_ajax_video_importer_import"
    145      * Wordpress hook
    146      * @since 2.1.0
     148     * Imports video.
     149     * @since 2.1.0
     150     *
     151     * @hook wp_ajax_video_importer_import
    147152     */
    148153    public function ajax_import()
     
    181186    }
    182187    /**
    183      * Filter "post_gallery_import_video"
    184      * Wordpress hook
    185      * @since 2.1.0
     188     * Returns filtered model/attachment with all video details.
     189     * @since 2.1.0
     190     *
     191     * @hook post_gallery_import_video
    186192     *
    187193     * @param object|Attachment $model Attachment model.
     
    269275    /**
    270276     * Returns embed for youtube and vimeo videos.
    271      * Filter "send_to_editor"
    272      * Wordpress hook
    273      * @since 2.1.0
    274      * @since 2.2.0 Modify video sends (MP4).
    275      * @since 2.2.4 Support for more mimes.
     277     * @since 2.1.0
     278     *
     279     * @hook send_to_editor
    276280     *
    277281     * @param string $html    Current HTML.
     
    290294    }
    291295    /**
    292      * Filter "attachment_fields_to_edit"
    293      * Wordpress hook
    294      * @since 2.1.0
    295      * @since 2.1.1 Fixes view parameters.
    296      * @since 2.2.4 Support for more mimes.
     296     * Returns the edit fields of the attachment, during upload manager.
     297     * @since 2.1.0
     298     *
     299     * @hook attachment_fields_to_edit
    297300     *
    298301     * @param array  $fields Current.
     
    328331    }
    329332    /**
    330      * Filter "attachment_fields_to_save"
    331      * Wordpress hook
    332      * @since 2.1.0
    333      * @since 2.1.1 Fixes save.
     333     * Triggered when the media video is being edited.
     334     * @since 2.1.0
     335     *
     336     * @hook attachment_fields_to_save
    334337     *
    335338     * @param object $post   Post.
  • simple-post-gallery/trunk/app/Lib/functions.php

    r1843712 r2241498  
    66 * @copyright 10Quality <http://www.10quality.com>
    77 * @package PostGallery
    8  * @version 1.0.0
     8 * @version 2.3.11
    99 */
    1010
     
    1414     * @since 1.0.0
    1515     *
    16      * @return object Main class.
     16     * @return \PostGallery\Main Main class.
    1717     */
    1818    function post_gallery()
    1919    {
    20         global $postgallery;
    21         return $postgallery;
     20        return get_bridge( 'PostGallery' );
    2221    }
    2322}
  • simple-post-gallery/trunk/app/Main.php

    r2043514 r2241498  
    99 * Class contains declaration of hooks and filters.
    1010 *
    11  * @author Alejandro Mostajo <http://about.me/amostajo>
    12  * @copyright 10Quality
    13  * @package PostGallery
     11 * @author Ale Mostajo <http://about.me/amostajo>
     12 * @copyright 10 Quality
     13 * @package simple-post-gallery
    1414 * @version 2.3.2
    1515 */
     
    1818    /**
    1919     * Declaration of public wordpress hooks.
    20      * @since 2.3.0
    2120     */
    2221    public function init()
     
    4241     * Declaration of admin only wordpress hooks.
    4342     * For Wordpress admin dashboard.
    44      * @since 2.3.0
    4543     */
    4644    public function on_admin()
  • simple-post-gallery/trunk/app/Models/Attachment.php

    r1887286 r2241498  
    1515 * @author Alejandro Mostajo <http://about.me/amostajo>
    1616 * @copyright 10Quality
    17  * @package PostGallery
    18  * @version 2.2.4
     17 * @package simple-post-gallery
     18 * @version 2.3.11
    1919 */
    2020class Attachment extends Model
     
    2424     * Aliases.
    2525     * @since 1.0.0
    26      * @since 1.0.1 Added title, date and mime
    27      * @since 2.0.0 Following parent.
    28      * @since 2.1.0 Added embed for video.
    29      * @since 2.2.0 Added video_thumb.
    30      * @since 2.2.1 Added is_lightbox and no_thumb_url.
    31      * @since 2.2.4 Added is_uploaded.
    3226     * @var array
    3327     */
     
    227221     * @since 2.2.1
    228222     *
    229      * @global object $postgallery Main class.
    230      *
    231223     * @return string
    232224     */
    233225    public function get_no_thumb_path()
    234226    {
    235         global $postgallery;
    236         return $postgallery->config->get( 'paths.base' ).'../assets/images/default-video.jpg';
     227        return post_gallery()->config->get( 'paths.base' ).'../assets/images/default-video.jpg';
    237228    }
    238229    /**
  • simple-post-gallery/trunk/app/Models/Post.php

    r1850339 r2241498  
    1414 * @author Alejandro Mostajo <http://about.me/amostajo>
    1515 * @copyright 10Quality
    16  * @package PostGallery
     16 * @package simple-post-gallery
    1717 * @version 2.1.6
    1818 */
  • simple-post-gallery/trunk/app/Models/PostGallery.php

    r1843712 r2241498  
    1212 * @author Alejandro Mostajo <http://about.me/amostajo>
    1313 * @copyright 10Quality
    14  * @package PostGallery
     14 * @package simple-post-gallery
    1515 * @version 2.0.0
    1616 */
  • simple-post-gallery/trunk/plugin.php

    r2216112 r2241498  
    44Plugin URI: https://www.10quality.com/product/post-gallery-pro/
    55Description: Adds Gallery of pictures, photos and videos (YouTube, Vimeo and MP4) to any post type. Developed for easy customization in themes.
    6 Version: 2.3.10
     6Version: 2.3.11
    77Author: 10 Quality
    88Author URI: https://www.10quality.com/
  • simple-post-gallery/trunk/vendor/10quality/wpmvc-core/README.md

    r2113414 r2241498  
    1 # Core Package (For Wordpress MVC)
    2 --------------------------------
     1# Core Package (For WordPress MVC)
    32
    43[![Latest Stable Version](https://poser.pugx.org/10quality/wpmvc-core/v/stable)](https://packagist.org/packages/10quality/wpmvc-core)
     
    65[![License](https://poser.pugx.org/10quality/wpmvc-core/license)](https://packagist.org/packages/10quality/wpmvc-core)
    76
    8 Forked version for WPMVC.
     7The core package (library and functionality) for [WordPress MVC](https://www.wordpress-mvc.com/).
    98
    10 Core package (library and functionality) fo Wordpress MVC. Core comes with MVC integration, Cache, Logs and more.
     9This package comes with MVC integration, Cache, Logs and more.
    1110
    1211## Coding Guidelines
    1312
    14 The coding is a mix between PSR-2 and Wordpress PHP guidelines.
     13The coding is a mix between PSR-2 and WordPress PHP guidelines.
    1514
    1615## License
  • simple-post-gallery/trunk/vendor/10quality/wpmvc-core/composer.json

    r2113414 r2241498  
    11{
    22    "name": "10quality/wpmvc-core",
    3     "description": "Wordpress MVC crore plugin.",
     3    "description": "WordPress MVC crore plugin.",
    44    "license": "MIT",
    55    "keywords": ["wordpress","mvc","core"],
  • simple-post-gallery/trunk/vendor/10quality/wpmvc-core/phpunit.xml

    r1843712 r2241498  
    77         convertNoticesToExceptions="true"
    88         convertWarningsToExceptions="true"
    9          stopOnFailure="true"
    10          syntaxCheck="true">
     9         stopOnFailure="true">
    1110    <testsuites>
    1211        <testsuite name="Package Test Suite">
  • simple-post-gallery/trunk/vendor/10quality/wpmvc-core/src/lib/functions.php

    r2051905 r2241498  
    33use Ayuco\Listener;
    44use WPMVC\Resolver;
    5 use WPMVC\Commands\SetNameCommand;
    65use WPMVC\Commands\SetupCommand;
    76use WPMVC\Commands\AddCommand;
     
    98use WPMVC\Commands\CreateCommand;
    109use WPMVC\Commands\SetCommand;
     10use WPMVC\Commands\PrettifyCommand;
    1111
    1212/**
    13  * CORE wordpress functions.
     13 * CORE WordPress functions.
    1414 *
    1515 * @author Alejandro Mostajo <http://about.me/amostajo>
     
    1717 * @license MIT
    1818 * @package WPMVC
    19  * @version 3.1.0
     19 * @version 3.1.10.1
    2020 */
    2121
     
    2424     * Resizes image and returns URL path.
    2525     * @since 1.0.1
    26      * @since 2.0.14 ID added as parameter to prevent duplicate entries by the same name.
    2726     *
    2827     * @param string  $url    Image URL path
     
    6160     * Returns url of asset located in a theme or plugin.
    6261     * @since 1.0.1
    63      * @since 2.0.4 Refactored to work with new structure.
    64      * @since 2.0.15 Added scheme as paramete and network support.
    6562     *
    6663     * @link https://codex.wordpress.org/Function_Reference/home_url
    6764     * @link https://codex.wordpress.org/Function_Reference/network_home_url
     65     *
    6866     * @param string $path       Asset relative path.
    6967     * @param string $file       File location path.
     
    8179            rtrim( $is_network ? network_home_url( '/', $scheme ) : home_url( '/', $scheme ), '/' )
    8280        );
     81        // Polylang support
     82        if ( function_exists( 'pll_current_language' ) ) {
     83            $lang = pll_current_language( 'slug' );
     84            if ( strpos( $url, '/' . $lang ) !== false)
     85                $url = str_replace( '/' . $lang, '', $url );
     86        }
     87        // WPML support
     88        if ( function_exists( 'icl_object_id' ) && defined( 'ICL_LANGUAGE_CODE' ) ) {
     89            if ( strpos( $url, '/' . ICL_LANGUAGE_CODE ) !== false)
     90                $url = str_replace( '/' . ICL_LANGUAGE_CODE, '', $url );
     91        }
    8392        // Clean base path
    8493        $route = preg_replace( '/.+?(?=wp-content)/', '', $route );
    8594        // Clean project relative path
    86         $route = preg_replace( '/\/app[\/\\A-Za-z0-9\.\\-]+/', '', $route );
    87         $route = preg_replace( '/\/assets[\/\\A-Za-z0-9\.\\-]+/', '', $route );
    88         $route = preg_replace( '/\/vendor[\/\\A-Za-z0-9\.\\-]+/', '', $route );
     95        $route = preg_replace( '/\/app[\/\\\\A-Za-z0-9\.\-]+/', '', $route );
     96        $route = preg_replace( '/\/assets[\/\\\\A-Za-z0-9\.\-]+/', '', $route );
     97        $route = preg_replace( '/\/vendor[\/\\\\A-Za-z0-9\.\-]+/', '', $route );
    8998        return $url.'/'.apply_filters( 'app_route', $route ).'/assets/'.$path;
    9099    }
     
    95104     * Returns ayuco.
    96105     * @since 2.0.3
    97      * @since 2.0.4 Added new commands.
    98      * @since 2.0.13 Added SetCommand and sorts registration by name.
    99106     *
    100107     * @param string $path Project path.
     
    111118        $ayuco->register(new SetCommand($path));
    112119        $ayuco->register(new SetupCommand($path));
    113         $ayuco->register(new SetNameCommand($path));
     120        $ayuco->register(new PrettifyCommand($path));
    114121
    115122        return $ayuco;
     
    122129     * Returns wordpress root path.
    123130     * @since 2.0.4
    124      * @since 2.0.10 Force file update on repository.
    125      * @since 3.0.5 Added filters to support path customization.
    126131     *
    127132     * @return string
     
    129134    function get_wp_home_path()
    130135    {
     136        // Ensure get_home_path is available
     137        if ( ! function_exists( 'get_home_path' ) )
     138            require_once( ABSPATH . 'wp-admin/includes/file.php' );
    131139        return apply_filters(
    132140            'home_path',
     
    146154     * Returns path of asset located in a theme or plugin.
    147155     * @since 1.0.1
    148      * @since 2.0.4 Refactored to work with new structure.
    149      * @since 3.0.5 Uses get_wp_home_path instead.
    150156     *
    151157     * @param string  $relative Asset relative path.
     
    162168        $route = preg_replace( '/.+?(?=wp-content)/', '', $route );
    163169        // Clean project relative path
    164         $route = preg_replace( '/\/app[\/\\A-Za-z0-9\.\\-]+/', '', $route );
    165         $route = preg_replace( '/\/assets[\/\\A-Za-z0-9\.\\-]+/', '', $route );
    166         $route = preg_replace( '/\/vendor[\/\\A-Za-z0-9\.\\-]+/', '', $route );
     170        $route = preg_replace( '/\/app[\/\\\\A-Za-z0-9\.\-]+/', '', $route );
     171        $route = preg_replace( '/\/assets[\/\\\\A-Za-z0-9\.\-]+/', '', $route );
     172        $route = preg_replace( '/\/vendor[\/\\\\A-Za-z0-9\.\-]+/', '', $route );
    167173        return $path.'/'.apply_filters( 'app_route_path', $route ).'/assets/'.$relative;
    168174    }
  • simple-post-gallery/trunk/vendor/10quality/wpmvc-core/src/psr4/Bridge.php

    r2216112 r2241498  
    1414 * Plugin class.
    1515 * To be extended as main plugin / theme class.
    16  * Part of the core library of Wordpress Plugin / Wordpress Theme.
     16 * Part of the core library of WordPress Plugin / WordPress Theme.
    1717 *
    1818 * @link https://github.com/amostajo/wordpress-plugin-core/blob/v1.0/src/psr4/Plugin.php
     
    4747
    4848    /**
    49      * List of Wordpress action hooks to add.
     49     * List of WordPress action hooks to add.
    5050     * @var array
    5151     * @since 1.0.3
     
    5454
    5555    /**
    56      * List of Wordpress filter hooks to add.
     56     * List of WordPress filter hooks to add.
    5757     * @var array
    5858     * @since 1.0.3
     
    6161
    6262    /**
    63      * List of Wordpress shortcodes to add.
     63     * List of WordPress shortcodes to add.
    6464     * @var array
    6565     * @since 1.0.3
     
    6868
    6969    /**
    70      * List of Wordpress widgets to add.
     70     * List of WordPress widgets to add.
    7171     * @var array
    7272     * @since 1.0.3
     
    333333
    334334    /**
    335      * Adds a Wordpress action hook.
    336      * @since 1.0.3
    337      *
    338      * @param string $hook             Wordpress hook name.
     335     * Adds a WordPress action hook.
     336     * @since 1.0.3
     337     *
     338     * @param string $hook          WordPress hook name.
    339339     * @param string $mvc_call      Lightweight MVC call. (i.e. 'Controller@method')
    340340     * @param mixed  $priority      Execution priority or MVC params.
     
    354354
    355355    /**
    356      * Adds a Wordpress filter hook.
    357      * @since 1.0.3
    358      *
    359      * @param string $hook             Wordpress hook name.
     356     * Adds a WordPress filter hook.
     357     * @since 1.0.3
     358     *
     359     * @param string $hook          WordPress hook name.
    360360     * @param string $mvc_call      Lightweight MVC call. (i.e. 'Controller@method')
    361361     * @param mixed  $priority      Execution priority or MVC params.
     
    375375
    376376    /**
    377      * Adds a Wordpress shortcode.
    378      * @since 1.0.3
    379      *
    380      * @param string $tag        Wordpress tag name.
     377     * Adds a WordPress shortcode.
     378     * @since 1.0.3
     379     *
     380     * @param string $tag      WordPress tag name.
    381381     * @param string $mvc_call Lightweight MVC call. (i.e. 'Controller@method')
    382382     */
     
    391391
    392392    /**
    393      * Adds a Wordpress shortcode.
     393     * Adds a WordPress widget.
    394394     * @since 1.0.3
    395395     *
     
    436436
    437437    /**
    438      * Adds hooks and filters into Wordpress core.
     438     * Adds hooks and filters into WordPress core.
    439439     * @since 1.0.3
    440440     * @since 2.0.4 Added models.
     
    465465                );
    466466            }
    467             // Filters
     467            // Shortcodes
    468468            foreach ( $this->shortcodes as $shortcode ) {
    469469                add_shortcode(
     
    491491
    492492    /**
    493      * Registers added widgets into Wordpress.
     493     * Registers added widgets into WordPress.
    494494     * @since 1.0.3
    495495     */
     
    502502
    503503    /**
    504      * Registers added models into Wordpress.
     504     * Registers added models into WordPress.
    505505     * @since 2.0.4
    506      * @since 2.0.7 Support for automated models with no registration.
     506     * @since 2.0.7  Support for automated models with no registration.
    507507     * @since 2.0.16 Registry supports
    508508     */
     
    704704     * @since 3.1.5 Mapping parameters support.
    705705     *
    706      * @param string $hook          Wordpress hook name.
     706     * @param string $hook          WordPress hook name.
    707707     * @param string $mvc_call      Lightweight MVC call. (i.e. 'Controller@method')
    708708     * @param mixed  $priority      Execution priority or MVC params.
     
    768768     * @param string $call     MVC call.
    769769     * @param array  $mvc_args MVC defined arguments.
    770      * @param array  $args     Wordpress incoming hook arguments.
     770     * @param array  $args     WordPress incoming hook arguments.
    771771     *
    772772     * @return array
     
    814814
    815815    /**
    816      * Addes automated wordpress save post functionality.
     816     * Addes automated WordPress save post functionality.
    817817     * @since 2.0.4
    818818     * @since 2.0.9 Fix for multiple types calling to function.
     
    841841     * Checks if generated assets exist or not.
    842842     * @since 2.0.7
    843      * @since 2.0.8 Refactor based on new config file.
     843     * @since 2.0.8  Refactor based on new config file.
    844844     * @since 2.0.12 Dir __DIR__ checked on config.
    845      * @since 3.1.0 Refactors name and allows for admin enqueues.
     845     * @since 3.1.0  Refactors name and allows for admin enqueues.
    846846     */
    847847    private function _check_assets()
  • simple-post-gallery/trunk/vendor/10quality/wpmvc-core/src/psr4/Config.php

    r1843712 r2241498  
    55/**
    66 * Config class.
    7  * Part of the core library of Wordpress Plugin.
     7 * Part of the core library of WordPress Plugin.
    88 *
    99 * @author Alejandro Mostajo <http://about.me/amostajo>
     
    3535    /**
    3636     * Returns value stored in given key.
    37      * Can acces multidimenssional array values with a DOT(.)
     37     * Can acces multidimensional array values with a DOT(.)
    3838     * i.e. paypal.client_id
    3939     * @since 1.0.0
  • simple-post-gallery/trunk/vendor/10quality/wpmvc-core/src/psr4/Request.php

    r1843712 r2241498  
    55/**
    66 * Request class.
    7  * Used to get web input from query string or wordpress' query vars.
     7 * Used to get web input from query string or WordPress' query vars.
    88 *
    99 * @link https://github.com/amostajo/lightweight-mvc/blob/v1.0/src/Request.php
     
    1717{
    1818    /**
    19      * Gets input from either wordpress query vars or request's POST or GET.
     19     * Gets input from either WordPress query vars or request's POST or GET.
    2020     * @since 1.0.0
    2121     *
    22      * @global object $wp_query Wordpress query.
     22     * @global object $wp_query WordPress query.
    2323     *
    2424     * @param string $key     Name of the input.
  • simple-post-gallery/trunk/vendor/10quality/wpmvc-core/src/psr4/Resolver.php

    r2043514 r2241498  
    44
    55/**
    6  * Resolver holds reference to any global instace created in Wordpress.
     6 * Resolver holds reference to any global instace created in WordPress.
    77 * Allows for easy access to any instance initialized.
    88 *
     
    2727     *
    2828     * @param string              $key     Instance key (namespace or other).
    29      * @param WPMVC\Bridge|object &$bridge Bridge instace to keep referece of.
     29     * @param WPMVC\Bridge|object &$bridge Bridge instance to keep reference of.
    3030     */
    3131    public static function add( $key, &$bridge )
     
    3535
    3636    /**
    37      * Returns any instantiated instence stored in resolver.
     37     * Returns any instantiated instance stored in resolver.
    3838     * @since 3.1.0
    3939     *
  • simple-post-gallery/trunk/vendor/10quality/wpmvc-logger/README.markdown

    r1843712 r2241498  
    33This is a fork modification of the famous and powerful [klogger](https://github.com/katzgrau/KLogger) from [Code Fury](http://codefury.net/projects/klogger/).
    44
    5 Modified version to work with Wordpress Standards and theme check.
     5Modified version to work with WordPress Standards and theme check.
    66
    77## Copyright
  • simple-post-gallery/trunk/vendor/10quality/wpmvc-logger/composer.json

    r1843712 r2241498  
    22    "name": "10quality/wpmvc-logger",
    33    "version": "2.0.0",
    4     "description": "KLogger for Wordpress MVC.",
     4    "description": "KLogger for WordPress MVC.",
    55    "keywords": ["logging"],
    66    "require": {
  • simple-post-gallery/trunk/vendor/10quality/wpmvc-logger/src/Logger.php

    r1843712 r2241498  
    110110     *
    111111     * @internal param string $logFilePrefix The prefix for the log file name
    112      * @internal param string $logFileExt The extension for the log file
     112     * @internal param string $logFileExt    The extension for the log file
    113113     */
    114114    public function __construct($logDirectory, $logLevelThreshold = LogLevel::DEBUG, array $options = array())
  • simple-post-gallery/trunk/vendor/10quality/wpmvc-phpfastcache/README.md

    r1843712 r2241498  
    33This is a fork modification of the famous and powerful [phpfastcache](http://www.phpfastcache.com) from [khoaofgod](https://github.com/khoaofgod/phpfastcache).
    44
    5 Modified version to work with Wordpress Standards and theme check.
     5Modified version to work with WordPress Standards and theme check.
    66
    77## Copyright
  • simple-post-gallery/trunk/vendor/10quality/wpmvc-phpfastcache/composer.json

    r1843712 r2241498  
    22    "name": "10quality/wpmvc-phpfastcache",
    33    "type" : "library",
    4     "description": "Forked version that works with Wordpress MVC.",
     4    "description": "Forked version that works with WordPress MVC.",
    55    "keywords": ["cache"],
    66    "homepage": "http://www.phpfastcache.com",
  • simple-post-gallery/trunk/vendor/composer/installed.json

    r2216112 r2241498  
    4141    },
    4242    {
     43        "name": "10quality/wp-file",
     44        "version": "v0.9.4",
     45        "version_normalized": "0.9.4.0",
     46        "source": {
     47            "type": "git",
     48            "url": "https://github.com/10quality/wp-file.git",
     49            "reference": "282f0f6733a9e18b392a8b9999dcd8949275a77b"
     50        },
     51        "dist": {
     52            "type": "zip",
     53            "url": "https://api.github.com/repos/10quality/wp-file/zipball/282f0f6733a9e18b392a8b9999dcd8949275a77b",
     54            "reference": "282f0f6733a9e18b392a8b9999dcd8949275a77b",
     55            "shasum": ""
     56        },
     57        "require": {
     58            "php": ">=5.2"
     59        },
     60        "require-dev": {
     61            "phpunit/phpunit": "4.4.*"
     62        },
     63        "time": "2018-06-12T20:43:25+00:00",
     64        "type": "library",
     65        "installation-source": "dist",
     66        "autoload": {
     67            "psr-4": {
     68                "TenQuality\\WP\\": "src"
     69            }
     70        },
     71        "notification-url": "https://packagist.org/downloads/",
     72        "license": [
     73            "MIT"
     74        ],
     75        "authors": [
     76            {
     77                "name": "Alejandro Mostajo",
     78                "email": "amostajo@gmail.com"
     79            },
     80            {
     81                "name": "10 Quality",
     82                "email": "info@10quality.com"
     83            }
     84        ],
     85        "description": "Small class library that facilitates file handling in Wordpress.",
     86        "keywords": [
     87            "file",
     88            "filesystem",
     89            "wordpress"
     90        ]
     91    },
     92    {
     93        "name": "10quality/wpmvc-mvc",
     94        "version": "v2.1.6",
     95        "version_normalized": "2.1.6.0",
     96        "source": {
     97            "type": "git",
     98            "url": "https://github.com/10quality/wpmvc-mvc.git",
     99            "reference": "f90689907b6f1eab368a14e859e37bd16e87286c"
     100        },
     101        "dist": {
     102            "type": "zip",
     103            "url": "https://api.github.com/repos/10quality/wpmvc-mvc/zipball/f90689907b6f1eab368a14e859e37bd16e87286c",
     104            "reference": "f90689907b6f1eab368a14e859e37bd16e87286c",
     105            "shasum": ""
     106        },
     107        "require": {
     108            "php": ">=5.4.0"
     109        },
     110        "require-dev": {
     111            "phpunit/phpunit": "7.5.*"
     112        },
     113        "time": "2019-06-04T21:22:07+00:00",
     114        "type": "library",
     115        "installation-source": "dist",
     116        "autoload": {
     117            "psr-4": {
     118                "WPMVC\\MVC\\": "src"
     119            }
     120        },
     121        "notification-url": "https://packagist.org/downloads/",
     122        "license": [
     123            "MIT"
     124        ],
     125        "authors": [
     126            {
     127                "name": "Alejandro Mostajo",
     128                "email": "amostajo@gmail.com"
     129            },
     130            {
     131                "name": "10Quality",
     132                "email": "info@10quality.com"
     133            }
     134        ],
     135        "description": "Lightweight MVC for WPMVC (Wordpress MVC framework).",
     136        "keywords": [
     137            "light",
     138            "lightweight",
     139            "mvc",
     140            "wordpress"
     141        ]
     142    },
     143    {
     144        "name": "nikic/php-parser",
     145        "version": "dev-master",
     146        "version_normalized": "9999999-dev",
     147        "source": {
     148            "type": "git",
     149            "url": "https://github.com/nikic/PHP-Parser.git",
     150            "reference": "a2443aaefa9282a488ec7880193f3fcd29f69b33"
     151        },
     152        "dist": {
     153            "type": "zip",
     154            "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/a2443aaefa9282a488ec7880193f3fcd29f69b33",
     155            "reference": "a2443aaefa9282a488ec7880193f3fcd29f69b33",
     156            "shasum": ""
     157        },
     158        "require": {
     159            "ext-tokenizer": "*",
     160            "php": ">=7.0"
     161        },
     162        "require-dev": {
     163            "ircmaxell/php-yacc": "0.0.5",
     164            "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0"
     165        },
     166        "time": "2020-02-09T21:50:19+00:00",
     167        "bin": [
     168            "bin/php-parse"
     169        ],
     170        "type": "library",
     171        "extra": {
     172            "branch-alias": {
     173                "dev-master": "4.3-dev"
     174            }
     175        },
     176        "installation-source": "source",
     177        "autoload": {
     178            "psr-4": {
     179                "PhpParser\\": "lib/PhpParser"
     180            }
     181        },
     182        "notification-url": "https://packagist.org/downloads/",
     183        "license": [
     184            "BSD-3-Clause"
     185        ],
     186        "authors": [
     187            {
     188                "name": "Nikita Popov"
     189            }
     190        ],
     191        "description": "A PHP parser written in PHP",
     192        "keywords": [
     193            "parser",
     194            "php"
     195        ]
     196    },
     197    {
     198        "name": "10quality/wpmvc-core",
     199        "version": "v3.1.10.1",
     200        "version_normalized": "3.1.10.1",
     201        "source": {
     202            "type": "git",
     203            "url": "https://github.com/10quality/wpmvc-core.git",
     204            "reference": "9eef2af9433d4993055e21f5985cc54b43dd7405"
     205        },
     206        "dist": {
     207            "type": "zip",
     208            "url": "https://api.github.com/repos/10quality/wpmvc-core/zipball/9eef2af9433d4993055e21f5985cc54b43dd7405",
     209            "reference": "9eef2af9433d4993055e21f5985cc54b43dd7405",
     210            "shasum": ""
     211        },
     212        "require": {
     213            "10quality/wpmvc-logger": "2.0.*",
     214            "10quality/wpmvc-mvc": "2.1.*",
     215            "10quality/wpmvc-phpfastcache": "4.0.*",
     216            "php": ">=5.4.0"
     217        },
     218        "require-dev": {
     219            "10quality/wpmvc-commands": "1.0.*",
     220            "phpunit/phpunit": "7.5.*"
     221        },
     222        "time": "2020-01-27T01:02:47+00:00",
     223        "type": "library",
     224        "installation-source": "source",
     225        "autoload": {
     226            "files": [
     227                "src/lib/functions.php"
     228            ],
     229            "psr-4": {
     230                "WPMVC\\": "src/psr4"
     231            }
     232        },
     233        "notification-url": "https://packagist.org/downloads/",
     234        "license": [
     235            "MIT"
     236        ],
     237        "authors": [
     238            {
     239                "name": "10 Quality",
     240                "email": "info@10quality.com"
     241            },
     242            {
     243                "name": "Alejandro Mostajo",
     244                "email": "amostajo@gmail.com"
     245            }
     246        ],
     247        "description": "WordPress MVC crore plugin.",
     248        "keywords": [
     249            "core",
     250            "mvc",
     251            "wordpress"
     252        ]
     253    },
     254    {
     255        "name": "10quality/wpmvc-commands",
     256        "version": "v1.1.9.1",
     257        "version_normalized": "1.1.9.1",
     258        "source": {
     259            "type": "git",
     260            "url": "https://github.com/10quality/wpmvc-commands.git",
     261            "reference": "9cfd462bf9f18d01a8620020aca2fb685033909c"
     262        },
     263        "dist": {
     264            "type": "zip",
     265            "url": "https://api.github.com/repos/10quality/wpmvc-commands/zipball/9cfd462bf9f18d01a8620020aca2fb685033909c",
     266            "reference": "9cfd462bf9f18d01a8620020aca2fb685033909c",
     267            "shasum": ""
     268        },
     269        "require": {
     270            "10quality/ayuco": "^1.0",
     271            "nikic/php-parser": "^4.2",
     272            "php": ">=5.4.0"
     273        },
     274        "require-dev": {
     275            "phpunit/phpunit": "8.0.*"
     276        },
     277        "time": "2020-01-27T19:38:38+00:00",
     278        "type": "library",
     279        "installation-source": "source",
     280        "autoload": {
     281            "psr-4": {
     282                "WPMVC\\Commands\\": "src"
     283            }
     284        },
     285        "notification-url": "https://packagist.org/downloads/",
     286        "license": [
     287            "MIT"
     288        ],
     289        "authors": [
     290            {
     291                "name": "Alejandro Mostajo",
     292                "email": "amostajo@gmail.com"
     293            }
     294        ],
     295        "description": "Ayuco commands/jobs for WordPress MVC.",
     296        "keywords": [
     297            "ayuco",
     298            "jobs",
     299            "mvc",
     300            "wordpress"
     301        ]
     302    },
     303    {
    43304        "name": "10quality/wpmvc-logger",
    44305        "version": "v2.0.x-dev",
     
    46307        "source": {
    47308            "type": "git",
    48             "url": "https://github.com/10quality/wpmvc-logger.git",
    49             "reference": "726b82a34807cdac30d06684e342b7d0035735fd"
    50         },
    51         "dist": {
    52             "type": "zip",
    53             "url": "https://api.github.com/repos/10quality/wpmvc-logger/zipball/726b82a34807cdac30d06684e342b7d0035735fd",
    54             "reference": "726b82a34807cdac30d06684e342b7d0035735fd",
     309            "url": "https://github.com/10quality/wpmvc-klogger.git",
     310            "reference": "3f8959bd7fe585d248d102e198aae4a2504a90d1"
     311        },
     312        "dist": {
     313            "type": "zip",
     314            "url": "https://api.github.com/repos/10quality/wpmvc-klogger/zipball/3f8959bd7fe585d248d102e198aae4a2504a90d1",
     315            "reference": "3f8959bd7fe585d248d102e198aae4a2504a90d1",
    55316            "shasum": ""
    56317        },
     
    63324            "phpunit/phpunit": "4.0.*"
    64325        },
    65         "time": "2016-09-23T21:01:36+00:00",
     326        "time": "2020-01-09T23:17:24+00:00",
    66327        "type": "library",
    67328        "installation-source": "source",
     
    99360            }
    100361        ],
    101         "description": "KLogger for Wordpress MVC.",
     362        "description": "KLogger for WordPress MVC.",
    102363        "keywords": [
    103364            "logging"
     
    111372            "type": "git",
    112373            "url": "https://github.com/10quality/wpmvc-phpfastcache.git",
    113             "reference": "f084123371dbfc734ed0e680a4e7aa61dd0d100b"
    114         },
    115         "dist": {
    116             "type": "zip",
    117             "url": "https://api.github.com/repos/10quality/wpmvc-phpfastcache/zipball/f084123371dbfc734ed0e680a4e7aa61dd0d100b",
    118             "reference": "f084123371dbfc734ed0e680a4e7aa61dd0d100b",
     374            "reference": "6d0b4ca7fd1e3d5b27992a2d8321768eb484873e"
     375        },
     376        "dist": {
     377            "type": "zip",
     378            "url": "https://api.github.com/repos/10quality/wpmvc-phpfastcache/zipball/6d0b4ca7fd1e3d5b27992a2d8321768eb484873e",
     379            "reference": "6d0b4ca7fd1e3d5b27992a2d8321768eb484873e",
    119380            "shasum": ""
    120381        },
     
    129390            "sami/sami": "dev-master"
    130391        },
    131         "time": "2016-10-25T23:32:37+00:00",
     392        "time": "2020-01-09T23:19:53+00:00",
    132393        "type": "library",
    133394        "installation-source": "source",
     
    163424            }
    164425        ],
    165         "description": "Forked version that works with Wordpress MVC.",
     426        "description": "Forked version that works with WordPress MVC.",
    166427        "homepage": "http://www.phpfastcache.com",
    167428        "keywords": [
    168429            "cache"
    169         ]
    170     },
    171     {
    172         "name": "nikic/php-parser",
    173         "version": "2.x-dev",
    174         "version_normalized": "2.9999999.9999999.9999999-dev",
    175         "source": {
    176             "type": "git",
    177             "url": "https://github.com/nikic/PHP-Parser.git",
    178             "reference": "4dd659edadffdc2143e4753df655d866dbfeedf0"
    179         },
    180         "dist": {
    181             "type": "zip",
    182             "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/4dd659edadffdc2143e4753df655d866dbfeedf0",
    183             "reference": "4dd659edadffdc2143e4753df655d866dbfeedf0",
    184             "shasum": ""
    185         },
    186         "require": {
    187             "ext-tokenizer": "*",
    188             "php": ">=5.4"
    189         },
    190         "require-dev": {
    191             "phpunit/phpunit": "~4.0"
    192         },
    193         "time": "2016-09-16T12:04:44+00:00",
    194         "bin": [
    195             "bin/php-parse"
    196         ],
    197         "type": "library",
    198         "extra": {
    199             "branch-alias": {
    200                 "dev-master": "2.1-dev"
    201             }
    202         },
    203         "installation-source": "source",
    204         "autoload": {
    205             "psr-4": {
    206                 "PhpParser\\": "lib/PhpParser"
    207             }
    208         },
    209         "notification-url": "https://packagist.org/downloads/",
    210         "license": [
    211             "BSD-3-Clause"
    212         ],
    213         "authors": [
    214             {
    215                 "name": "Nikita Popov"
    216             }
    217         ],
    218         "description": "A PHP parser written in PHP",
    219         "keywords": [
    220             "parser",
    221             "php"
    222430        ]
    223431    },
     
    229437            "type": "git",
    230438            "url": "https://github.com/10quality/ayuco.git",
    231             "reference": "413481dd2d725c31e70ef63bbb3b77d9f9bf9b07"
    232         },
    233         "dist": {
    234             "type": "zip",
    235             "url": "https://api.github.com/repos/10quality/ayuco/zipball/413481dd2d725c31e70ef63bbb3b77d9f9bf9b07",
    236             "reference": "413481dd2d725c31e70ef63bbb3b77d9f9bf9b07",
    237             "shasum": ""
    238         },
    239         "require-dev": {
    240             "phpunit/phpunit": "4.4.*"
    241         },
    242         "time": "2016-05-14T09:07:34+00:00",
     439            "reference": "6c4d11232dc7b80ebb87c7899db98c76829e1a63"
     440        },
     441        "dist": {
     442            "type": "zip",
     443            "url": "https://api.github.com/repos/10quality/ayuco/zipball/6c4d11232dc7b80ebb87c7899db98c76829e1a63",
     444            "reference": "6c4d11232dc7b80ebb87c7899db98c76829e1a63",
     445            "shasum": ""
     446        },
     447        "require-dev": {
     448            "phpunit/phpunit": "8.0.*"
     449        },
     450        "time": "2020-01-25T07:57:28+00:00",
    243451        "type": "library",
    244452        "installation-source": "source",
     
    269477            "php"
    270478        ]
    271     },
    272     {
    273         "name": "10quality/wpmvc-commands",
    274         "version": "v1.0.x-dev",
    275         "version_normalized": "1.0.9999999.9999999-dev",
    276         "source": {
    277             "type": "git",
    278             "url": "https://github.com/10quality/wpmvc-commands.git",
    279             "reference": "283016f921589c0161bda9064cd8a879bc82f9de"
    280         },
    281         "dist": {
    282             "type": "zip",
    283             "url": "https://api.github.com/repos/10quality/wpmvc-commands/zipball/283016f921589c0161bda9064cd8a879bc82f9de",
    284             "reference": "283016f921589c0161bda9064cd8a879bc82f9de",
    285             "shasum": ""
    286         },
    287         "require": {
    288             "10quality/ayuco": "^1.0",
    289             "nikic/php-parser": "^2.1",
    290             "php": ">=5.4.0"
    291         },
    292         "time": "2017-04-21T18:45:32+00:00",
    293         "type": "library",
    294         "installation-source": "source",
    295         "autoload": {
    296             "psr-4": {
    297                 "WPMVC\\Commands\\": "src"
    298             }
    299         },
    300         "notification-url": "https://packagist.org/downloads/",
    301         "license": [
    302             "MIT"
    303         ],
    304         "authors": [
    305             {
    306                 "name": "Alejandro Mostajo",
    307                 "email": "amostajo@gmail.com"
    308             }
    309         ],
    310         "description": "Ayuco commands/jobs for Wordpress MVC.",
    311         "keywords": [
    312             "ayuco",
    313             "jobs",
    314             "mvc",
    315             "wordpress"
    316         ]
    317     },
    318     {
    319         "name": "10quality/wp-file",
    320         "version": "v0.9.4",
    321         "version_normalized": "0.9.4.0",
    322         "source": {
    323             "type": "git",
    324             "url": "https://github.com/10quality/wp-file.git",
    325             "reference": "282f0f6733a9e18b392a8b9999dcd8949275a77b"
    326         },
    327         "dist": {
    328             "type": "zip",
    329             "url": "https://api.github.com/repos/10quality/wp-file/zipball/282f0f6733a9e18b392a8b9999dcd8949275a77b",
    330             "reference": "282f0f6733a9e18b392a8b9999dcd8949275a77b",
    331             "shasum": ""
    332         },
    333         "require": {
    334             "php": ">=5.2"
    335         },
    336         "require-dev": {
    337             "phpunit/phpunit": "4.4.*"
    338         },
    339         "time": "2018-06-12T20:43:25+00:00",
    340         "type": "library",
    341         "installation-source": "dist",
    342         "autoload": {
    343             "psr-4": {
    344                 "TenQuality\\WP\\": "src"
    345             }
    346         },
    347         "notification-url": "https://packagist.org/downloads/",
    348         "license": [
    349             "MIT"
    350         ],
    351         "authors": [
    352             {
    353                 "name": "Alejandro Mostajo",
    354                 "email": "amostajo@gmail.com"
    355             },
    356             {
    357                 "name": "10 Quality",
    358                 "email": "info@10quality.com"
    359             }
    360         ],
    361         "description": "Small class library that facilitates file handling in Wordpress.",
    362         "keywords": [
    363             "file",
    364             "filesystem",
    365             "wordpress"
    366         ]
    367     },
    368     {
    369         "name": "10quality/wpmvc-mvc",
    370         "version": "v2.1.6",
    371         "version_normalized": "2.1.6.0",
    372         "source": {
    373             "type": "git",
    374             "url": "https://github.com/10quality/wpmvc-mvc.git",
    375             "reference": "f90689907b6f1eab368a14e859e37bd16e87286c"
    376         },
    377         "dist": {
    378             "type": "zip",
    379             "url": "https://api.github.com/repos/10quality/wpmvc-mvc/zipball/f90689907b6f1eab368a14e859e37bd16e87286c",
    380             "reference": "f90689907b6f1eab368a14e859e37bd16e87286c",
    381             "shasum": ""
    382         },
    383         "require": {
    384             "php": ">=5.4.0"
    385         },
    386         "require-dev": {
    387             "phpunit/phpunit": "7.5.*"
    388         },
    389         "time": "2019-06-04T21:22:07+00:00",
    390         "type": "library",
    391         "installation-source": "dist",
    392         "autoload": {
    393             "psr-4": {
    394                 "WPMVC\\MVC\\": "src"
    395             }
    396         },
    397         "notification-url": "https://packagist.org/downloads/",
    398         "license": [
    399             "MIT"
    400         ],
    401         "authors": [
    402             {
    403                 "name": "Alejandro Mostajo",
    404                 "email": "amostajo@gmail.com"
    405             },
    406             {
    407                 "name": "10Quality",
    408                 "email": "info@10quality.com"
    409             }
    410         ],
    411         "description": "Lightweight MVC for WPMVC (Wordpress MVC framework).",
    412         "keywords": [
    413             "light",
    414             "lightweight",
    415             "mvc",
    416             "wordpress"
    417         ]
    418     },
    419     {
    420         "name": "10quality/wpmvc-core",
    421         "version": "v3.1.8",
    422         "version_normalized": "3.1.8.0",
    423         "source": {
    424             "type": "git",
    425             "url": "https://github.com/10quality/wpmvc-core.git",
    426             "reference": "ea6981d478141087c5de83dcee55901156f1599c"
    427         },
    428         "dist": {
    429             "type": "zip",
    430             "url": "https://api.github.com/repos/10quality/wpmvc-core/zipball/ea6981d478141087c5de83dcee55901156f1599c",
    431             "reference": "ea6981d478141087c5de83dcee55901156f1599c",
    432             "shasum": ""
    433         },
    434         "require": {
    435             "10quality/wpmvc-logger": "2.0.*",
    436             "10quality/wpmvc-mvc": "2.1.*",
    437             "10quality/wpmvc-phpfastcache": "4.0.*",
    438             "php": ">=5.4.0"
    439         },
    440         "require-dev": {
    441             "10quality/wpmvc-commands": "1.0.*",
    442             "phpunit/phpunit": "7.5.*"
    443         },
    444         "time": "2019-12-14T01:30:41+00:00",
    445         "type": "library",
    446         "installation-source": "source",
    447         "autoload": {
    448             "files": [
    449                 "src/lib/functions.php"
    450             ],
    451             "psr-4": {
    452                 "WPMVC\\": "src/psr4"
    453             }
    454         },
    455         "notification-url": "https://packagist.org/downloads/",
    456         "license": [
    457             "MIT"
    458         ],
    459         "authors": [
    460             {
    461                 "name": "10 Quality",
    462                 "email": "info@10quality.com"
    463             },
    464             {
    465                 "name": "Alejandro Mostajo",
    466                 "email": "amostajo@gmail.com"
    467             }
    468         ],
    469         "description": "Wordpress MVC crore plugin.",
    470         "keywords": [
    471             "core",
    472             "mvc",
    473             "wordpress"
    474         ]
    475479    }
    476480]
Note: See TracChangeset for help on using the changeset viewer.