Plugin Directory

Changeset 3033574


Ignore:
Timestamp:
02/09/2024 10:04:19 AM (2 years ago)
Author:
devianadim9
Message:

Release version 2.6.9

Location:
wedevs-project-manager
Files:
1787 added
14 edited

Legend:

Unmodified
Added
Removed
  • wedevs-project-manager/trunk/config/app.php

    r3033466 r3033574  
    44    'name'        => 'Project Manager',
    55    'slug'        => 'pm',
    6     'version'     => '2.6.8',
     6    'version'     => '2.6.9',
    77    'api'         => '2',
    88    'db_version'  => '2.5',
  • wedevs-project-manager/trunk/cpm.php

    r3033466 r3033574  
    66 * Author: weDevs
    77 * Author URI: https://wedevs.com
    8  * Version: 2.6.8
     8 * Version: 2.6.9
    99 * Text Domain: wedevs-project-manager
    1010 * Domain Path: /languages
  • wedevs-project-manager/trunk/readme.txt

    r3033466 r3033574  
    66Tested up to: 6.3.1
    77Requires PHP: 5.6
    8 Stable tag: 2.6.8
     8Stable tag: 2.6.9
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    283283
    284284== Changelog ==
     285
     286= v2.6.9 - Feb 09, 2024 =
     287
     288**Update:** Version bump & make stable frontend.
    285289
    286290= v2.6.8 - Feb 09, 2024 =
  • wedevs-project-manager/trunk/vendor/autoload.php

    r3033466 r3033574  
    33// autoload.php @generated by Composer
    44
     5if (PHP_VERSION_ID < 50600) {
     6    if (!headers_sent()) {
     7        header('HTTP/1.1 500 Internal Server Error');
     8    }
     9    $err = 'Composer 2.3.0 dropped support for autoloading on PHP <5.6 and you are running '.PHP_VERSION.', please upgrade PHP or use Composer 2.2 LTS via "composer self-update --2.2". Aborting.'.PHP_EOL;
     10    if (!ini_get('display_errors')) {
     11        if (PHP_SAPI === 'cli' || PHP_SAPI === 'phpdbg') {
     12            fwrite(STDERR, $err);
     13        } elseif (!headers_sent()) {
     14            echo $err;
     15        }
     16    }
     17    trigger_error(
     18        $err,
     19        E_USER_ERROR
     20    );
     21}
     22
    523require_once __DIR__ . '/composer/autoload_real.php';
    624
    7 return ComposerAutoloaderInit74d90d6fb0270cf5f50d434cb87feb7a::getLoader();
     25return ComposerAutoloaderInit8e2e47bcdabd3a6c13447c2eb9620b65::getLoader();
  • wedevs-project-manager/trunk/vendor/bin/upgrade-carbon

    r3033466 r3033574  
    109109    }
    110110
    111     if (function_exists('stream_wrapper_register') && stream_wrapper_register('phpvfscomposer', 'Composer\BinProxyWrapper')) {
     111    if (
     112        (function_exists('stream_get_wrappers') && in_array('phpvfscomposer', stream_get_wrappers(), true))
     113        || (function_exists('stream_wrapper_register') && stream_wrapper_register('phpvfscomposer', 'Composer\BinProxyWrapper'))
     114    ) {
    112115        include("phpvfscomposer://" . __DIR__ . '/..'.'/nesbot/carbon/bin/upgrade-carbon');
    113116        exit(0);
  • wedevs-project-manager/trunk/vendor/composer/ClassLoader.php

    r3033466 r3033574  
    4343class ClassLoader
    4444{
     45    /** @var \Closure(string):void */
     46    private static $includeFile;
     47
    4548    /** @var ?string */
    4649    private $vendorDir;
     
    107110    {
    108111        $this->vendorDir = $vendorDir;
     112        self::initializeIncludeClosure();
    109113    }
    110114
     
    426430    {
    427431        if ($file = $this->findFile($class)) {
    428             includeFile($file);
     432            $includeFile = self::$includeFile;
     433            $includeFile($file);
    429434
    430435            return true;
     
    556561        return false;
    557562    }
     563
     564    /**
     565     * @return void
     566     */
     567    private static function initializeIncludeClosure()
     568    {
     569        if (self::$includeFile !== null) {
     570            return;
     571        }
     572
     573        /**
     574         * Scope isolated include.
     575         *
     576         * Prevents access to $this/self from included files.
     577         *
     578         * @param  string $file
     579         * @return void
     580         */
     581        self::$includeFile = \Closure::bind(static function($file) {
     582            include $file;
     583        }, null, null);
     584    }
    558585}
    559 
    560 /**
    561  * Scope isolated include.
    562  *
    563  * Prevents access to $this/self from included files.
    564  *
    565  * @param  string $file
    566  * @return void
    567  * @private
    568  */
    569 function includeFile($file)
    570 {
    571     include $file;
    572 }
  • wedevs-project-manager/trunk/vendor/composer/InstalledVersions.php

    r3033466 r3033574  
    2222 *
    2323 * To require its presence, you can require `composer-runtime-api ^2.0`
     24 *
     25 * @final
    2426 */
    2527class InstalledVersions
     
    2729    /**
    2830     * @var mixed[]|null
    29      * @psalm-var array{root: array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}, versions: array<string, array{dev_requirement: bool, pretty_version?: string, version?: string, aliases?: string[], reference?: string, replaced?: string[], provided?: string[], install_path?: string, type?: string}>}|array{}|null
     31     * @psalm-var array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>}|array{}|null
    3032     */
    3133    private static $installed;
     
    3840    /**
    3941     * @var array[]
    40      * @psalm-var array<string, array{root: array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}, versions: array<string, array{dev_requirement: bool, pretty_version?: string, version?: string, aliases?: string[], reference?: string, replaced?: string[], provided?: string[], install_path?: string, type?: string}>}>
     42     * @psalm-var array<string, array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>}>
    4143     */
    4244    private static $installedByVendor = array();
     
    9799        foreach (self::getInstalled() as $installed) {
    98100            if (isset($installed['versions'][$packageName])) {
    99                 return $includeDevRequirements || empty($installed['versions'][$packageName]['dev_requirement']);
     101                return $includeDevRequirements || !isset($installed['versions'][$packageName]['dev_requirement']) || $installed['versions'][$packageName]['dev_requirement'] === false;
    100102            }
    101103        }
     
    118120    public static function satisfies(VersionParser $parser, $packageName, $constraint)
    119121    {
    120         $constraint = $parser->parseConstraints($constraint);
     122        $constraint = $parser->parseConstraints((string) $constraint);
    121123        $provided = $parser->parseConstraints(self::getVersionRanges($packageName));
    122124
     
    242244    /**
    243245     * @return array
    244      * @psalm-return array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}
     246     * @psalm-return array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}
    245247     */
    246248    public static function getRootPackage()
     
    256258     * @deprecated Use getAllRawData() instead which returns all datasets for all autoloaders present in the process. getRawData only returns the first dataset loaded, which may not be what you expect.
    257259     * @return array[]
    258      * @psalm-return array{root: array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}, versions: array<string, array{dev_requirement: bool, pretty_version?: string, version?: string, aliases?: string[], reference?: string, replaced?: string[], provided?: string[], install_path?: string, type?: string}>}
     260     * @psalm-return array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>}
    259261     */
    260262    public static function getRawData()
     
    279281     *
    280282     * @return array[]
    281      * @psalm-return list<array{root: array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}, versions: array<string, array{dev_requirement: bool, pretty_version?: string, version?: string, aliases?: string[], reference?: string, replaced?: string[], provided?: string[], install_path?: string, type?: string}>}>
     283     * @psalm-return list<array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>}>
    282284     */
    283285    public static function getAllRawData()
     
    302304     * @return void
    303305     *
    304      * @psalm-param array{root: array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}, versions: array<string, array{dev_requirement: bool, pretty_version?: string, version?: string, aliases?: string[], reference?: string, replaced?: string[], provided?: string[], install_path?: string, type?: string}>} $data
     306     * @psalm-param array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>} $data
    305307     */
    306308    public static function reload($data)
     
    312314    /**
    313315     * @return array[]
    314      * @psalm-return list<array{root: array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}, versions: array<string, array{dev_requirement: bool, pretty_version?: string, version?: string, aliases?: string[], reference?: string, replaced?: string[], provided?: string[], install_path?: string, type?: string}>}>
     316     * @psalm-return list<array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>}>
    315317     */
    316318    private static function getInstalled()
     
    327329                    $installed[] = self::$installedByVendor[$vendorDir];
    328330                } elseif (is_file($vendorDir.'/composer/installed.php')) {
    329                     $installed[] = self::$installedByVendor[$vendorDir] = require $vendorDir.'/composer/installed.php';
     331                    /** @var array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>} $required */
     332                    $required = require $vendorDir.'/composer/installed.php';
     333                    $installed[] = self::$installedByVendor[$vendorDir] = $required;
    330334                    if (null === self::$installed && strtr($vendorDir.'/composer', '\\', '/') === strtr(__DIR__, '\\', '/')) {
    331335                        self::$installed = $installed[count($installed) - 1];
     
    339343            // and not from its source location in the composer/composer package, see https://github.com/composer/composer/issues/9937
    340344            if (substr(__DIR__, -8, 1) !== 'C') {
    341                 self::$installed = require __DIR__ . '/installed.php';
     345                /** @var array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>} $required */
     346                $required = require __DIR__ . '/installed.php';
     347                self::$installed = $required;
    342348            } else {
    343349                self::$installed = array();
    344350            }
    345351        }
    346         $installed[] = self::$installed;
     352
     353        if (self::$installed !== array()) {
     354            $installed[] = self::$installed;
     355        }
    347356
    348357        return $installed;
  • wedevs-project-manager/trunk/vendor/composer/autoload_classmap.php

    r3033466 r3033574  
    33// autoload_classmap.php @generated by Composer
    44
    5 $vendorDir = dirname(dirname(__FILE__));
     5$vendorDir = dirname(__DIR__);
    66$baseDir = dirname($vendorDir);
    77
  • wedevs-project-manager/trunk/vendor/composer/autoload_files.php

    r3033466 r3033574  
    33// autoload_files.php @generated by Composer
    44
    5 $vendorDir = dirname(dirname(__FILE__));
     5$vendorDir = dirname(__DIR__);
    66$baseDir = dirname($vendorDir);
    77
  • wedevs-project-manager/trunk/vendor/composer/autoload_namespaces.php

    r3033466 r3033574  
    33// autoload_namespaces.php @generated by Composer
    44
    5 $vendorDir = dirname(dirname(__FILE__));
     5$vendorDir = dirname(__DIR__);
    66$baseDir = dirname($vendorDir);
    77
  • wedevs-project-manager/trunk/vendor/composer/autoload_psr4.php

    r3033466 r3033574  
    33// autoload_psr4.php @generated by Composer
    44
    5 $vendorDir = dirname(dirname(__FILE__));
     5$vendorDir = dirname(__DIR__);
    66$baseDir = dirname($vendorDir);
    77
  • wedevs-project-manager/trunk/vendor/composer/autoload_real.php

    r3033466 r3033574  
    33// autoload_real.php @generated by Composer
    44
    5 class ComposerAutoloaderInit74d90d6fb0270cf5f50d434cb87feb7a
     5class ComposerAutoloaderInit8e2e47bcdabd3a6c13447c2eb9620b65
    66{
    77    private static $loader;
     
    2525        require __DIR__ . '/platform_check.php';
    2626
    27         spl_autoload_register(array('ComposerAutoloaderInit74d90d6fb0270cf5f50d434cb87feb7a', 'loadClassLoader'), true, true);
    28         self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(\dirname(__FILE__)));
    29         spl_autoload_unregister(array('ComposerAutoloaderInit74d90d6fb0270cf5f50d434cb87feb7a', 'loadClassLoader'));
     27        spl_autoload_register(array('ComposerAutoloaderInit8e2e47bcdabd3a6c13447c2eb9620b65', 'loadClassLoader'), true, true);
     28        self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
     29        spl_autoload_unregister(array('ComposerAutoloaderInit8e2e47bcdabd3a6c13447c2eb9620b65', 'loadClassLoader'));
    3030
    31         $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
    32         if ($useStaticLoader) {
    33             require __DIR__ . '/autoload_static.php';
    34 
    35             call_user_func(\Composer\Autoload\ComposerStaticInit74d90d6fb0270cf5f50d434cb87feb7a::getInitializer($loader));
    36         } else {
    37             $map = require __DIR__ . '/autoload_namespaces.php';
    38             foreach ($map as $namespace => $path) {
    39                 $loader->set($namespace, $path);
    40             }
    41 
    42             $map = require __DIR__ . '/autoload_psr4.php';
    43             foreach ($map as $namespace => $path) {
    44                 $loader->setPsr4($namespace, $path);
    45             }
    46 
    47             $classMap = require __DIR__ . '/autoload_classmap.php';
    48             if ($classMap) {
    49                 $loader->addClassMap($classMap);
    50             }
    51         }
     31        require __DIR__ . '/autoload_static.php';
     32        call_user_func(\Composer\Autoload\ComposerStaticInit8e2e47bcdabd3a6c13447c2eb9620b65::getInitializer($loader));
    5233
    5334        $loader->register(true);
    5435
    55         if ($useStaticLoader) {
    56             $includeFiles = Composer\Autoload\ComposerStaticInit74d90d6fb0270cf5f50d434cb87feb7a::$files;
    57         } else {
    58             $includeFiles = require __DIR__ . '/autoload_files.php';
    59         }
    60         foreach ($includeFiles as $fileIdentifier => $file) {
    61             composerRequire74d90d6fb0270cf5f50d434cb87feb7a($fileIdentifier, $file);
     36        $filesToLoad = \Composer\Autoload\ComposerStaticInit8e2e47bcdabd3a6c13447c2eb9620b65::$files;
     37        $requireFile = \Closure::bind(static function ($fileIdentifier, $file) {
     38            if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
     39                $GLOBALS['__composer_autoload_files'][$fileIdentifier] = true;
     40
     41                require $file;
     42            }
     43        }, null, null);
     44        foreach ($filesToLoad as $fileIdentifier => $file) {
     45            $requireFile($fileIdentifier, $file);
    6246        }
    6347
     
    6549    }
    6650}
    67 
    68 /**
    69  * @param string $fileIdentifier
    70  * @param string $file
    71  * @return void
    72  */
    73 function composerRequire74d90d6fb0270cf5f50d434cb87feb7a($fileIdentifier, $file)
    74 {
    75     if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
    76         $GLOBALS['__composer_autoload_files'][$fileIdentifier] = true;
    77 
    78         require $file;
    79     }
    80 }
  • wedevs-project-manager/trunk/vendor/composer/autoload_static.php

    r3033466 r3033574  
    55namespace Composer\Autoload;
    66
    7 class ComposerStaticInit74d90d6fb0270cf5f50d434cb87feb7a
     7class ComposerStaticInit8e2e47bcdabd3a6c13447c2eb9620b65
    88{
    99    public static $files = array (
     
    754754    {
    755755        return \Closure::bind(function () use ($loader) {
    756             $loader->prefixLengthsPsr4 = ComposerStaticInit74d90d6fb0270cf5f50d434cb87feb7a::$prefixLengthsPsr4;
    757             $loader->prefixDirsPsr4 = ComposerStaticInit74d90d6fb0270cf5f50d434cb87feb7a::$prefixDirsPsr4;
    758             $loader->fallbackDirsPsr4 = ComposerStaticInit74d90d6fb0270cf5f50d434cb87feb7a::$fallbackDirsPsr4;
    759             $loader->prefixesPsr0 = ComposerStaticInit74d90d6fb0270cf5f50d434cb87feb7a::$prefixesPsr0;
    760             $loader->classMap = ComposerStaticInit74d90d6fb0270cf5f50d434cb87feb7a::$classMap;
     756            $loader->prefixLengthsPsr4 = ComposerStaticInit8e2e47bcdabd3a6c13447c2eb9620b65::$prefixLengthsPsr4;
     757            $loader->prefixDirsPsr4 = ComposerStaticInit8e2e47bcdabd3a6c13447c2eb9620b65::$prefixDirsPsr4;
     758            $loader->fallbackDirsPsr4 = ComposerStaticInit8e2e47bcdabd3a6c13447c2eb9620b65::$fallbackDirsPsr4;
     759            $loader->prefixesPsr0 = ComposerStaticInit8e2e47bcdabd3a6c13447c2eb9620b65::$prefixesPsr0;
     760            $loader->classMap = ComposerStaticInit8e2e47bcdabd3a6c13447c2eb9620b65::$classMap;
    761761
    762762        }, null, ClassLoader::class);
  • wedevs-project-manager/trunk/vendor/composer/installed.php

    r3033466 r3033574  
    11<?php return array(
    22    'root' => array(
    3         'pretty_version' => '1.0.0+no-version-set',
    4         'version' => '1.0.0.0',
     3        'name' => 'wedevsofficial/wp-project-manager',
     4        'pretty_version' => 'dev-develop',
     5        'version' => 'dev-develop',
     6        'reference' => '0b0b78c1c71a77c0c6de1290d7e8e119c5d8aaa7',
    57        'type' => 'wordpress-plugin',
    68        'install_path' => __DIR__ . '/../../',
    79        'aliases' => array(),
    8         'reference' => NULL,
    9         'name' => 'wedevsofficial/wp-project-manager',
    1010        'dev' => false,
    1111    ),
     
    1414            'pretty_version' => '1.0.2',
    1515            'version' => '1.0.2.0',
     16            'reference' => '2cbee1abd1b49e1133cd8f611df4d4fc5a8b9800',
    1617            'type' => 'library',
    1718            'install_path' => __DIR__ . '/../a5hleyrich/wp-background-processing',
    1819            'aliases' => array(),
    19             'reference' => '2cbee1abd1b49e1133cd8f611df4d4fc5a8b9800',
    2020            'dev_requirement' => false,
    2121        ),
     
    2323            'pretty_version' => 'v1.2.2',
    2424            'version' => '1.2.2.0',
     25            'reference' => '5f9a275cdd94d756d2f5b05d9281719c6d638561',
    2526            'type' => 'library',
    2627            'install_path' => __DIR__ . '/../appsero/client',
    2728            'aliases' => array(),
    28             'reference' => '5f9a275cdd94d756d2f5b05d9281719c6d638561',
    2929            'dev_requirement' => false,
    3030        ),
     
    3232            'pretty_version' => 'v1.4.0',
    3333            'version' => '1.4.0.0',
     34            'reference' => '1a4fb7e902202c33cce8c55989b945612943c2ba',
    3435            'type' => 'library',
    3536            'install_path' => __DIR__ . '/../doctrine/collections',
    3637            'aliases' => array(),
    37             'reference' => '1a4fb7e902202c33cce8c55989b945612943c2ba',
    3838            'dev_requirement' => false,
    3939        ),
     
    4141            'pretty_version' => 'v1.1.0',
    4242            'version' => '1.1.0.0',
     43            'reference' => '90b2128806bfde671b6952ab8bea493942c1fdae',
    4344            'type' => 'library',
    4445            'install_path' => __DIR__ . '/../doctrine/inflector',
    4546            'aliases' => array(),
    46             'reference' => '90b2128806bfde671b6952ab8bea493942c1fdae',
    4747            'dev_requirement' => false,
    4848        ),
     
    5050            'pretty_version' => 'v5.4.36',
    5151            'version' => '5.4.36.0',
     52            'reference' => 'c5b8a02a34a52c307f16922334c355c5eef725a6',
    5253            'type' => 'library',
    5354            'install_path' => __DIR__ . '/../illuminate/container',
    5455            'aliases' => array(),
    55             'reference' => 'c5b8a02a34a52c307f16922334c355c5eef725a6',
    5656            'dev_requirement' => false,
    5757        ),
     
    5959            'pretty_version' => 'v5.4.36',
    6060            'version' => '5.4.36.0',
     61            'reference' => '67f642e018f3e95fb0b2ebffc206c3200391b1ab',
    6162            'type' => 'library',
    6263            'install_path' => __DIR__ . '/../illuminate/contracts',
    6364            'aliases' => array(),
    64             'reference' => '67f642e018f3e95fb0b2ebffc206c3200391b1ab',
    6565            'dev_requirement' => false,
    6666        ),
     
    6868            'pretty_version' => 'v5.4.36',
    6969            'version' => '5.4.36.0',
     70            'reference' => '405aa061a5bc8588cbf3a78fba383541a568e3fe',
    7071            'type' => 'library',
    7172            'install_path' => __DIR__ . '/../illuminate/database',
    7273            'aliases' => array(),
    73             'reference' => '405aa061a5bc8588cbf3a78fba383541a568e3fe',
    7474            'dev_requirement' => false,
    7575        ),
     
    7777            'pretty_version' => 'v5.4.36',
    7878            'version' => '5.4.36.0',
     79            'reference' => 'ae1540acf02c8b642666d6901c18d2deb5606b47',
    7980            'type' => 'library',
    8081            'install_path' => __DIR__ . '/../illuminate/pagination',
    8182            'aliases' => array(),
    82             'reference' => 'ae1540acf02c8b642666d6901c18d2deb5606b47',
    8383            'dev_requirement' => false,
    8484        ),
     
    8686            'pretty_version' => 'v5.4.36',
    8787            'version' => '5.4.36.0',
     88            'reference' => 'feab1d1495fd6d38970bd6c83586ba2ace8f299a',
    8889            'type' => 'library',
    8990            'install_path' => __DIR__ . '/../illuminate/support',
    9091            'aliases' => array(),
    91             'reference' => 'feab1d1495fd6d38970bd6c83586ba2ace8f299a',
    9292            'dev_requirement' => false,
    9393        ),
     
    9595            'pretty_version' => '1.2.1',
    9696            'version' => '1.2.1.0',
     97            'reference' => '429be50660ed8a196e0798e5939760f168ec8ce9',
    9798            'type' => 'composer-plugin',
    9899            'install_path' => __DIR__ . '/../kylekatarnls/update-helper',
    99100            'aliases' => array(),
    100             'reference' => '429be50660ed8a196e0798e5939760f168ec8ce9',
    101101            'dev_requirement' => false,
    102102        ),
     
    104104            'pretty_version' => '0.17.0',
    105105            'version' => '0.17.0.0',
     106            'reference' => 'a0b350824f22fc2fdde2500ce9d6851a3f275b0e',
    106107            'type' => 'library',
    107108            'install_path' => __DIR__ . '/../league/fractal',
    108109            'aliases' => array(),
    109             'reference' => 'a0b350824f22fc2fdde2500ce9d6851a3f275b0e',
    110110            'dev_requirement' => false,
    111111        ),
     
    113113            'pretty_version' => '1.39.1',
    114114            'version' => '1.39.1.0',
     115            'reference' => '4be0c005164249208ce1b5ca633cd57bdd42ff33',
    115116            'type' => 'library',
    116117            'install_path' => __DIR__ . '/../nesbot/carbon',
    117118            'aliases' => array(),
    118             'reference' => '4be0c005164249208ce1b5ca633cd57bdd42ff33',
    119119            'dev_requirement' => false,
    120120        ),
     
    122122            'pretty_version' => 'v2.0.19',
    123123            'version' => '2.0.19.0',
     124            'reference' => '446fc9faa5c2a9ddf65eb7121c0af7e857295241',
    124125            'type' => 'library',
    125126            'install_path' => __DIR__ . '/../paragonie/random_compat',
    126127            'aliases' => array(),
    127             'reference' => '446fc9faa5c2a9ddf65eb7121c0af7e857295241',
    128128            'dev_requirement' => false,
    129129        ),
     
    131131            'pretty_version' => 'v4.0.2',
    132132            'version' => '4.0.2.0',
     133            'reference' => 'd6f85ec8652366f45f6d1ba07292c9653939631a',
    133134            'type' => 'library',
    134135            'install_path' => __DIR__ . '/../simshaun/recurr',
    135136            'aliases' => array(),
    136             'reference' => 'd6f85ec8652366f45f6d1ba07292c9653939631a',
    137137            'dev_requirement' => false,
    138138        ),
     
    140140            'pretty_version' => 'v1.19.0',
    141141            'version' => '1.19.0.0',
     142            'reference' => 'b5f7b932ee6fa802fc792eabd77c4c88084517ce',
    142143            'type' => 'library',
    143144            'install_path' => __DIR__ . '/../symfony/polyfill-mbstring',
    144145            'aliases' => array(),
    145             'reference' => 'b5f7b932ee6fa802fc792eabd77c4c88084517ce',
    146146            'dev_requirement' => false,
    147147        ),
     
    149149            'pretty_version' => 'v3.4.47',
    150150            'version' => '3.4.47.0',
     151            'reference' => 'be83ee6c065cb32becdb306ba61160d598b1ce88',
    151152            'type' => 'library',
    152153            'install_path' => __DIR__ . '/../symfony/translation',
    153154            'aliases' => array(),
    154             'reference' => 'be83ee6c065cb32becdb306ba61160d598b1ce88',
    155155            'dev_requirement' => false,
    156156        ),
     
    158158            'pretty_version' => 'dev-master',
    159159            'version' => 'dev-master',
     160            'reference' => 'd34de7583161bccbf867c4713effe3325ae7fad9',
    160161            'type' => 'library',
    161162            'install_path' => __DIR__ . '/../tareq1988/wp-eloquent',
     
    163164                0 => '9999999-dev',
    164165            ),
    165             'reference' => 'd34de7583161bccbf867c4713effe3325ae7fad9',
    166166            'dev_requirement' => false,
    167167        ),
     
    173173        ),
    174174        'wedevsofficial/wp-project-manager' => array(
    175             'pretty_version' => '1.0.0+no-version-set',
    176             'version' => '1.0.0.0',
     175            'pretty_version' => 'dev-develop',
     176            'version' => 'dev-develop',
     177            'reference' => '0b0b78c1c71a77c0c6de1290d7e8e119c5d8aaa7',
    177178            'type' => 'wordpress-plugin',
    178179            'install_path' => __DIR__ . '/../../',
    179180            'aliases' => array(),
    180             'reference' => NULL,
    181181            'dev_requirement' => false,
    182182        ),
Note: See TracChangeset for help on using the changeset viewer.