Plugin Directory

Changeset 2578941


Ignore:
Timestamp:
08/05/2021 06:39:30 PM (5 years ago)
Author:
10quality
Message:

Updating version 1.0.8

Location:
social-feeder
Files:
6 added
22 edited

Legend:

Unmodified
Added
Removed
  • social-feeder/trunk/README.txt

    r2331819 r2578941  
    55Requires at least: 3.2
    66Requires PHP: 5.4
    7 Tested up to: 5.4
    8 Stable tag: 1.0.7
     7Tested up to: 5.8
     8Stable tag: 1.0.8
    99License: GPLv3
    1010License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    7272== Changelog ==
    7373
     74= 1.0.8 =
     75*Release Date - 5 August 2021*
     76
     77* Facebook and Instagram brand complicts.
     78* Framework files updated.
     79* Compatibility check.
     80
    7481= 1.0.7 =
    7582*Release Date - 27 June 2020*
  • social-feeder/trunk/app/Config/app.php

    r2331819 r2578941  
    2121    ],
    2222
    23     'version' => '1.0.7',
     23    'version' => '1.0.8',
    2424
    2525    'author' => '10 Quality Studio <https://www.10quality.com/>',
  • social-feeder/trunk/plugin.php

    r2331819 r2578941  
    44Plugin URI: https://www.10quality.com/product/social-feeder-pro/
    55Description: Social media feeds plugin. Includes [ Widget and Shortcode ] to integrate and display [ Facebook, Twitter and Instagram ] feed.
    6 Version: 1.0.7
     6Version: 1.0.8
    77Author: 10 Quality
    88Author URI: https://www.10quality.com/
  • social-feeder/trunk/vendor/10quality/wpmvc-core/src/psr4/Bridge.php

    r2331819 r2578941  
    2121 * @license MIT
    2222 * @package WPMVC
    23  * @version 3.1.13
     23 * @version 3.1.15
    2424 */
    2525abstract class Bridge implements Plugable
     
    483483            // Assets
    484484            if ( count( $this->assets ) > 0 ) {
    485                 add_action( 'wp_enqueue_scripts', [ &$this, '_assets' ], 10 );
     485                add_action(
     486                    'wp_enqueue_scripts',
     487                    [ &$this, '_assets' ],
     488                    $this->config->get( 'autoenqueue.priority' ) ? $this->config->get( 'autoenqueue.priority' ) : 10
     489                );
    486490                if ( is_admin() ) {
    487                     add_action( 'admin_enqueue_scripts', [ &$this, '_admin_assets' ], 10 );
     491                    add_action(
     492                        'admin_enqueue_scripts',
     493                        [ &$this, '_admin_assets' ],
     494                        $this->config->get( 'autoenqueue.priority' ) ? $this->config->get( 'autoenqueue.priority' ) : 10
     495                    );
    488496                }
    489497            }
     
    710718
    711719    /**
     720     * Removes registered MVC action hook.
     721     * @since 3.1.15
     722     *
     723     * @param string $hook
     724     * @param string $mvc_handler
     725     * @param int    $priority
     726     */
     727    public function remove_action( $hook, $mvc_handler, $priority = 10 )
     728    {
     729        remove_action(
     730            $hook,
     731            [ &$this, $this->get_mapped_mvc_call( $mvc_handler ) ],
     732            $priority
     733        );
     734    }
     735
     736    /**
     737     * Removes registered MVC filter hook.
     738     * @since 3.1.15
     739     *
     740     * @param string $hook
     741     * @param string $mvc_handler
     742     * @param int    $priority
     743     */
     744    public function remove_filter( $hook, $mvc_handler, $priority = 10 )
     745    {
     746        remove_filter(
     747            $hook,
     748            [ &$this, $this->get_mapped_mvc_call( $mvc_handler, true ) ],
     749            $priority
     750        );
     751    }
     752
     753    /**
    712754     * Returns class method call mapped to a mvc engine method.
    713755     * @since 1.0.3
  • social-feeder/trunk/vendor/10quality/wpmvc-core/src/psr4/Config.php

    r2331819 r2578941  
    1010 * @copyright 10Quality <http://www.10quality.com>
    1111 * @license MIT
    12  * @package WPMVC
    13  * @version 1.0.0
     12 * @package wpmvc-core
     13 * @version 3.1.14
    1414 */
    1515class Config
     
    4444    public function get( $key, $sub = null )
    4545    {
    46         if ( empty( $sub ) ) $sub = $this->raw;
    47 
     46        if ( defined( $key )
     47            && strpos( $key, 'namespace' ) !== 0
     48            && strpos( $key, 'type' ) !== 0
     49            && strpos( $key, 'version' ) !== 0
     50            && strpos( $key, 'author' ) !== 0
     51            && strpos( $key, 'addons' ) !== 0
     52            && strpos( $key, 'license' ) !== 0
     53        )
     54            return constant( $key );
     55        if ( empty( $sub ) )
     56            $sub = $this->raw;
    4857        $keys = explode( '.', $key );
    4958        if ( empty( $keys ) ) return;
  • social-feeder/trunk/vendor/10quality/wpmvc-mvc/src/Engine.php

    r2331819 r2578941  
    1212 * @license MIT
    1313 * @package WPMVC\MVC
    14  * @version 2.1.5
     14 * @version 2.1.12
    1515 */
    1616class Engine
     
    4343     * Default engine constructor.
    4444     * @since 1.0.0
    45      * @since 2.1.0 Added views_relative_path
    4645     *
    4746     * @param string $views_path              Primary path in which views are located.
     
    6261     * Echos return.
    6362     * @since 1.0.0
    64      * @since 1.0.3 Renamed to exec to run, for WP theme validation pass.
    6563     *
    6664     * @param string $controller_name Controller name and method. i.e. DealController@show
     
    7674     * Echos return.
    7775     * @since 1.0.2
    78      * @since 1.0.3 Renamed to exec to run, for WP theme validation pass.
    7976     *
    8077     * @param string $controller_name Controller name and method. i.e. DealController@show
     
    8986     * Returns controller results.
    9087     * @since 1.0.0
    91      * @since 1.0.3 Renamed to exec to run, for WP theme validation pass.
    9288     *
    9389     * @param string $controller_name Controller name and method. i.e. DealController@show
     
    105101     * Returns controller results. With arguments are passed by.
    106102     * @since 1.0.2
    107      * @since 1.0.3 Renamed to exec to run, for WP theme validation pass.
    108103     *
    109104     * @param string $controller_name Controller name and method. i.e. DealController@show
     
    121116     * Returns result.
    122117     * @since 1.0.0
    123      * @since 1.0.3 Renamed to exec to run, for WP theme validation pass.
    124      * @since 2.1.5 Buffer implemented.
    125118     *
    126119     * @param string $controller_name Controller name and method. i.e. DealController@show
     
    135128        }
    136129        // Get controller
    137         $classname = sprintf( $this->namespace . '\Controllers\%s', $compo[0]);
     130        $classname = sprintf( $this->namespace . '\Controllers\%s', str_replace( '/', '\\', $compo[0] ) );
    138131        if ( isset( static::$buffer[$this->namespace][$classname] ) ) {
    139132            $controller = static::$buffer[$this->namespace][$classname]['o'];
  • social-feeder/trunk/vendor/10quality/wpmvc-mvc/src/Models/CategoryModel.php

    r2331819 r2578941  
    99use WPMVC\MVC\Contracts\Stringable;
    1010use WPMVC\MVC\Contracts\Metable;
    11 use WPMVC\MVC\Contracts\Traceable;
    1211use WPMVC\MVC\Traits\AliasTrait;
    1312use WPMVC\MVC\Traits\CastTrait;
     
    200199        }
    201200    }
    202     /**
    203      * Returns flag indicating if model has a trace in the database (an ID).
    204      * @since 2.1.11
    205      *
    206      * @param bool
    207      */
    208     public function has_trace()
    209     {
    210         return $this->term_id !== null;
    211     }
    212201}
  • social-feeder/trunk/vendor/10quality/wpmvc-mvc/src/Models/OptionModel.php

    r2331819 r2578941  
    2525{
    2626    use GenericModelTrait, AliasTrait, CastTrait;
     27
     28    /**
     29     * Should this wp_option be autoloaded?
     30     *
     31     * @since 2.1.11.1
     32     * @var boolean
     33     */
     34    protected $autoload = true;
     35
    2736    /**
    2837     * Option prefix.
     
    8493        if ( ! $this->is_loaded() ) return false;
    8594        $this->fill_defaults();
    86         update_option( $this->prefix . $this->id, json_encode( $this->attributes ) );
     95        update_option( $this->prefix . $this->id, json_encode( $this->attributes ), $this->autoload );
    8796        return true;
    8897    }
  • social-feeder/trunk/vendor/10quality/wpmvc-mvc/src/Models/TermModel.php

    r2331819 r2578941  
    2424 * @license MIT
    2525 * @package WPMVC\MVC
    26  * @version 2.1.11
     26 * @version 2.1.12
    2727 */
    2828abstract class TermModel implements Modelable, Findable, Metable, JSONable, Stringable, Arrayable, Traceable
     
    9898        if ( ! empty( $slug ) ) {
    9999            $attributes = get_term_by( 'slug', $slug, $this->model_taxonomy, ARRAY_A );
     100            if ( !is_wp_error( $attributes ) && !empty( $attributes ) ) {
     101                $this->attributes = $attributes;
     102                $this->load_meta();
     103            }
     104        }
     105    }
     106    /**
     107     * Loads term data by term_taxonomy_id.
     108     * @since 2.1.12
     109     *
     110     * @param int $term_taxonomy_id Term taxonomy ID.
     111     */
     112    public function load_by_id( $term_taxonomy_id )
     113    {
     114        if ( ! empty( $term_taxonomy_id ) ) {
     115            $attributes = get_term_by( 'term_taxonomy_id', $term_taxonomy_id, $this->model_taxonomy, ARRAY_A );
    100116            if ( !is_wp_error( $attributes ) && !empty( $attributes ) ) {
    101117                $this->attributes = $attributes;
     
    152168    public function save()
    153169    {
    154         $id = $this->term_id;
     170        $return = null;
    155171        $data = [];
    156172        if ( $this->term_id ) {
     
    160176                $data[$key] = $value;
    161177            }
    162             $id = wp_update_term( $this->term_id, $this->model_taxonomy, $data );
     178            $return = wp_update_term( $this->term_id, $this->model_taxonomy, $data );
    163179        } else {
    164180            foreach ( $this->attributes as $key => $value ) {
     
    167183                $data[$key] = $value;
    168184            }
    169             $id = wp_insert_term( $this->name, $this->model_taxonomy, $data );
    170         }
    171         if ( is_wp_error( $id ) )
     185            $return = wp_insert_term( $this->name, $this->model_taxonomy, $data );
     186        }
     187        if ( is_wp_error( $return ) )
    172188            return false;
    173         $this->term_id = $id;
     189        if ( !empty( $return ) ) {
     190            $this->term_id = $return['term_id'];
     191            $this->term_taxonomy_id = $return['term_taxonomy_id'];
     192        }
    174193        $this->save_meta_all();
    175194        return true;
  • social-feeder/trunk/vendor/10quality/wpmvc-mvc/src/Traits/FindTermTrait.php

    r2331819 r2578941  
    22
    33namespace WPMVC\MVC\Traits;
    4 
    5 use WPMVC\MVC\Collection as Collection;
    64
    75/**
     
    1210 * @license MIT
    1311 * @package WPMVC\MVC
    14  * @version 2.1.11
     12 * @version 2.1.12
    1513 */
    1614trait FindTermTrait
     
    2826    {
    2927        $model = new self( $taxonomy, $id );
     28        if ( !method_exists( $model, 'has_trace' ) )
     29            return $model;
    3030        return $model->has_trace() ? $model : null;
    3131    }
     
    4343        $model = new self( $taxonomy, 0 );
    4444        $model->load_by_slug( $slug );
     45        if ( !method_exists( $model, 'has_trace' ) )
     46            return $model;
    4547        return $model->has_trace() ? $model : null;
    4648    }
     
    5557    public static function all( $taxonomy = null, $hide_empty = false )
    5658    {
    57         $output = new Collection;
     59        $output = array();
    5860        if ( empty( $taxonomy ) )
    5961            $taxonomy = $this->model_taxonomy;
  • social-feeder/trunk/vendor/10quality/wpmvc-mvc/src/Traits/FindTrait.php

    r2331819 r2578941  
    1212 * @license MIT
    1313 * @package WPMVC\MVC
    14  * @version 2.1.11
     14 * @version 2.1.11.1
    1515 */
    1616trait FindTrait
     
    2727    {
    2828        $model = new self( $id );
     29        if ( !method_exists( $model, 'has_trace' ) )
     30            return $model;
    2931        return $model->has_trace() ? $model : null;
    3032    }
  • social-feeder/trunk/vendor/autoload.php

    r2097713 r2578941  
    55require_once __DIR__ . '/composer/autoload_real.php';
    66
    7 return ComposerAutoloaderInite306f55e604f90704777e52c8c671232::getLoader();
     7return ComposerAutoloaderInit76ab80c8df70e10dcbd493a03852c6b7::getLoader();
  • social-feeder/trunk/vendor/composer/ClassLoader.php

    r2097713 r2578941  
    3838 * @author Fabien Potencier <fabien@symfony.com>
    3939 * @author Jordi Boggiano <j.boggiano@seld.be>
    40  * @see    http://www.php-fig.org/psr/psr-0/
    41  * @see    http://www.php-fig.org/psr/psr-4/
     40 * @see    https://www.php-fig.org/psr/psr-0/
     41 * @see    https://www.php-fig.org/psr/psr-4/
    4242 */
    4343class ClassLoader
     
    6161    {
    6262        if (!empty($this->prefixesPsr0)) {
    63             return call_user_func_array('array_merge', $this->prefixesPsr0);
     63            return call_user_func_array('array_merge', array_values($this->prefixesPsr0));
    6464        }
    6565
     
    280280    public function setApcuPrefix($apcuPrefix)
    281281    {
    282         $this->apcuPrefix = function_exists('apcu_fetch') && ini_get('apc.enabled') ? $apcuPrefix : null;
     282        $this->apcuPrefix = function_exists('apcu_fetch') && filter_var(ini_get('apc.enabled'), FILTER_VALIDATE_BOOLEAN) ? $apcuPrefix : null;
    283283    }
    284284
     
    375375        $first = $class[0];
    376376        if (isset($this->prefixLengthsPsr4[$first])) {
    377             foreach ($this->prefixLengthsPsr4[$first] as $prefix => $length) {
    378                 if (0 === strpos($class, $prefix)) {
    379                     foreach ($this->prefixDirsPsr4[$prefix] as $dir) {
    380                         if (file_exists($file = $dir . DIRECTORY_SEPARATOR . substr($logicalPathPsr4, $length))) {
     377            $subPath = $class;
     378            while (false !== $lastPos = strrpos($subPath, '\\')) {
     379                $subPath = substr($subPath, 0, $lastPos);
     380                $search = $subPath . '\\';
     381                if (isset($this->prefixDirsPsr4[$search])) {
     382                    $pathEnd = DIRECTORY_SEPARATOR . substr($logicalPathPsr4, $lastPos + 1);
     383                    foreach ($this->prefixDirsPsr4[$search] as $dir) {
     384                        if (file_exists($file = $dir . $pathEnd)) {
    381385                            return $file;
    382386                        }
  • social-feeder/trunk/vendor/composer/LICENSE

    r1454365 r2578941  
    11
    2 Copyright (c) 2016 Nils Adermann, Jordi Boggiano
     2Copyright (c) Nils Adermann, Jordi Boggiano
    33
    44Permission is hereby granted, free of charge, to any person obtaining a copy
  • social-feeder/trunk/vendor/composer/autoload_classmap.php

    r2097713 r2578941  
    77
    88return array(
     9    'Composer\\InstalledVersions' => $vendorDir . '/composer/InstalledVersions.php',
    910    'TwitterAPIExchange' => $vendorDir . '/j7mbo/twitter-api-php/TwitterAPIExchange.php',
    1011    'WPMVC\\KLogger\\Logger' => $vendorDir . '/10quality/wpmvc-logger/src/Logger.php',
  • social-feeder/trunk/vendor/composer/autoload_files.php

    r2331819 r2578941  
    88return array(
    99    '6f7750a5f1d239027ef483252f4ce3c7' => $vendorDir . '/10quality/wpmvc-phpfastcache/src/lib/functions.php',
     10    'c607dd5e0d3f783ee5565b107740298c' => $vendorDir . '/10quality/wpmvc-core/src/lib/functions.php',
    1011    'c65d09b6820da036953a371c8c73a9b1' => $vendorDir . '/facebook/graph-sdk/src/Facebook/polyfills.php',
    11     'c607dd5e0d3f783ee5565b107740298c' => $vendorDir . '/10quality/wpmvc-core/src/lib/functions.php',
    1212    '6312c9c2d3cd3ce8e23deb0825f81210' => $baseDir . '/app/Lib/functions.php',
    1313);
  • social-feeder/trunk/vendor/composer/autoload_real.php

    r2097713 r2578941  
    33// autoload_real.php @generated by Composer
    44
    5 class ComposerAutoloaderInite306f55e604f90704777e52c8c671232
     5class ComposerAutoloaderInit76ab80c8df70e10dcbd493a03852c6b7
    66{
    77    private static $loader;
     
    1414    }
    1515
     16    /**
     17     * @return \Composer\Autoload\ClassLoader
     18     */
    1619    public static function getLoader()
    1720    {
     
    2023        }
    2124
    22         spl_autoload_register(array('ComposerAutoloaderInite306f55e604f90704777e52c8c671232', 'loadClassLoader'), true, true);
     25        require __DIR__ . '/platform_check.php';
     26
     27        spl_autoload_register(array('ComposerAutoloaderInit76ab80c8df70e10dcbd493a03852c6b7', 'loadClassLoader'), true, true);
    2328        self::$loader = $loader = new \Composer\Autoload\ClassLoader();
    24         spl_autoload_unregister(array('ComposerAutoloaderInite306f55e604f90704777e52c8c671232', 'loadClassLoader'));
     29        spl_autoload_unregister(array('ComposerAutoloaderInit76ab80c8df70e10dcbd493a03852c6b7', 'loadClassLoader'));
    2530
    2631        $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
    2732        if ($useStaticLoader) {
    28             require_once __DIR__ . '/autoload_static.php';
     33            require __DIR__ . '/autoload_static.php';
    2934
    30             call_user_func(\Composer\Autoload\ComposerStaticInite306f55e604f90704777e52c8c671232::getInitializer($loader));
     35            call_user_func(\Composer\Autoload\ComposerStaticInit76ab80c8df70e10dcbd493a03852c6b7::getInitializer($loader));
    3136        } else {
    3237            $map = require __DIR__ . '/autoload_namespaces.php';
     
    4954
    5055        if ($useStaticLoader) {
    51             $includeFiles = Composer\Autoload\ComposerStaticInite306f55e604f90704777e52c8c671232::$files;
     56            $includeFiles = Composer\Autoload\ComposerStaticInit76ab80c8df70e10dcbd493a03852c6b7::$files;
    5257        } else {
    5358            $includeFiles = require __DIR__ . '/autoload_files.php';
    5459        }
    5560        foreach ($includeFiles as $fileIdentifier => $file) {
    56             composerRequiree306f55e604f90704777e52c8c671232($fileIdentifier, $file);
     61            composerRequire76ab80c8df70e10dcbd493a03852c6b7($fileIdentifier, $file);
    5762        }
    5863
     
    6166}
    6267
    63 function composerRequiree306f55e604f90704777e52c8c671232($fileIdentifier, $file)
     68function composerRequire76ab80c8df70e10dcbd493a03852c6b7($fileIdentifier, $file)
    6469{
    6570    if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
  • social-feeder/trunk/vendor/composer/autoload_static.php

    r2331819 r2578941  
    55namespace Composer\Autoload;
    66
    7 class ComposerStaticInite306f55e604f90704777e52c8c671232
     7class ComposerStaticInit76ab80c8df70e10dcbd493a03852c6b7
    88{
    99    public static $files = array (
    1010        '6f7750a5f1d239027ef483252f4ce3c7' => __DIR__ . '/..' . '/10quality/wpmvc-phpfastcache/src/lib/functions.php',
     11        'c607dd5e0d3f783ee5565b107740298c' => __DIR__ . '/..' . '/10quality/wpmvc-core/src/lib/functions.php',
    1112        'c65d09b6820da036953a371c8c73a9b1' => __DIR__ . '/..' . '/facebook/graph-sdk/src/Facebook/polyfills.php',
    12         'c607dd5e0d3f783ee5565b107740298c' => __DIR__ . '/..' . '/10quality/wpmvc-core/src/lib/functions.php',
    1313        '6312c9c2d3cd3ce8e23deb0825f81210' => __DIR__ . '/../..' . '/app/Lib/functions.php',
    1414    );
     
    110110
    111111    public static $classMap = array (
     112        'Composer\\InstalledVersions' => __DIR__ . '/..' . '/composer/InstalledVersions.php',
    112113        'TwitterAPIExchange' => __DIR__ . '/..' . '/j7mbo/twitter-api-php/TwitterAPIExchange.php',
    113114        'WPMVC\\KLogger\\Logger' => __DIR__ . '/..' . '/10quality/wpmvc-logger/src/Logger.php',
     
    117118    {
    118119        return \Closure::bind(function () use ($loader) {
    119             $loader->prefixLengthsPsr4 = ComposerStaticInite306f55e604f90704777e52c8c671232::$prefixLengthsPsr4;
    120             $loader->prefixDirsPsr4 = ComposerStaticInite306f55e604f90704777e52c8c671232::$prefixDirsPsr4;
    121             $loader->prefixesPsr0 = ComposerStaticInite306f55e604f90704777e52c8c671232::$prefixesPsr0;
    122             $loader->fallbackDirsPsr0 = ComposerStaticInite306f55e604f90704777e52c8c671232::$fallbackDirsPsr0;
    123             $loader->classMap = ComposerStaticInite306f55e604f90704777e52c8c671232::$classMap;
     120            $loader->prefixLengthsPsr4 = ComposerStaticInit76ab80c8df70e10dcbd493a03852c6b7::$prefixLengthsPsr4;
     121            $loader->prefixDirsPsr4 = ComposerStaticInit76ab80c8df70e10dcbd493a03852c6b7::$prefixDirsPsr4;
     122            $loader->prefixesPsr0 = ComposerStaticInit76ab80c8df70e10dcbd493a03852c6b7::$prefixesPsr0;
     123            $loader->fallbackDirsPsr0 = ComposerStaticInit76ab80c8df70e10dcbd493a03852c6b7::$fallbackDirsPsr0;
     124            $loader->classMap = ComposerStaticInit76ab80c8df70e10dcbd493a03852c6b7::$classMap;
    124125
    125126        }, null, ClassLoader::class);
  • social-feeder/trunk/vendor/composer/installed.json

    r2331819 r2578941  
    1 [
    2     {
    3         "name": "j7mbo/twitter-api-php",
    4         "version": "dev-master",
    5         "version_normalized": "9999999-dev",
    6         "source": {
    7             "type": "git",
    8             "url": "https://github.com/J7mbo/twitter-api-php.git",
    9             "reference": "f1a84c8c39a854ac7a8bc87e59c997b526c7bbc7"
    10         },
    11         "dist": {
    12             "type": "zip",
    13             "url": "https://api.github.com/repos/J7mbo/twitter-api-php/zipball/f1a84c8c39a854ac7a8bc87e59c997b526c7bbc7",
    14             "reference": "f1a84c8c39a854ac7a8bc87e59c997b526c7bbc7",
    15             "shasum": ""
    16         },
    17         "require": {
    18             "ext-curl": "*"
    19         },
    20         "require-dev": {
    21             "phpunit/phpunit": "~4.5,>=4.5.1"
    22         },
    23         "time": "2017-05-08T16:51:49+00:00",
    24         "type": "library",
    25         "extra": {
    26             "branch-alias": {
    27                 "dev-master": "1.0-dev"
    28             }
    29         },
    30         "installation-source": "source",
    31         "autoload": {
    32             "classmap": [
    33                 "TwitterAPIExchange.php"
    34             ]
    35         },
    36         "notification-url": "https://packagist.org/downloads/",
    37         "license": [
    38             "GNU Public License"
    39         ],
    40         "authors": [
    41             {
    42                 "name": "James Mallison",
    43                 "homepage": "https://github.com/j7mbo/twitter-api-php"
    44             }
    45         ],
    46         "description": "Simple PHP Wrapper for Twitter API v1.1 calls",
    47         "homepage": "https://github.com/j7mbo/twitter-api-php",
    48         "keywords": [
    49             "api",
    50             "php",
    51             "twitter"
    52         ]
    53     },
    54     {
    55         "name": "php-instagram-api/php-instagram-api",
    56         "version": "dev-master",
    57         "version_normalized": "9999999-dev",
    58         "source": {
    59             "type": "git",
    60             "url": "https://github.com/galen/PHP-Instagram-API.git",
    61             "reference": "7a796fdae715fcdccc00590933ce482437342c35"
    62         },
    63         "dist": {
    64             "type": "zip",
    65             "url": "https://api.github.com/repos/galen/PHP-Instagram-API/zipball/7a796fdae715fcdccc00590933ce482437342c35",
    66             "reference": "7a796fdae715fcdccc00590933ce482437342c35",
    67             "shasum": ""
    68         },
    69         "require": {
    70             "php": ">=5.3.0"
    71         },
    72         "time": "2013-11-13T23:10:03+00:00",
    73         "type": "library",
    74         "installation-source": "source",
    75         "autoload": {
    76             "psr-0": {
    77                 "Instagram": "."
    78             }
    79         },
    80         "notification-url": "https://packagist.org/downloads/",
    81         "license": [
    82             "MIT"
    83         ],
    84         "authors": [
    85             {
    86                 "name": "Galen Grover",
    87                 "email": "galenjr@gmail.com",
    88                 "homepage": "http://www.galengrover.com",
    89                 "role": "Developer"
    90             }
    91         ],
    92         "description": "PHP Instagram API for PHP 5.3+",
    93         "homepage": "https://github.com/galen/PHP-Instagram-API",
    94         "keywords": [
    95             "instagram"
    96         ]
    97     },
    98     {
    99         "name": "10quality/wp-file",
    100         "version": "v0.9.4",
    101         "version_normalized": "0.9.4.0",
    102         "source": {
    103             "type": "git",
    104             "url": "https://github.com/10quality/wp-file.git",
    105             "reference": "282f0f6733a9e18b392a8b9999dcd8949275a77b"
    106         },
    107         "dist": {
    108             "type": "zip",
    109             "url": "https://api.github.com/repos/10quality/wp-file/zipball/282f0f6733a9e18b392a8b9999dcd8949275a77b",
    110             "reference": "282f0f6733a9e18b392a8b9999dcd8949275a77b",
    111             "shasum": ""
    112         },
    113         "require": {
    114             "php": ">=5.2"
    115         },
    116         "require-dev": {
    117             "phpunit/phpunit": "4.4.*"
    118         },
    119         "time": "2018-06-12T20:43:25+00:00",
    120         "type": "library",
    121         "installation-source": "dist",
    122         "autoload": {
    123             "psr-4": {
    124                 "TenQuality\\WP\\": "src"
    125             }
    126         },
    127         "notification-url": "https://packagist.org/downloads/",
    128         "license": [
    129             "MIT"
    130         ],
    131         "authors": [
    132             {
    133                 "name": "Alejandro Mostajo",
    134                 "email": "amostajo@gmail.com"
    135             },
    136             {
    137                 "name": "10 Quality",
    138                 "email": "info@10quality.com"
    139             }
    140         ],
    141         "description": "Small class library that facilitates file handling in Wordpress.",
    142         "keywords": [
    143             "file",
    144             "filesystem",
    145             "wordpress"
    146         ]
    147     },
    148     {
    149         "name": "psr/log",
    150         "version": "1.0.0",
    151         "version_normalized": "1.0.0.0",
    152         "source": {
    153             "type": "git",
    154             "url": "https://github.com/php-fig/log.git",
    155             "reference": "fe0936ee26643249e916849d48e3a51d5f5e278b"
    156         },
    157         "dist": {
    158             "type": "zip",
    159             "url": "https://api.github.com/repos/php-fig/log/zipball/fe0936ee26643249e916849d48e3a51d5f5e278b",
    160             "reference": "fe0936ee26643249e916849d48e3a51d5f5e278b",
    161             "shasum": ""
    162         },
    163         "time": "2012-12-21T11:40:51+00:00",
    164         "type": "library",
    165         "installation-source": "dist",
    166         "autoload": {
    167             "psr-0": {
    168                 "Psr\\Log\\": ""
    169             }
    170         },
    171         "notification-url": "https://packagist.org/downloads/",
    172         "license": [
    173             "MIT"
    174         ],
    175         "authors": [
    176             {
    177                 "name": "PHP-FIG",
    178                 "homepage": "http://www.php-fig.org/"
    179             }
    180         ],
    181         "description": "Common interface for logging libraries",
    182         "keywords": [
    183             "log",
    184             "psr",
    185             "psr-3"
    186         ]
    187     },
    188     {
    189         "name": "facebook/graph-sdk",
    190         "version": "5.x-dev",
    191         "version_normalized": "5.9999999.9999999.9999999-dev",
    192         "source": {
    193             "type": "git",
    194             "url": "https://github.com/facebookarchive/php-graph-sdk.git",
    195             "reference": "2d8250638b33d73e7a87add65f47fabf91f8ad9b"
    196         },
    197         "dist": {
    198             "type": "zip",
    199             "url": "https://api.github.com/repos/facebookarchive/php-graph-sdk/zipball/2d8250638b33d73e7a87add65f47fabf91f8ad9b",
    200             "reference": "2d8250638b33d73e7a87add65f47fabf91f8ad9b",
    201             "shasum": ""
    202         },
    203         "require": {
    204             "php": "^5.4|^7.0"
    205         },
    206         "require-dev": {
    207             "guzzlehttp/guzzle": "~5.0",
    208             "mockery/mockery": "~0.8",
    209             "phpunit/phpunit": "~4.0"
    210         },
    211         "suggest": {
    212             "guzzlehttp/guzzle": "Allows for implementation of the Guzzle HTTP client",
    213             "paragonie/random_compat": "Provides a better CSPRNG option in PHP 5"
    214         },
    215         "time": "2018-12-11T22:56:31+00:00",
    216         "type": "library",
    217         "extra": {
    218             "branch-alias": {
    219                 "dev-master": "5.x-dev"
    220             }
    221         },
    222         "installation-source": "source",
    223         "autoload": {
    224             "psr-4": {
    225                 "Facebook\\": "src/Facebook/"
    226             },
    227             "files": [
    228                 "src/Facebook/polyfills.php"
    229             ]
    230         },
    231         "notification-url": "https://packagist.org/downloads/",
    232         "license": [
    233             "Facebook Platform"
    234         ],
    235         "authors": [
    236             {
    237                 "name": "Facebook",
    238                 "homepage": "https://github.com/facebook/php-graph-sdk/contributors"
    239             }
    240         ],
    241         "description": "Facebook SDK for PHP",
    242         "homepage": "https://github.com/facebook/php-graph-sdk",
    243         "keywords": [
    244             "facebook",
    245             "sdk"
    246         ]
    247     },
    248     {
    249         "name": "10quality/wpmvc-logger",
    250         "version": "v2.0.x-dev",
    251         "version_normalized": "2.0.9999999.9999999-dev",
    252         "source": {
    253             "type": "git",
    254             "url": "https://github.com/10quality/wpmvc-klogger.git",
    255             "reference": "3f8959bd7fe585d248d102e198aae4a2504a90d1"
    256         },
    257         "dist": {
    258             "type": "zip",
    259             "url": "https://api.github.com/repos/10quality/wpmvc-klogger/zipball/3f8959bd7fe585d248d102e198aae4a2504a90d1",
    260             "reference": "3f8959bd7fe585d248d102e198aae4a2504a90d1",
    261             "shasum": ""
    262         },
    263         "require": {
    264             "10quality/wp-file": "0.9.*",
    265             "php": ">=5.3",
    266             "psr/log": "1.0.0"
    267         },
    268         "require-dev": {
    269             "phpunit/phpunit": "4.0.*"
    270         },
    271         "time": "2020-01-09T23:17:24+00:00",
    272         "type": "library",
    273         "installation-source": "source",
    274         "autoload": {
    275             "psr-4": {
    276                 "WPMVC\\KLogger\\": "src/"
    277             },
    278             "classmap": [
    279                 "src/"
    280             ]
    281         },
    282         "notification-url": "https://packagist.org/downloads/",
    283         "license": [
    284             "MIT"
    285         ],
    286         "authors": [
    287             {
    288                 "name": "Kenny Katzgrau",
    289                 "email": "katzgrau@gmail.com"
    290             },
    291             {
    292                 "name": "Dan Horrigan",
    293                 "email": "dan@dhorrigan.com"
    294             },
    295             {
    296                 "name": "10 Quality",
    297                 "email": "info@10quality.com",
    298                 "homepage": "http://www.10quality.com",
    299                 "role": "Developer"
    300             },
    301             {
    302                 "name": "Alejandro Mostajo",
    303                 "email": "amostajo@gmail.com",
    304                 "role": "Developer"
    305             }
    306         ],
    307         "description": "KLogger for WordPress MVC.",
    308         "keywords": [
    309             "logging"
    310         ]
    311     },
    312     {
    313         "name": "10quality/wpmvc-phpfastcache",
    314         "version": "v4.0.x-dev",
    315         "version_normalized": "4.0.9999999.9999999-dev",
    316         "source": {
    317             "type": "git",
    318             "url": "https://github.com/10quality/wpmvc-phpfastcache.git",
    319             "reference": "6d0b4ca7fd1e3d5b27992a2d8321768eb484873e"
    320         },
    321         "dist": {
    322             "type": "zip",
    323             "url": "https://api.github.com/repos/10quality/wpmvc-phpfastcache/zipball/6d0b4ca7fd1e3d5b27992a2d8321768eb484873e",
    324             "reference": "6d0b4ca7fd1e3d5b27992a2d8321768eb484873e",
    325             "shasum": ""
    326         },
    327         "require": {
    328             "10quality/wp-file": "0.9.*",
    329             "php": ">=5.1.0"
    330         },
    331         "require-dev": {
    332             "katzgrau/klogger": "dev-master",
    333             "mockery/mockery": "dev-master",
    334             "phpunit/phpunit": "~4.1",
    335             "sami/sami": "dev-master"
    336         },
    337         "time": "2020-01-09T23:19:53+00:00",
    338         "type": "library",
    339         "installation-source": "source",
    340         "autoload": {
    341             "files": [
    342                 "src/lib/functions.php"
    343             ],
    344             "psr-4": {
    345                 "WPMVC\\PHPFastCache\\": "src/psr4"
    346             }
    347         },
    348         "notification-url": "https://packagist.org/downloads/",
    349         "license": [
    350             "MIT"
    351         ],
    352         "authors": [
    353             {
    354                 "name": "Khoa Bui",
    355                 "email": "khoaofgod@gmail.com",
    356                 "homepage": "http://www.phpfastcache.com",
    357                 "role": "Developer"
    358             },
    359             {
    360                 "name": "10 Quality",
    361                 "email": "info@10quality.com",
    362                 "homepage": "http://www.10quality.com",
    363                 "role": "Developer"
    364             },
    365             {
    366                 "name": "Alejandro Mostajo",
    367                 "email": "amostajo@gmail.com",
    368                 "role": "Developer"
    369             }
    370         ],
    371         "description": "Forked version that works with WordPress MVC.",
    372         "homepage": "http://www.phpfastcache.com",
    373         "keywords": [
    374             "cache"
    375         ]
    376     },
    377     {
    378         "name": "10quality/ayuco",
    379         "version": "v1.0.x-dev",
    380         "version_normalized": "1.0.9999999.9999999-dev",
    381         "source": {
    382             "type": "git",
    383             "url": "https://github.com/10quality/ayuco.git",
    384             "reference": "6c4d11232dc7b80ebb87c7899db98c76829e1a63"
    385         },
    386         "dist": {
    387             "type": "zip",
    388             "url": "https://api.github.com/repos/10quality/ayuco/zipball/6c4d11232dc7b80ebb87c7899db98c76829e1a63",
    389             "reference": "6c4d11232dc7b80ebb87c7899db98c76829e1a63",
    390             "shasum": ""
    391         },
    392         "require-dev": {
    393             "phpunit/phpunit": "8.0.*"
    394         },
    395         "time": "2020-01-25T07:57:28+00:00",
    396         "type": "library",
    397         "installation-source": "source",
    398         "autoload": {
    399             "psr-4": {
    400                 "Ayuco\\": "src"
    401             }
    402         },
    403         "notification-url": "https://packagist.org/downloads/",
    404         "license": [
    405             "MIT"
    406         ],
    407         "authors": [
    408             {
    409                 "name": "Alejandro Mostajo",
    410                 "homepage": "http://about.me/amostajo"
    411             },
    412             {
    413                 "name": "10Quality",
    414                 "homepage": "http://www.10quality.com/"
    415             }
    416         ],
    417         "description": "Command-Line interface that can be used to execute commands written in PHP.",
    418         "homepage": "https://github.com/10quality/ayuco",
    419         "keywords": [
    420             "command-line",
    421             "commands",
    422             "php"
    423         ]
    424     },
    425     {
    426         "name": "10quality/wpmvc-mvc",
    427         "version": "v2.1.11",
    428         "version_normalized": "2.1.11.0",
    429         "source": {
    430             "type": "git",
    431             "url": "https://github.com/10quality/wpmvc-mvc.git",
    432             "reference": "0fd4995de2dfbfda032128f000a5541ea92ffc28"
    433         },
    434         "dist": {
    435             "type": "zip",
    436             "url": "https://api.github.com/repos/10quality/wpmvc-mvc/zipball/0fd4995de2dfbfda032128f000a5541ea92ffc28",
    437             "reference": "0fd4995de2dfbfda032128f000a5541ea92ffc28",
    438             "shasum": ""
    439         },
    440         "require": {
    441             "php": ">=5.4.0"
    442         },
    443         "require-dev": {
    444             "phpunit/phpunit": "7.5.*"
    445         },
    446         "time": "2020-06-27T08:09:03+00:00",
    447         "type": "library",
    448         "installation-source": "dist",
    449         "autoload": {
    450             "psr-4": {
    451                 "WPMVC\\MVC\\": "src"
    452             }
    453         },
    454         "notification-url": "https://packagist.org/downloads/",
    455         "license": [
    456             "MIT"
    457         ],
    458         "authors": [
    459             {
    460                 "name": "Alejandro Mostajo",
    461                 "email": "amostajo@gmail.com"
    462             },
    463             {
    464                 "name": "10Quality",
    465                 "email": "info@10quality.com"
    466             }
    467         ],
    468         "description": "Lightweight MVC for WPMVC (WordPress MVC framework).",
    469         "keywords": [
    470             "light",
    471             "lightweight",
    472             "mvc",
    473             "wordpress"
    474         ]
    475     },
    476     {
    477         "name": "10quality/wpmvc-core",
    478         "version": "v3.1.13",
    479         "version_normalized": "3.1.13.0",
    480         "source": {
    481             "type": "git",
    482             "url": "https://github.com/10quality/wpmvc-core.git",
    483             "reference": "4efe96b316c23dd20d4b9c7b8a2004efc8ceee21"
    484         },
    485         "dist": {
    486             "type": "zip",
    487             "url": "https://api.github.com/repos/10quality/wpmvc-core/zipball/4efe96b316c23dd20d4b9c7b8a2004efc8ceee21",
    488             "reference": "4efe96b316c23dd20d4b9c7b8a2004efc8ceee21",
    489             "shasum": ""
    490         },
    491         "require": {
    492             "10quality/wpmvc-logger": "2.0.*",
    493             "10quality/wpmvc-mvc": "2.1.*",
    494             "10quality/wpmvc-phpfastcache": "4.0.*",
    495             "php": ">=5.4.0"
    496         },
    497         "require-dev": {
    498             "10quality/wpmvc-commands": "1.0.*",
    499             "phpunit/phpunit": "7.5.*"
    500         },
    501         "time": "2020-06-26T07:53:18+00:00",
    502         "type": "library",
    503         "installation-source": "source",
    504         "autoload": {
    505             "files": [
    506                 "src/lib/functions.php"
    507             ],
    508             "psr-4": {
    509                 "WPMVC\\": "src/psr4"
    510             }
    511         },
    512         "notification-url": "https://packagist.org/downloads/",
    513         "license": [
    514             "MIT"
    515         ],
    516         "authors": [
    517             {
    518                 "name": "10 Quality",
    519                 "email": "info@10quality.com"
    520             },
    521             {
    522                 "name": "Alejandro Mostajo",
    523                 "email": "amostajo@gmail.com"
    524             }
    525         ],
    526         "description": "WordPress MVC crore plugin.",
    527         "keywords": [
    528             "core",
    529             "mvc",
    530             "wordpress"
    531         ]
    532     },
    533     {
    534         "name": "nikic/php-parser",
    535         "version": "v4.5.0",
    536         "version_normalized": "4.5.0.0",
    537         "source": {
    538             "type": "git",
    539             "url": "https://github.com/nikic/PHP-Parser.git",
    540             "reference": "53c2753d756f5adb586dca79c2ec0e2654dd9463"
    541         },
    542         "dist": {
    543             "type": "zip",
    544             "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/53c2753d756f5adb586dca79c2ec0e2654dd9463",
    545             "reference": "53c2753d756f5adb586dca79c2ec0e2654dd9463",
    546             "shasum": ""
    547         },
    548         "require": {
    549             "ext-tokenizer": "*",
    550             "php": ">=7.0"
    551         },
    552         "require-dev": {
    553             "ircmaxell/php-yacc": "0.0.5",
    554             "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0"
    555         },
    556         "time": "2020-06-03T07:24:19+00:00",
    557         "bin": [
    558             "bin/php-parse"
    559         ],
    560         "type": "library",
    561         "extra": {
    562             "branch-alias": {
    563                 "dev-master": "4.3-dev"
    564             }
    565         },
    566         "installation-source": "source",
    567         "autoload": {
    568             "psr-4": {
    569                 "PhpParser\\": "lib/PhpParser"
    570             }
    571         },
    572         "notification-url": "https://packagist.org/downloads/",
    573         "license": [
    574             "BSD-3-Clause"
    575         ],
    576         "authors": [
    577             {
    578                 "name": "Nikita Popov"
    579             }
    580         ],
    581         "description": "A PHP parser written in PHP",
    582         "keywords": [
    583             "parser",
    584             "php"
    585         ]
    586     },
    587     {
    588         "name": "10quality/wpmvc-commands",
    589         "version": "v1.1.10",
    590         "version_normalized": "1.1.10.0",
    591         "source": {
    592             "type": "git",
    593             "url": "https://github.com/10quality/wpmvc-commands.git",
    594             "reference": "31ae94e9d8665445f333d6842783c5191a164375"
    595         },
    596         "dist": {
    597             "type": "zip",
    598             "url": "https://api.github.com/repos/10quality/wpmvc-commands/zipball/31ae94e9d8665445f333d6842783c5191a164375",
    599             "reference": "31ae94e9d8665445f333d6842783c5191a164375",
    600             "shasum": ""
    601         },
    602         "require": {
    603             "10quality/ayuco": "^1.0",
    604             "nikic/php-parser": "^4.2",
    605             "php": ">=5.4.0"
    606         },
    607         "require-dev": {
    608             "phpunit/phpunit": "8.0.*"
    609         },
    610         "time": "2020-02-15T07:01:15+00:00",
    611         "type": "library",
    612         "installation-source": "source",
    613         "autoload": {
    614             "psr-4": {
    615                 "WPMVC\\Commands\\": "src"
    616             }
    617         },
    618         "notification-url": "https://packagist.org/downloads/",
    619         "license": [
    620             "MIT"
    621         ],
    622         "authors": [
    623             {
    624                 "name": "Alejandro Mostajo",
    625                 "email": "amostajo@gmail.com"
    626             }
    627         ],
    628         "description": "Ayuco commands/jobs for WordPress MVC.",
    629         "keywords": [
    630             "ayuco",
    631             "jobs",
    632             "mvc",
    633             "wordpress"
    634         ]
    635     }
    636 ]
     1{
     2    "packages": [
     3        {
     4            "name": "10quality/ayuco",
     5            "version": "v1.0.x-dev",
     6            "version_normalized": "1.0.9999999.9999999-dev",
     7            "source": {
     8                "type": "git",
     9                "url": "https://github.com/10quality/ayuco.git",
     10                "reference": "6c4d11232dc7b80ebb87c7899db98c76829e1a63"
     11            },
     12            "dist": {
     13                "type": "zip",
     14                "url": "https://api.github.com/repos/10quality/ayuco/zipball/6c4d11232dc7b80ebb87c7899db98c76829e1a63",
     15                "reference": "6c4d11232dc7b80ebb87c7899db98c76829e1a63",
     16                "shasum": ""
     17            },
     18            "require-dev": {
     19                "phpunit/phpunit": "8.0.*"
     20            },
     21            "time": "2020-01-25T07:57:28+00:00",
     22            "default-branch": true,
     23            "type": "library",
     24            "installation-source": "source",
     25            "autoload": {
     26                "psr-4": {
     27                    "Ayuco\\": "src"
     28                }
     29            },
     30            "notification-url": "https://packagist.org/downloads/",
     31            "license": [
     32                "MIT"
     33            ],
     34            "authors": [
     35                {
     36                    "name": "Alejandro Mostajo",
     37                    "homepage": "http://about.me/amostajo"
     38                },
     39                {
     40                    "name": "10Quality",
     41                    "homepage": "http://www.10quality.com/"
     42                }
     43            ],
     44            "description": "Command-Line interface that can be used to execute commands written in PHP.",
     45            "homepage": "https://github.com/10quality/ayuco",
     46            "keywords": [
     47                "command-line",
     48                "commands",
     49                "php"
     50            ],
     51            "support": {
     52                "issues": "https://github.com/10quality/ayuco/issues",
     53                "source": "https://github.com/10quality/ayuco/tree/v1.0"
     54            },
     55            "install-path": "../10quality/ayuco"
     56        },
     57        {
     58            "name": "10quality/wp-file",
     59            "version": "v0.9.4",
     60            "version_normalized": "0.9.4.0",
     61            "source": {
     62                "type": "git",
     63                "url": "https://github.com/10quality/wp-file.git",
     64                "reference": "282f0f6733a9e18b392a8b9999dcd8949275a77b"
     65            },
     66            "dist": {
     67                "type": "zip",
     68                "url": "https://api.github.com/repos/10quality/wp-file/zipball/282f0f6733a9e18b392a8b9999dcd8949275a77b",
     69                "reference": "282f0f6733a9e18b392a8b9999dcd8949275a77b",
     70                "shasum": ""
     71            },
     72            "require": {
     73                "php": ">=5.2"
     74            },
     75            "require-dev": {
     76                "phpunit/phpunit": "4.4.*"
     77            },
     78            "time": "2018-06-12T20:43:25+00:00",
     79            "type": "library",
     80            "installation-source": "dist",
     81            "autoload": {
     82                "psr-4": {
     83                    "TenQuality\\WP\\": "src"
     84                }
     85            },
     86            "notification-url": "https://packagist.org/downloads/",
     87            "license": [
     88                "MIT"
     89            ],
     90            "authors": [
     91                {
     92                    "name": "Alejandro Mostajo",
     93                    "email": "amostajo@gmail.com"
     94                },
     95                {
     96                    "name": "10 Quality",
     97                    "email": "info@10quality.com"
     98                }
     99            ],
     100            "description": "Small class library that facilitates file handling in Wordpress.",
     101            "keywords": [
     102                "file",
     103                "filesystem",
     104                "wordpress"
     105            ],
     106            "support": {
     107                "issues": "https://github.com/10quality/wp-file/issues",
     108                "source": "https://github.com/10quality/wp-file/tree/v1.0"
     109            },
     110            "install-path": "../10quality/wp-file"
     111        },
     112        {
     113            "name": "10quality/wpmvc-commands",
     114            "version": "v1.1.13",
     115            "version_normalized": "1.1.13.0",
     116            "source": {
     117                "type": "git",
     118                "url": "https://github.com/10quality/wpmvc-commands.git",
     119                "reference": "1be04c5a84d3c5c3b596dc622a977094d1d242d5"
     120            },
     121            "dist": {
     122                "type": "zip",
     123                "url": "https://api.github.com/repos/10quality/wpmvc-commands/zipball/1be04c5a84d3c5c3b596dc622a977094d1d242d5",
     124                "reference": "1be04c5a84d3c5c3b596dc622a977094d1d242d5",
     125                "shasum": ""
     126            },
     127            "require": {
     128                "10quality/ayuco": "^1.0",
     129                "nikic/php-parser": "^4.2",
     130                "php": ">=5.4.0"
     131            },
     132            "require-dev": {
     133                "phpunit/phpunit": "8.0.*"
     134            },
     135            "time": "2021-02-12T04:03:27+00:00",
     136            "type": "library",
     137            "installation-source": "dist",
     138            "autoload": {
     139                "psr-4": {
     140                    "WPMVC\\Commands\\": "src"
     141                }
     142            },
     143            "notification-url": "https://packagist.org/downloads/",
     144            "license": [
     145                "MIT"
     146            ],
     147            "authors": [
     148                {
     149                    "name": "Alejandro Mostajo",
     150                    "email": "amostajo@gmail.com"
     151                }
     152            ],
     153            "description": "Ayuco commands/jobs for WordPress MVC.",
     154            "keywords": [
     155                "ayuco",
     156                "jobs",
     157                "mvc",
     158                "wordpress"
     159            ],
     160            "support": {
     161                "issues": "https://github.com/10quality/wpmvc-commands/issues",
     162                "source": "https://github.com/10quality/wpmvc-commands/tree/v1.1.13"
     163            },
     164            "install-path": "../10quality/wpmvc-commands"
     165        },
     166        {
     167            "name": "10quality/wpmvc-core",
     168            "version": "v3.1.15",
     169            "version_normalized": "3.1.15.0",
     170            "source": {
     171                "type": "git",
     172                "url": "https://github.com/10quality/wpmvc-core.git",
     173                "reference": "f44dc7b38d3ab581a7034396c1f61e29f0f52b85"
     174            },
     175            "dist": {
     176                "type": "zip",
     177                "url": "https://api.github.com/repos/10quality/wpmvc-core/zipball/f44dc7b38d3ab581a7034396c1f61e29f0f52b85",
     178                "reference": "f44dc7b38d3ab581a7034396c1f61e29f0f52b85",
     179                "shasum": ""
     180            },
     181            "require": {
     182                "10quality/wpmvc-logger": "2.0.*",
     183                "10quality/wpmvc-mvc": "2.1.*",
     184                "10quality/wpmvc-phpfastcache": "4.0.*",
     185                "php": ">=5.4.0"
     186            },
     187            "require-dev": {
     188                "10quality/wpmvc-commands": "1.0.*",
     189                "phpunit/phpunit": "7.5.*"
     190            },
     191            "time": "2021-02-12T03:18:22+00:00",
     192            "type": "library",
     193            "installation-source": "dist",
     194            "autoload": {
     195                "files": [
     196                    "src/lib/functions.php"
     197                ],
     198                "psr-4": {
     199                    "WPMVC\\": "src/psr4"
     200                }
     201            },
     202            "notification-url": "https://packagist.org/downloads/",
     203            "license": [
     204                "MIT"
     205            ],
     206            "authors": [
     207                {
     208                    "name": "10 Quality",
     209                    "email": "info@10quality.com"
     210                },
     211                {
     212                    "name": "Alejandro Mostajo",
     213                    "email": "amostajo@gmail.com"
     214                }
     215            ],
     216            "description": "WordPress MVC crore plugin.",
     217            "keywords": [
     218                "core",
     219                "mvc",
     220                "wordpress"
     221            ],
     222            "support": {
     223                "issues": "https://github.com/10quality/wpmvc-core/issues",
     224                "source": "https://github.com/10quality/wpmvc-core/tree/v3.1.15"
     225            },
     226            "install-path": "../10quality/wpmvc-core"
     227        },
     228        {
     229            "name": "10quality/wpmvc-logger",
     230            "version": "v2.0.x-dev",
     231            "version_normalized": "2.0.9999999.9999999-dev",
     232            "source": {
     233                "type": "git",
     234                "url": "https://github.com/10quality/wpmvc-klogger.git",
     235                "reference": "3f8959bd7fe585d248d102e198aae4a2504a90d1"
     236            },
     237            "dist": {
     238                "type": "zip",
     239                "url": "https://api.github.com/repos/10quality/wpmvc-klogger/zipball/3f8959bd7fe585d248d102e198aae4a2504a90d1",
     240                "reference": "3f8959bd7fe585d248d102e198aae4a2504a90d1",
     241                "shasum": ""
     242            },
     243            "require": {
     244                "10quality/wp-file": "0.9.*",
     245                "php": ">=5.3",
     246                "psr/log": "1.0.0"
     247            },
     248            "require-dev": {
     249                "phpunit/phpunit": "4.0.*"
     250            },
     251            "time": "2020-01-09T23:17:24+00:00",
     252            "default-branch": true,
     253            "type": "library",
     254            "installation-source": "source",
     255            "autoload": {
     256                "psr-4": {
     257                    "WPMVC\\KLogger\\": "src/"
     258                },
     259                "classmap": [
     260                    "src/"
     261                ]
     262            },
     263            "notification-url": "https://packagist.org/downloads/",
     264            "license": [
     265                "MIT"
     266            ],
     267            "authors": [
     268                {
     269                    "name": "Kenny Katzgrau",
     270                    "email": "katzgrau@gmail.com"
     271                },
     272                {
     273                    "name": "Dan Horrigan",
     274                    "email": "dan@dhorrigan.com"
     275                },
     276                {
     277                    "name": "10 Quality",
     278                    "email": "info@10quality.com",
     279                    "homepage": "http://www.10quality.com",
     280                    "role": "Developer"
     281                },
     282                {
     283                    "name": "Alejandro Mostajo",
     284                    "email": "amostajo@gmail.com",
     285                    "role": "Developer"
     286                }
     287            ],
     288            "description": "KLogger for WordPress MVC.",
     289            "keywords": [
     290                "logging"
     291            ],
     292            "support": {
     293                "source": "https://github.com/10quality/wpmvc-klogger/tree/v2.0"
     294            },
     295            "install-path": "../10quality/wpmvc-logger"
     296        },
     297        {
     298            "name": "10quality/wpmvc-mvc",
     299            "version": "v2.1.13",
     300            "version_normalized": "2.1.13.0",
     301            "source": {
     302                "type": "git",
     303                "url": "https://github.com/10quality/wpmvc-mvc.git",
     304                "reference": "c1d14a9deacb5d4b0e782d3435530c0d3eaabd4e"
     305            },
     306            "dist": {
     307                "type": "zip",
     308                "url": "https://api.github.com/repos/10quality/wpmvc-mvc/zipball/c1d14a9deacb5d4b0e782d3435530c0d3eaabd4e",
     309                "reference": "c1d14a9deacb5d4b0e782d3435530c0d3eaabd4e",
     310                "shasum": ""
     311            },
     312            "require": {
     313                "php": ">=5.4.0"
     314            },
     315            "require-dev": {
     316                "phpunit/phpunit": "7.5.*"
     317            },
     318            "time": "2021-03-18T19:45:41+00:00",
     319            "type": "library",
     320            "installation-source": "dist",
     321            "autoload": {
     322                "psr-4": {
     323                    "WPMVC\\MVC\\": "src"
     324                }
     325            },
     326            "notification-url": "https://packagist.org/downloads/",
     327            "license": [
     328                "MIT"
     329            ],
     330            "authors": [
     331                {
     332                    "name": "Alejandro Mostajo",
     333                    "email": "amostajo@gmail.com"
     334                },
     335                {
     336                    "name": "10Quality",
     337                    "email": "info@10quality.com"
     338                }
     339            ],
     340            "description": "Lightweight MVC for WPMVC (WordPress MVC framework).",
     341            "keywords": [
     342                "light",
     343                "lightweight",
     344                "mvc",
     345                "wordpress"
     346            ],
     347            "support": {
     348                "issues": "https://github.com/10quality/wpmvc-mvc/issues",
     349                "source": "https://github.com/10quality/wpmvc-mvc/tree/v2.1.13"
     350            },
     351            "install-path": "../10quality/wpmvc-mvc"
     352        },
     353        {
     354            "name": "10quality/wpmvc-phpfastcache",
     355            "version": "v4.0.x-dev",
     356            "version_normalized": "4.0.9999999.9999999-dev",
     357            "source": {
     358                "type": "git",
     359                "url": "https://github.com/10quality/wpmvc-phpfastcache.git",
     360                "reference": "6d0b4ca7fd1e3d5b27992a2d8321768eb484873e"
     361            },
     362            "dist": {
     363                "type": "zip",
     364                "url": "https://api.github.com/repos/10quality/wpmvc-phpfastcache/zipball/6d0b4ca7fd1e3d5b27992a2d8321768eb484873e",
     365                "reference": "6d0b4ca7fd1e3d5b27992a2d8321768eb484873e",
     366                "shasum": ""
     367            },
     368            "require": {
     369                "10quality/wp-file": "0.9.*",
     370                "php": ">=5.1.0"
     371            },
     372            "require-dev": {
     373                "katzgrau/klogger": "dev-master",
     374                "mockery/mockery": "dev-master",
     375                "phpunit/phpunit": "~4.1",
     376                "sami/sami": "dev-master"
     377            },
     378            "time": "2020-01-09T23:19:53+00:00",
     379            "default-branch": true,
     380            "type": "library",
     381            "installation-source": "source",
     382            "autoload": {
     383                "files": [
     384                    "src/lib/functions.php"
     385                ],
     386                "psr-4": {
     387                    "WPMVC\\PHPFastCache\\": "src/psr4"
     388                }
     389            },
     390            "notification-url": "https://packagist.org/downloads/",
     391            "license": [
     392                "MIT"
     393            ],
     394            "authors": [
     395                {
     396                    "name": "Khoa Bui",
     397                    "email": "khoaofgod@gmail.com",
     398                    "homepage": "http://www.phpfastcache.com",
     399                    "role": "Developer"
     400                },
     401                {
     402                    "name": "10 Quality",
     403                    "email": "info@10quality.com",
     404                    "homepage": "http://www.10quality.com",
     405                    "role": "Developer"
     406                },
     407                {
     408                    "name": "Alejandro Mostajo",
     409                    "email": "amostajo@gmail.com",
     410                    "role": "Developer"
     411                }
     412            ],
     413            "description": "Forked version that works with WordPress MVC.",
     414            "homepage": "http://www.phpfastcache.com",
     415            "keywords": [
     416                "cache"
     417            ],
     418            "support": {
     419                "issues": "https://github.com/10quality/wpmvc-phpfastcache/issues",
     420                "source": "https://github.com/10quality/wpmvc-phpfastcache/tree/v4.0"
     421            },
     422            "install-path": "../10quality/wpmvc-phpfastcache"
     423        },
     424        {
     425            "name": "facebook/graph-sdk",
     426            "version": "5.x-dev",
     427            "version_normalized": "5.9999999.9999999.9999999-dev",
     428            "source": {
     429                "type": "git",
     430                "url": "https://github.com/facebookarchive/php-graph-sdk.git",
     431                "reference": "2d8250638b33d73e7a87add65f47fabf91f8ad9b"
     432            },
     433            "dist": {
     434                "type": "zip",
     435                "url": "https://api.github.com/repos/facebookarchive/php-graph-sdk/zipball/2d8250638b33d73e7a87add65f47fabf91f8ad9b",
     436                "reference": "2d8250638b33d73e7a87add65f47fabf91f8ad9b",
     437                "shasum": ""
     438            },
     439            "require": {
     440                "php": "^5.4|^7.0"
     441            },
     442            "require-dev": {
     443                "guzzlehttp/guzzle": "~5.0",
     444                "mockery/mockery": "~0.8",
     445                "phpunit/phpunit": "~4.0"
     446            },
     447            "suggest": {
     448                "guzzlehttp/guzzle": "Allows for implementation of the Guzzle HTTP client",
     449                "paragonie/random_compat": "Provides a better CSPRNG option in PHP 5"
     450            },
     451            "time": "2018-12-11T22:56:31+00:00",
     452            "default-branch": true,
     453            "type": "library",
     454            "extra": {
     455                "branch-alias": {
     456                    "dev-master": "5.x-dev"
     457                }
     458            },
     459            "installation-source": "source",
     460            "autoload": {
     461                "psr-4": {
     462                    "Facebook\\": "src/Facebook/"
     463                },
     464                "files": [
     465                    "src/Facebook/polyfills.php"
     466                ]
     467            },
     468            "notification-url": "https://packagist.org/downloads/",
     469            "license": [
     470                "Facebook Platform"
     471            ],
     472            "authors": [
     473                {
     474                    "name": "Facebook",
     475                    "homepage": "https://github.com/facebook/php-graph-sdk/contributors"
     476                }
     477            ],
     478            "description": "Facebook SDK for PHP",
     479            "homepage": "https://github.com/facebook/php-graph-sdk",
     480            "keywords": [
     481                "facebook",
     482                "sdk"
     483            ],
     484            "support": {
     485                "issues": "https://github.com/facebookarchive/php-graph-sdk/issues",
     486                "source": "https://github.com/facebookarchive/php-graph-sdk/tree/5.7.0"
     487            },
     488            "install-path": "../facebook/graph-sdk"
     489        },
     490        {
     491            "name": "j7mbo/twitter-api-php",
     492            "version": "dev-master",
     493            "version_normalized": "dev-master",
     494            "source": {
     495                "type": "git",
     496                "url": "https://github.com/J7mbo/twitter-api-php.git",
     497                "reference": "f1a84c8c39a854ac7a8bc87e59c997b526c7bbc7"
     498            },
     499            "dist": {
     500                "type": "zip",
     501                "url": "https://api.github.com/repos/J7mbo/twitter-api-php/zipball/f1a84c8c39a854ac7a8bc87e59c997b526c7bbc7",
     502                "reference": "f1a84c8c39a854ac7a8bc87e59c997b526c7bbc7",
     503                "shasum": ""
     504            },
     505            "require": {
     506                "ext-curl": "*"
     507            },
     508            "require-dev": {
     509                "phpunit/phpunit": "~4.5,>=4.5.1"
     510            },
     511            "time": "2017-05-08T16:51:49+00:00",
     512            "default-branch": true,
     513            "type": "library",
     514            "extra": {
     515                "branch-alias": {
     516                    "dev-master": "1.0-dev"
     517                }
     518            },
     519            "installation-source": "source",
     520            "autoload": {
     521                "classmap": [
     522                    "TwitterAPIExchange.php"
     523                ]
     524            },
     525            "notification-url": "https://packagist.org/downloads/",
     526            "license": [
     527                "GNU Public License"
     528            ],
     529            "authors": [
     530                {
     531                    "name": "James Mallison",
     532                    "homepage": "https://github.com/j7mbo/twitter-api-php"
     533                }
     534            ],
     535            "description": "Simple PHP Wrapper for Twitter API v1.1 calls",
     536            "homepage": "https://github.com/j7mbo/twitter-api-php",
     537            "keywords": [
     538                "api",
     539                "php",
     540                "twitter"
     541            ],
     542            "support": {
     543                "issues": "https://github.com/J7mbo/twitter-api-php/issues",
     544                "source": "https://github.com/J7mbo/twitter-api-php/tree/master"
     545            },
     546            "install-path": "../j7mbo/twitter-api-php"
     547        },
     548        {
     549            "name": "nikic/php-parser",
     550            "version": "v4.12.0",
     551            "version_normalized": "4.12.0.0",
     552            "source": {
     553                "type": "git",
     554                "url": "https://github.com/nikic/PHP-Parser.git",
     555                "reference": "6608f01670c3cc5079e18c1dab1104e002579143"
     556            },
     557            "dist": {
     558                "type": "zip",
     559                "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/6608f01670c3cc5079e18c1dab1104e002579143",
     560                "reference": "6608f01670c3cc5079e18c1dab1104e002579143",
     561                "shasum": ""
     562            },
     563            "require": {
     564                "ext-tokenizer": "*",
     565                "php": ">=7.0"
     566            },
     567            "require-dev": {
     568                "ircmaxell/php-yacc": "^0.0.7",
     569                "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
     570            },
     571            "time": "2021-07-21T10:44:31+00:00",
     572            "bin": [
     573                "bin/php-parse"
     574            ],
     575            "type": "library",
     576            "extra": {
     577                "branch-alias": {
     578                    "dev-master": "4.9-dev"
     579                }
     580            },
     581            "installation-source": "dist",
     582            "autoload": {
     583                "psr-4": {
     584                    "PhpParser\\": "lib/PhpParser"
     585                }
     586            },
     587            "notification-url": "https://packagist.org/downloads/",
     588            "license": [
     589                "BSD-3-Clause"
     590            ],
     591            "authors": [
     592                {
     593                    "name": "Nikita Popov"
     594                }
     595            ],
     596            "description": "A PHP parser written in PHP",
     597            "keywords": [
     598                "parser",
     599                "php"
     600            ],
     601            "support": {
     602                "issues": "https://github.com/nikic/PHP-Parser/issues",
     603                "source": "https://github.com/nikic/PHP-Parser/tree/v4.12.0"
     604            },
     605            "install-path": "../nikic/php-parser"
     606        },
     607        {
     608            "name": "php-instagram-api/php-instagram-api",
     609            "version": "dev-master",
     610            "version_normalized": "dev-master",
     611            "source": {
     612                "type": "git",
     613                "url": "https://github.com/galen/PHP-Instagram-API.git",
     614                "reference": "7a796fdae715fcdccc00590933ce482437342c35"
     615            },
     616            "dist": {
     617                "type": "zip",
     618                "url": "https://api.github.com/repos/galen/PHP-Instagram-API/zipball/7a796fdae715fcdccc00590933ce482437342c35",
     619                "reference": "7a796fdae715fcdccc00590933ce482437342c35",
     620                "shasum": ""
     621            },
     622            "require": {
     623                "php": ">=5.3.0"
     624            },
     625            "time": "2013-11-13T23:10:03+00:00",
     626            "default-branch": true,
     627            "type": "library",
     628            "installation-source": "source",
     629            "autoload": {
     630                "psr-0": {
     631                    "Instagram": "."
     632                }
     633            },
     634            "notification-url": "https://packagist.org/downloads/",
     635            "license": [
     636                "MIT"
     637            ],
     638            "authors": [
     639                {
     640                    "name": "Galen Grover",
     641                    "email": "galenjr@gmail.com",
     642                    "homepage": "http://www.galengrover.com",
     643                    "role": "Developer"
     644                }
     645            ],
     646            "description": "PHP Instagram API for PHP 5.3+",
     647            "homepage": "https://github.com/galen/PHP-Instagram-API",
     648            "keywords": [
     649                "instagram"
     650            ],
     651            "support": {
     652                "issues": "https://github.com/galen/PHP-Instagram-API/issues",
     653                "source": "https://github.com/galen/PHP-Instagram-API/tree/master"
     654            },
     655            "install-path": "../php-instagram-api/php-instagram-api"
     656        },
     657        {
     658            "name": "psr/log",
     659            "version": "1.0.0",
     660            "version_normalized": "1.0.0.0",
     661            "source": {
     662                "type": "git",
     663                "url": "https://github.com/php-fig/log.git",
     664                "reference": "fe0936ee26643249e916849d48e3a51d5f5e278b"
     665            },
     666            "dist": {
     667                "type": "zip",
     668                "url": "https://api.github.com/repos/php-fig/log/zipball/fe0936ee26643249e916849d48e3a51d5f5e278b",
     669                "reference": "fe0936ee26643249e916849d48e3a51d5f5e278b",
     670                "shasum": ""
     671            },
     672            "time": "2012-12-21T11:40:51+00:00",
     673            "type": "library",
     674            "installation-source": "dist",
     675            "autoload": {
     676                "psr-0": {
     677                    "Psr\\Log\\": ""
     678                }
     679            },
     680            "notification-url": "https://packagist.org/downloads/",
     681            "license": [
     682                "MIT"
     683            ],
     684            "authors": [
     685                {
     686                    "name": "PHP-FIG",
     687                    "homepage": "http://www.php-fig.org/"
     688                }
     689            ],
     690            "description": "Common interface for logging libraries",
     691            "keywords": [
     692                "log",
     693                "psr",
     694                "psr-3"
     695            ],
     696            "support": {
     697                "issues": "https://github.com/php-fig/log/issues",
     698                "source": "https://github.com/php-fig/log/tree/1.0.0"
     699            },
     700            "install-path": "../psr/log"
     701        }
     702    ],
     703    "dev": true,
     704    "dev-package-names": [
     705        "10quality/ayuco",
     706        "10quality/wpmvc-commands",
     707        "nikic/php-parser"
     708    ]
     709}
Note: See TracChangeset for help on using the changeset viewer.