Plugin Directory

Changeset 1931828


Ignore:
Timestamp:
08/28/2018 02:49:32 PM (7 years ago)
Author:
kstover
Message:

Updating to version 1.0.1. See Changelog for details.

Location:
ninja-shop
Files:
1860 added
10 edited

Legend:

Unmodified
Added
Removed
  • ninja-shop/trunk/init.php

    r1908291 r1931828  
    22/*
    33 * Plugin Name: Ninja Shop
    4  * Version: 1.0
     4 * Version: 1.0.1
    55 * Text Domain: it-l10n-ithemes-exchange
    66 * Description: Easily sell your digital goods with Ninja Shop, simple ecommerce for WordPress
  • ninja-shop/trunk/lib/cart/repository/transaction/class.table.php

    r1908291 r1931828  
    1414 */
    1515class ITE_Transaction_Line_Item_Table extends BaseTable implements TimestampedTable {
     16
     17    /**
     18     * Overridding the parent method.
     19     *
     20     * @NOTE Seeing some issues exceeding the "max key size".
     21     *           Specifying `ROW_FORMAT=dynamic` for this table.
     22     */
     23    public function get_creation_sql( \wpdb $wpdb ) {
     24
     25        $tn = $this->get_table_name( $wpdb );
     26
     27        $sql = "CREATE TABLE {$tn} (\n";
     28        $sql .= $this->get_columns_definition();
     29
     30        if ( $keys = $this->get_keys_definition() ) {
     31            $sql .= ",\n{$keys}";
     32        }
     33
     34        $sql .= "\n)";
     35
     36        // @NOTE Specifying the ROW_FORMAT to resolve Max Key Length issue.
     37        $sql .= " ROW_FORMAT = dynamic ";
     38
     39        $sql .= " {$wpdb->get_charset_collate()};";
     40
     41        return $sql;
     42    }
    1643
    1744    /** @var array */
  • ninja-shop/trunk/ninja-shop.php

    r1908291 r1931828  
    99class IT_Exchange {
    1010
    11     const VERSION = '1.0';
     11    const VERSION = '1.0.1';
    1212
    1313    const MIN_WP = '4.4.0';
  • ninja-shop/trunk/readme.txt

    r1908291 r1931828  
    55Requires PHP: 5.6
    66Tested up to: 4.9
    7 Stable tag: 1.0
     7Stable tag: 1.0.1
    88License: GPLv3
    99License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    9898* Initial Release
    9999
     100= 1.0.1 =
     101
     102*Bugs:*
     103
     104* Fixed a bug that, with some database configurations, caused a Fatal Error.
     105
    100106== Upgrade Notice ==
    101107
    102 = 1.0 =
    103 Initial Release
     108= 1.0.1 =
     109
     110*Bugs:*
     111
     112* Fixed a bug that, with some database configurations, caused a Fatal Error.
    104113
    105114== Screenshots ==
  • ninja-shop/trunk/vendor/autoload.php

    r1908439 r1931828  
    33// autoload.php @generated by Composer
    44
    5 require_once __DIR__ . '/composer' . '/autoload_real.php';
     5require_once __DIR__ . '/composer/autoload_real.php';
    66
    7 return ComposerAutoloaderInit855f709b7fd51b5c2efae565c162d4f2::getLoader();
     7return ComposerAutoloaderInit4e9df4ce3ca115b34bc96cd35c97fe17::getLoader();
  • ninja-shop/trunk/vendor/composer/ClassLoader.php

    r1908439 r1931828  
    5454    private $useIncludePath = false;
    5555    private $classMap = array();
    56 
    5756    private $classMapAuthoritative = false;
     57    private $missingClasses = array();
     58    private $apcuPrefix;
    5859
    5960    public function getPrefixes()
     
    273274
    274275    /**
     276     * APCu prefix to use to cache found/not-found classes, if the extension is enabled.
     277     *
     278     * @param string|null $apcuPrefix
     279     */
     280    public function setApcuPrefix($apcuPrefix)
     281    {
     282        $this->apcuPrefix = function_exists('apcu_fetch') && ini_get('apc.enabled') ? $apcuPrefix : null;
     283    }
     284
     285    /**
     286     * The APCu prefix in use, or null if APCu caching is not enabled.
     287     *
     288     * @return string|null
     289     */
     290    public function getApcuPrefix()
     291    {
     292        return $this->apcuPrefix;
     293    }
     294
     295    /**
    275296     * Registers this instance as an autoloader.
    276297     *
     
    314335    public function findFile($class)
    315336    {
    316         // work around for PHP 5.3.0 - 5.3.2 https://bugs.php.net/50731
    317         if ('\\' == $class[0]) {
    318             $class = substr($class, 1);
    319         }
    320 
    321337        // class map lookup
    322338        if (isset($this->classMap[$class])) {
    323339            return $this->classMap[$class];
    324340        }
    325         if ($this->classMapAuthoritative) {
     341        if ($this->classMapAuthoritative || isset($this->missingClasses[$class])) {
    326342            return false;
    327343        }
     344        if (null !== $this->apcuPrefix) {
     345            $file = apcu_fetch($this->apcuPrefix.$class, $hit);
     346            if ($hit) {
     347                return $file;
     348            }
     349        }
    328350
    329351        $file = $this->findFileWithExtension($class, '.php');
    330352
    331353        // Search for Hack files if we are running on HHVM
    332         if ($file === null && defined('HHVM_VERSION')) {
     354        if (false === $file && defined('HHVM_VERSION')) {
    333355            $file = $this->findFileWithExtension($class, '.hh');
    334356        }
    335357
    336         if ($file === null) {
     358        if (null !== $this->apcuPrefix) {
     359            apcu_add($this->apcuPrefix.$class, $file);
     360        }
     361
     362        if (false === $file) {
    337363            // Remember that this class does not exist.
    338             return $this->classMap[$class] = false;
     364            $this->missingClasses[$class] = true;
    339365        }
    340366
     
    349375        $first = $class[0];
    350376        if (isset($this->prefixLengthsPsr4[$first])) {
    351             foreach ($this->prefixLengthsPsr4[$first] as $prefix => $length) {
    352                 if (0 === strpos($class, $prefix)) {
    353                     foreach ($this->prefixDirsPsr4[$prefix] as $dir) {
    354                         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)) {
    355385                            return $file;
    356386                        }
     
    400430            return $file;
    401431        }
     432
     433        return false;
    402434    }
    403435}
  • ninja-shop/trunk/vendor/composer/LICENSE

    r1908439 r1931828  
    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
  • ninja-shop/trunk/vendor/composer/autoload_real.php

    r1908439 r1931828  
    33// autoload_real.php @generated by Composer
    44
    5 class ComposerAutoloaderInit855f709b7fd51b5c2efae565c162d4f2
     5class ComposerAutoloaderInit4e9df4ce3ca115b34bc96cd35c97fe17
    66{
    77    private static $loader;
     
    2020        }
    2121
    22         spl_autoload_register(array('ComposerAutoloaderInit855f709b7fd51b5c2efae565c162d4f2', 'loadClassLoader'), true, true);
     22        spl_autoload_register(array('ComposerAutoloaderInit4e9df4ce3ca115b34bc96cd35c97fe17', 'loadClassLoader'), true, true);
    2323        self::$loader = $loader = new \Composer\Autoload\ClassLoader();
    24         spl_autoload_unregister(array('ComposerAutoloaderInit855f709b7fd51b5c2efae565c162d4f2', 'loadClassLoader'));
     24        spl_autoload_unregister(array('ComposerAutoloaderInit4e9df4ce3ca115b34bc96cd35c97fe17', 'loadClassLoader'));
    2525
    26         $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION');
     26        $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
    2727        if ($useStaticLoader) {
    2828            require_once __DIR__ . '/autoload_static.php';
    2929
    30             call_user_func(\Composer\Autoload\ComposerStaticInit855f709b7fd51b5c2efae565c162d4f2::getInitializer($loader));
     30            call_user_func(\Composer\Autoload\ComposerStaticInit4e9df4ce3ca115b34bc96cd35c97fe17::getInitializer($loader));
    3131        } else {
    3232            $map = require __DIR__ . '/autoload_namespaces.php';
     
    4949
    5050        if ($useStaticLoader) {
    51             $includeFiles = Composer\Autoload\ComposerStaticInit855f709b7fd51b5c2efae565c162d4f2::$files;
     51            $includeFiles = Composer\Autoload\ComposerStaticInit4e9df4ce3ca115b34bc96cd35c97fe17::$files;
    5252        } else {
    5353            $includeFiles = require __DIR__ . '/autoload_files.php';
    5454        }
    5555        foreach ($includeFiles as $fileIdentifier => $file) {
    56             composerRequire855f709b7fd51b5c2efae565c162d4f2($fileIdentifier, $file);
     56            composerRequire4e9df4ce3ca115b34bc96cd35c97fe17($fileIdentifier, $file);
    5757        }
    5858
     
    6161}
    6262
    63 function composerRequire855f709b7fd51b5c2efae565c162d4f2($fileIdentifier, $file)
     63function composerRequire4e9df4ce3ca115b34bc96cd35c97fe17($fileIdentifier, $file)
    6464{
    6565    if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
  • ninja-shop/trunk/vendor/composer/autoload_static.php

    r1908439 r1931828  
    55namespace Composer\Autoload;
    66
    7 class ComposerStaticInit855f709b7fd51b5c2efae565c162d4f2
     7class ComposerStaticInit4e9df4ce3ca115b34bc96cd35c97fe17
    88{
    99    public static $files = array (
     
    125125    {
    126126        return \Closure::bind(function () use ($loader) {
    127             $loader->prefixLengthsPsr4 = ComposerStaticInit855f709b7fd51b5c2efae565c162d4f2::$prefixLengthsPsr4;
    128             $loader->prefixDirsPsr4 = ComposerStaticInit855f709b7fd51b5c2efae565c162d4f2::$prefixDirsPsr4;
    129             $loader->prefixesPsr0 = ComposerStaticInit855f709b7fd51b5c2efae565c162d4f2::$prefixesPsr0;
     127            $loader->prefixLengthsPsr4 = ComposerStaticInit4e9df4ce3ca115b34bc96cd35c97fe17::$prefixLengthsPsr4;
     128            $loader->prefixDirsPsr4 = ComposerStaticInit4e9df4ce3ca115b34bc96cd35c97fe17::$prefixDirsPsr4;
     129            $loader->prefixesPsr0 = ComposerStaticInit4e9df4ce3ca115b34bc96cd35c97fe17::$prefixesPsr0;
    130130
    131131        }, null, ClassLoader::class);
  • ninja-shop/trunk/vendor/composer/installed.json

    r1908439 r1931828  
    11[
    2     {
    3         "name": "windwalker/dom",
    4         "version": "2.1.9",
    5         "version_normalized": "2.1.9.0",
    6         "source": {
    7             "type": "git",
    8             "url": "https://github.com/ventoviro/windwalker-dom.git",
    9             "reference": "1e5b1022f92d1e44c07aa918f83a5f8d8687103b"
    10         },
    11         "dist": {
    12             "type": "zip",
    13             "url": "https://api.github.com/repos/ventoviro/windwalker-dom/zipball/1e5b1022f92d1e44c07aa918f83a5f8d8687103b",
    14             "reference": "1e5b1022f92d1e44c07aa918f83a5f8d8687103b",
    15             "shasum": ""
    16         },
    17         "require": {
    18             "php": ">=5.3.10"
    19         },
    20         "require-dev": {
    21             "windwalker/test": "~2.0"
    22         },
    23         "time": "2016-02-12 15:36:22",
    24         "type": "windwalker-package",
    25         "extra": {
    26             "branch-alias": {
    27                 "dev-master": "2.2-dev"
    28             }
    29         },
    30         "installation-source": "dist",
    31         "autoload": {
    32             "psr-4": {
    33                 "Windwalker\\Dom\\": ""
    34             }
    35         },
    36         "notification-url": "https://packagist.org/downloads/",
    37         "license": [
    38             "LGPL-2.0+"
    39         ],
    40         "description": "Windwalker Dom package",
    41         "homepage": "https://github.com/ventoviro/windwalker-dom",
    42         "keywords": [
    43             "filesystem",
    44             "framework",
    45             "windwalker"
    46         ]
    47     },
    482    {
    493        "name": "asika/autolink",
     
    6721            "windwalker/test": "~2.0@stable"
    6822        },
    69         "time": "2016-04-09 20:35:38",
     23        "time": "2016-04-09T20:35:38+00:00",
    7024        "type": "library",
    7125        "installation-source": "source",
     
    11165            "phpunit/phpunit": "~4.0"
    11266        },
    113         "time": "2015-04-14 22:21:58",
     67        "time": "2015-04-14T22:21:58+00:00",
    11468        "type": "library",
    11569        "extra": {
     
    179133            "phpunit/phpunit": "4.*"
    180134        },
    181         "time": "2015-11-06 14:35:42",
     135        "time": "2015-11-06T14:35:42+00:00",
    182136        "type": "library",
    183137        "extra": {
     
    245199            "php": ">=5.3.0"
    246200        },
    247         "time": "2016-07-18 04:51:16",
     201        "time": "2016-07-18T04:51:16+00:00",
    248202        "type": "library",
    249203        "installation-source": "dist",
     
    287241            "shasum": ""
    288242        },
    289         "time": "2015-10-05 05:36:49",
     243        "time": "2015-10-05T05:36:49+00:00",
    290244        "type": "library",
    291245        "installation-source": "dist",
     
    306260        ],
    307261        "description": "Provides wrappers for WordPress' object cache to make storing and retrieving models easier."
     262    },
     263    {
     264        "name": "ironbound/db",
     265        "version": "v2.1.0",
     266        "version_normalized": "2.1.0.0",
     267        "source": {
     268            "type": "git",
     269            "url": "https://github.com/iron-bound-designs/IronBound-DB.git",
     270            "reference": "a39a04a1bca28a715f10e08592afef5afb6054c5"
     271        },
     272        "dist": {
     273            "type": "zip",
     274            "url": "https://api.github.com/repos/iron-bound-designs/IronBound-DB/zipball/a39a04a1bca28a715f10e08592afef5afb6054c5",
     275            "reference": "a39a04a1bca28a715f10e08592afef5afb6054c5",
     276            "shasum": ""
     277        },
     278        "require": {
     279            "doctrine/collections": "^1.3",
     280            "doctrine/inflector": "^1.1",
     281            "ironbound/cache": "^1.0.0",
     282            "php": ">=5.3.0"
     283        },
     284        "require-dev": {
     285            "ironbound/wpevents": "^1.0",
     286            "phpunit/phpunit": "^4.8"
     287        },
     288        "suggest": {
     289            "ironbound/wpevents": "Allows for firing events when certain actions occur on a model."
     290        },
     291        "time": "2017-03-28T19:57:28+00:00",
     292        "type": "library",
     293        "installation-source": "dist",
     294        "autoload": {
     295            "psr-4": {
     296                "IronBound\\DB\\": "src/",
     297                "IronBound\\DB\\Tests\\": "tests/"
     298            },
     299            "files": [
     300                "src/load.php"
     301            ]
     302        },
     303        "notification-url": "https://packagist.org/downloads/",
     304        "license": [
     305            "MIT"
     306        ],
     307        "authors": [
     308            {
     309                "name": "Iron Bound Designs",
     310                "email": "[email protected]"
     311            }
     312        ],
     313        "description": "Provides models and custom query objects for custom database tables in WordPress."
     314    },
     315    {
     316        "name": "ironbound/db-logger",
     317        "version": "v2.0.1",
     318        "version_normalized": "2.0.1.0",
     319        "source": {
     320            "type": "git",
     321            "url": "https://github.com/iron-bound-designs/IronBound-DB-Logger.git",
     322            "reference": "30a32840e4da2d2d69a237352d6835a3e61b1e45"
     323        },
     324        "dist": {
     325            "type": "zip",
     326            "url": "https://api.github.com/repos/iron-bound-designs/IronBound-DB-Logger/zipball/30a32840e4da2d2d69a237352d6835a3e61b1e45",
     327            "reference": "30a32840e4da2d2d69a237352d6835a3e61b1e45",
     328            "shasum": ""
     329        },
     330        "require": {
     331            "ironbound/db": "^2.0",
     332            "psr/log": "^1.0"
     333        },
     334        "require-dev": {
     335            "phpunit/phpunit": "^4.8.0"
     336        },
     337        "time": "2017-05-16T16:03:15+00:00",
     338        "type": "library",
     339        "installation-source": "dist",
     340        "autoload": {
     341            "psr-4": {
     342                "IronBound\\DBLogger\\": "src/"
     343            }
     344        },
     345        "notification-url": "https://packagist.org/downloads/",
     346        "license": [
     347            "MIT"
     348        ],
     349        "authors": [
     350            {
     351                "name": "Iron Bound Designs",
     352                "email": "[email protected]"
     353            }
     354        ],
     355        "description": "PSR-3 Logger for WordPress using IronBound-DB"
     356    },
     357    {
     358        "name": "ironbound/wpevents",
     359        "version": "1.0.0",
     360        "version_normalized": "1.0.0.0",
     361        "source": {
     362            "type": "git",
     363            "url": "https://github.com/iron-bound-designs/IronBound-WPEvents.git",
     364            "reference": "bb2f4d1b3a408a59992ce57d9bdcd65041d8704a"
     365        },
     366        "dist": {
     367            "type": "zip",
     368            "url": "https://api.github.com/repos/iron-bound-designs/IronBound-WPEvents/zipball/bb2f4d1b3a408a59992ce57d9bdcd65041d8704a",
     369            "reference": "bb2f4d1b3a408a59992ce57d9bdcd65041d8704a",
     370            "shasum": ""
     371        },
     372        "require": {
     373            "php": ">=5.3.0"
     374        },
     375        "require-dev": {
     376            "10up/wp_mock": "dev-master",
     377            "phpunit/phpunit": "^4.8"
     378        },
     379        "time": "2016-04-17T23:01:15+00:00",
     380        "type": "library",
     381        "installation-source": "dist",
     382        "autoload": {
     383            "psr-4": {
     384                "IronBound\\WPEvents\\": "src/",
     385                "IronBound\\WPEvents\\Tests\\": "tests/"
     386            }
     387        },
     388        "notification-url": "https://packagist.org/downloads/",
     389        "license": [
     390            "MIT"
     391        ],
     392        "authors": [
     393            {
     394                "name": "Timothy Jacobs",
     395                "email": "[email protected]"
     396            }
     397        ],
     398        "description": "Object orineted events library for WordPRess"
     399    },
     400    {
     401        "name": "justinrainbow/json-schema",
     402        "version": "5.1.0",
     403        "version_normalized": "5.1.0.0",
     404        "source": {
     405            "type": "git",
     406            "url": "https://github.com/justinrainbow/json-schema.git",
     407            "reference": "48817e5f95c9d29e11513f12e43cc0223fa5eb6c"
     408        },
     409        "dist": {
     410            "type": "zip",
     411            "url": "https://api.github.com/repos/justinrainbow/json-schema/zipball/48817e5f95c9d29e11513f12e43cc0223fa5eb6c",
     412            "reference": "48817e5f95c9d29e11513f12e43cc0223fa5eb6c",
     413            "shasum": ""
     414        },
     415        "require": {
     416            "php": ">=5.3.3"
     417        },
     418        "require-dev": {
     419            "json-schema/json-schema-test-suite": "1.2.0",
     420            "phpdocumentor/phpdocumentor": "~2",
     421            "phpunit/phpunit": "^4.8.22"
     422        },
     423        "time": "2017-02-22T03:28:16+00:00",
     424        "bin": [
     425            "bin/validate-json"
     426        ],
     427        "type": "library",
     428        "extra": {
     429            "branch-alias": {
     430                "dev-master": "5.0.x-dev"
     431            }
     432        },
     433        "installation-source": "dist",
     434        "autoload": {
     435            "psr-4": {
     436                "JsonSchema\\": "src/JsonSchema/"
     437            }
     438        },
     439        "notification-url": "https://packagist.org/downloads/",
     440        "license": [
     441            "MIT"
     442        ],
     443        "authors": [
     444            {
     445                "name": "Bruno Prieto Reis",
     446                "email": "[email protected]"
     447            },
     448            {
     449                "name": "Justin Rainbow",
     450                "email": "[email protected]"
     451            },
     452            {
     453                "name": "Igor Wiedler",
     454                "email": "[email protected]"
     455            },
     456            {
     457                "name": "Robert Schönthal",
     458                "email": "[email protected]"
     459            }
     460        ],
     461        "description": "A library to validate a json schema.",
     462        "homepage": "https://github.com/justinrainbow/json-schema",
     463        "keywords": [
     464            "json",
     465            "schema"
     466        ]
    308467    },
    309468    {
     
    325484            "php": ">=5.3.0"
    326485        },
    327         "time": "2016-10-10 12:19:37",
     486        "time": "2016-10-10T12:19:37+00:00",
    328487        "type": "library",
    329488        "extra": {
     
    357516    },
    358517    {
    359         "name": "ironbound/db",
    360         "version": "v2.1.0",
    361         "version_normalized": "2.1.0.0",
    362         "source": {
    363             "type": "git",
    364             "url": "https://github.com/iron-bound-designs/IronBound-DB.git",
    365             "reference": "a39a04a1bca28a715f10e08592afef5afb6054c5"
    366         },
    367         "dist": {
    368             "type": "zip",
    369             "url": "https://api.github.com/repos/iron-bound-designs/IronBound-DB/zipball/a39a04a1bca28a715f10e08592afef5afb6054c5",
    370             "reference": "a39a04a1bca28a715f10e08592afef5afb6054c5",
    371             "shasum": ""
    372         },
    373         "require": {
    374             "doctrine/collections": "^1.3",
    375             "doctrine/inflector": "^1.1",
    376             "ironbound/cache": "^1.0.0",
    377             "php": ">=5.3.0"
    378         },
    379         "require-dev": {
    380             "ironbound/wpevents": "^1.0",
    381             "phpunit/phpunit": "^4.8"
    382         },
    383         "suggest": {
    384             "ironbound/wpevents": "Allows for firing events when certain actions occur on a model."
    385         },
    386         "time": "2017-03-28 19:57:28",
    387         "type": "library",
    388         "installation-source": "dist",
    389         "autoload": {
    390             "psr-4": {
    391                 "IronBound\\DB\\": "src/",
    392                 "IronBound\\DB\\Tests\\": "tests/"
    393             },
    394             "files": [
    395                 "src/load.php"
    396             ]
    397         },
    398         "notification-url": "https://packagist.org/downloads/",
    399         "license": [
    400             "MIT"
    401         ],
    402         "authors": [
    403             {
    404                 "name": "Iron Bound Designs",
    405                 "email": "[email protected]"
    406             }
    407         ],
    408         "description": "Provides models and custom query objects for custom database tables in WordPress."
    409     },
    410     {
    411         "name": "ironbound/db-logger",
    412         "version": "v2.0.1",
    413         "version_normalized": "2.0.1.0",
    414         "source": {
    415             "type": "git",
    416             "url": "https://github.com/iron-bound-designs/IronBound-DB-Logger.git",
    417             "reference": "30a32840e4da2d2d69a237352d6835a3e61b1e45"
    418         },
    419         "dist": {
    420             "type": "zip",
    421             "url": "https://api.github.com/repos/iron-bound-designs/IronBound-DB-Logger/zipball/30a32840e4da2d2d69a237352d6835a3e61b1e45",
    422             "reference": "30a32840e4da2d2d69a237352d6835a3e61b1e45",
    423             "shasum": ""
    424         },
    425         "require": {
    426             "ironbound/db": "^2.0",
    427             "psr/log": "^1.0"
    428         },
    429         "require-dev": {
    430             "phpunit/phpunit": "^4.8.0"
    431         },
    432         "time": "2017-05-16 16:03:15",
    433         "type": "library",
    434         "installation-source": "dist",
    435         "autoload": {
    436             "psr-4": {
    437                 "IronBound\\DBLogger\\": "src/"
    438             }
    439         },
    440         "notification-url": "https://packagist.org/downloads/",
    441         "license": [
    442             "MIT"
    443         ],
    444         "authors": [
    445             {
    446                 "name": "Iron Bound Designs",
    447                 "email": "[email protected]"
    448             }
    449         ],
    450         "description": "PSR-3 Logger for WordPress using IronBound-DB"
    451     },
    452     {
    453         "name": "ironbound/wpevents",
    454         "version": "1.0.0",
    455         "version_normalized": "1.0.0.0",
    456         "source": {
    457             "type": "git",
    458             "url": "https://github.com/iron-bound-designs/IronBound-WPEvents.git",
    459             "reference": "bb2f4d1b3a408a59992ce57d9bdcd65041d8704a"
    460         },
    461         "dist": {
    462             "type": "zip",
    463             "url": "https://api.github.com/repos/iron-bound-designs/IronBound-WPEvents/zipball/bb2f4d1b3a408a59992ce57d9bdcd65041d8704a",
    464             "reference": "bb2f4d1b3a408a59992ce57d9bdcd65041d8704a",
    465             "shasum": ""
    466         },
    467         "require": {
    468             "php": ">=5.3.0"
    469         },
    470         "require-dev": {
    471             "10up/wp_mock": "dev-master",
    472             "phpunit/phpunit": "^4.8"
    473         },
    474         "time": "2016-04-17 23:01:15",
    475         "type": "library",
    476         "installation-source": "dist",
    477         "autoload": {
    478             "psr-4": {
    479                 "IronBound\\WPEvents\\": "src/",
    480                 "IronBound\\WPEvents\\Tests\\": "tests/"
    481             }
    482         },
    483         "notification-url": "https://packagist.org/downloads/",
    484         "license": [
    485             "MIT"
    486         ],
    487         "authors": [
    488             {
    489                 "name": "Timothy Jacobs",
    490                 "email": "[email protected]"
    491             }
    492         ],
    493         "description": "Object orineted events library for WordPRess"
    494     },
    495     {
    496         "name": "justinrainbow/json-schema",
    497         "version": "5.1.0",
    498         "version_normalized": "5.1.0.0",
    499         "source": {
    500             "type": "git",
    501             "url": "https://github.com/justinrainbow/json-schema.git",
    502             "reference": "48817e5f95c9d29e11513f12e43cc0223fa5eb6c"
    503         },
    504         "dist": {
    505             "type": "zip",
    506             "url": "https://api.github.com/repos/justinrainbow/json-schema/zipball/48817e5f95c9d29e11513f12e43cc0223fa5eb6c",
    507             "reference": "48817e5f95c9d29e11513f12e43cc0223fa5eb6c",
    508             "shasum": ""
    509         },
    510         "require": {
    511             "php": ">=5.3.3"
    512         },
    513         "require-dev": {
    514             "json-schema/json-schema-test-suite": "1.2.0",
    515             "phpdocumentor/phpdocumentor": "~2",
    516             "phpunit/phpunit": "^4.8.22"
    517         },
    518         "time": "2017-02-22 03:28:16",
    519         "bin": [
    520             "bin/validate-json"
    521         ],
    522         "type": "library",
     518        "name": "windwalker/dom",
     519        "version": "2.1.9",
     520        "version_normalized": "2.1.9.0",
     521        "source": {
     522            "type": "git",
     523            "url": "https://github.com/ventoviro/windwalker-dom.git",
     524            "reference": "1e5b1022f92d1e44c07aa918f83a5f8d8687103b"
     525        },
     526        "dist": {
     527            "type": "zip",
     528            "url": "https://api.github.com/repos/ventoviro/windwalker-dom/zipball/1e5b1022f92d1e44c07aa918f83a5f8d8687103b",
     529            "reference": "1e5b1022f92d1e44c07aa918f83a5f8d8687103b",
     530            "shasum": ""
     531        },
     532        "require": {
     533            "php": ">=5.3.10"
     534        },
     535        "require-dev": {
     536            "windwalker/test": "~2.0"
     537        },
     538        "time": "2016-02-12T15:36:22+00:00",
     539        "type": "windwalker-package",
    523540        "extra": {
    524541            "branch-alias": {
    525                 "dev-master": "5.0.x-dev"
    526             }
    527         },
    528         "installation-source": "dist",
    529         "autoload": {
    530             "psr-4": {
    531                 "JsonSchema\\": "src/JsonSchema/"
    532             }
    533         },
    534         "notification-url": "https://packagist.org/downloads/",
    535         "license": [
    536             "MIT"
    537         ],
    538         "authors": [
    539             {
    540                 "name": "Bruno Prieto Reis",
    541                 "email": "[email protected]"
    542             },
    543             {
    544                 "name": "Justin Rainbow",
    545                 "email": "[email protected]"
    546             },
    547             {
    548                 "name": "Igor Wiedler",
    549                 "email": "[email protected]"
    550             },
    551             {
    552                 "name": "Robert Schönthal",
    553                 "email": "[email protected]"
    554             }
    555         ],
    556         "description": "A library to validate a json schema.",
    557         "homepage": "https://github.com/justinrainbow/json-schema",
     542                "dev-master": "2.2-dev"
     543            }
     544        },
     545        "installation-source": "dist",
     546        "autoload": {
     547            "psr-4": {
     548                "Windwalker\\Dom\\": ""
     549            }
     550        },
     551        "notification-url": "https://packagist.org/downloads/",
     552        "license": [
     553            "LGPL-2.0+"
     554        ],
     555        "description": "Windwalker Dom package",
     556        "homepage": "https://github.com/ventoviro/windwalker-dom",
    558557        "keywords": [
    559             "json",
    560             "schema"
     558            "filesystem",
     559            "framework",
     560            "windwalker"
    561561        ]
    562562    }
Note: See TracChangeset for help on using the changeset viewer.