Plugin Directory

Changeset 2791814


Ignore:
Timestamp:
09/29/2022 10:59:44 AM (4 years ago)
Author:
juvodesign
Message:

Update to version 3.0.12 from GitHub

Location:
juvo-mail-editor
Files:
18 edited
1 copied

Legend:

Unmodified
Added
Removed
  • juvo-mail-editor/tags/3.0.12/juvo-mail-editor.php

    r2717851 r2791814  
    88 * Text Domain:     juvo-mail-editor
    99 * Domain Path:     /languages
    10  * Version:         3.0.11
     10 * Version:         3.0.12
    1111 */
    1212
  • juvo-mail-editor/tags/3.0.12/readme.txt

    r2717851 r2791814  
    44License: GPLv2 or later
    55Tested up to: 5.9
    6 Stable tag: 3.0.11
     6Stable tag: 3.0.12
    77
    88JUVO Mail Editor helps to modify the standard WordPress Mailings and allows adding dynamic mail triggers.
  • juvo-mail-editor/tags/3.0.12/src/Mails/Password_Changed.php

    r2717851 r2791814  
    1414    public function addCustomFields( CMB2 $cmb ): CMB2 {
    1515
     16        /** There are usecases to allow sending this mail to other recipients
    1617        if ( $cmb->object_id() && has_term( $this->getTrigger(), Mail_Trigger_TAX::TAXONOMY_NAME, $cmb->object_id() ) ) {
    1718
     
    3536
    3637        }
     38        **/
    3739
    3840        return $cmb;
  • juvo-mail-editor/tags/3.0.12/src/Mails/Password_Reset.php

    r2717851 r2791814  
    1818    public function addCustomFields( CMB2 $cmb ): CMB2 {
    1919
     20        /** There are usecases to allow sending this mail to other recipients
    2021        if ( $cmb->object_id() && has_term( $this->getTrigger(), Mail_Trigger_TAX::TAXONOMY_NAME, $cmb->object_id() ) ) {
    2122
     
    3940
    4041        }
     42        **/
    4143
    4244        return $cmb;
  • juvo-mail-editor/tags/3.0.12/vendor/autoload.php

    r2717851 r2791814  
    1010require_once __DIR__ . '/composer/autoload_real.php';
    1111
    12 return ComposerAutoloaderInita776181bfd2a06c572478c35b9d594a7::getLoader();
     12return ComposerAutoloaderInit7d4bf1851cad0eb389f37a767405692e::getLoader();
  • juvo-mail-editor/tags/3.0.12/vendor/composer/InstalledVersions.php

    r2706810 r2791814  
    2929    /**
    3030     * @var mixed[]|null
    31      * @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
    3232     */
    3333    private static $installed;
     
    4040    /**
    4141     * @var array[]
    42      * @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[]}>}>
    4343     */
    4444    private static $installedByVendor = array();
     
    244244    /**
    245245     * @return array
    246      * @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}
    247247     */
    248248    public static function getRootPackage()
     
    258258     * @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.
    259259     * @return array[]
    260      * @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[]}>}
    261261     */
    262262    public static function getRawData()
     
    281281     *
    282282     * @return array[]
    283      * @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[]}>}>
    284284     */
    285285    public static function getAllRawData()
     
    304304     * @return void
    305305     *
    306      * @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
    307307     */
    308308    public static function reload($data)
     
    314314    /**
    315315     * @return array[]
    316      * @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[]}>}>
    317317     */
    318318    private static function getInstalled()
  • juvo-mail-editor/tags/3.0.12/vendor/composer/autoload_real.php

    r2717851 r2791814  
    33// autoload_real.php @generated by Composer
    44
    5 class ComposerAutoloaderInita776181bfd2a06c572478c35b9d594a7
     5class ComposerAutoloaderInit7d4bf1851cad0eb389f37a767405692e
    66{
    77    private static $loader;
     
    2323        }
    2424
    25         spl_autoload_register(array('ComposerAutoloaderInita776181bfd2a06c572478c35b9d594a7', 'loadClassLoader'), true, true);
     25        spl_autoload_register(array('ComposerAutoloaderInit7d4bf1851cad0eb389f37a767405692e', 'loadClassLoader'), true, true);
    2626        self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
    27         spl_autoload_unregister(array('ComposerAutoloaderInita776181bfd2a06c572478c35b9d594a7', 'loadClassLoader'));
     27        spl_autoload_unregister(array('ComposerAutoloaderInit7d4bf1851cad0eb389f37a767405692e', 'loadClassLoader'));
    2828
    2929        require __DIR__ . '/autoload_static.php';
    30         call_user_func(\Composer\Autoload\ComposerStaticInita776181bfd2a06c572478c35b9d594a7::getInitializer($loader));
     30        call_user_func(\Composer\Autoload\ComposerStaticInit7d4bf1851cad0eb389f37a767405692e::getInitializer($loader));
    3131
    3232        $loader->register(true);
    3333
    34         $includeFiles = \Composer\Autoload\ComposerStaticInita776181bfd2a06c572478c35b9d594a7::$files;
     34        $includeFiles = \Composer\Autoload\ComposerStaticInit7d4bf1851cad0eb389f37a767405692e::$files;
    3535        foreach ($includeFiles as $fileIdentifier => $file) {
    36             composerRequirea776181bfd2a06c572478c35b9d594a7($fileIdentifier, $file);
     36            composerRequire7d4bf1851cad0eb389f37a767405692e($fileIdentifier, $file);
    3737        }
    3838
     
    4646 * @return void
    4747 */
    48 function composerRequirea776181bfd2a06c572478c35b9d594a7($fileIdentifier, $file)
     48function composerRequire7d4bf1851cad0eb389f37a767405692e($fileIdentifier, $file)
    4949{
    5050    if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
  • juvo-mail-editor/tags/3.0.12/vendor/composer/autoload_static.php

    r2717851 r2791814  
    55namespace Composer\Autoload;
    66
    7 class ComposerStaticInita776181bfd2a06c572478c35b9d594a7
     7class ComposerStaticInit7d4bf1851cad0eb389f37a767405692e
    88{
    99    public static $files = array (
     
    100100    {
    101101        return \Closure::bind(function () use ($loader) {
    102             $loader->prefixLengthsPsr4 = ComposerStaticInita776181bfd2a06c572478c35b9d594a7::$prefixLengthsPsr4;
    103             $loader->prefixDirsPsr4 = ComposerStaticInita776181bfd2a06c572478c35b9d594a7::$prefixDirsPsr4;
    104             $loader->fallbackDirsPsr4 = ComposerStaticInita776181bfd2a06c572478c35b9d594a7::$fallbackDirsPsr4;
    105             $loader->prefixesPsr0 = ComposerStaticInita776181bfd2a06c572478c35b9d594a7::$prefixesPsr0;
    106             $loader->classMap = ComposerStaticInita776181bfd2a06c572478c35b9d594a7::$classMap;
     102            $loader->prefixLengthsPsr4 = ComposerStaticInit7d4bf1851cad0eb389f37a767405692e::$prefixLengthsPsr4;
     103            $loader->prefixDirsPsr4 = ComposerStaticInit7d4bf1851cad0eb389f37a767405692e::$prefixDirsPsr4;
     104            $loader->fallbackDirsPsr4 = ComposerStaticInit7d4bf1851cad0eb389f37a767405692e::$fallbackDirsPsr4;
     105            $loader->prefixesPsr0 = ComposerStaticInit7d4bf1851cad0eb389f37a767405692e::$prefixesPsr0;
     106            $loader->classMap = ComposerStaticInit7d4bf1851cad0eb389f37a767405692e::$classMap;
    107107
    108108        }, null, ClassLoader::class);
  • juvo-mail-editor/tags/3.0.12/vendor/composer/installed.php

    r2717851 r2791814  
    11<?php return array(
    22    'root' => array(
    3         'pretty_version' => '3.0.11',
    4         'version' => '3.0.11.0',
     3        'name' => 'juvo/mail-editor',
     4        'pretty_version' => '3.0.12',
     5        'version' => '3.0.12.0',
     6        'reference' => 'a9391b3ef6465723879826e060a27d3203bc884a',
    57        'type' => 'wordpress-plugin',
    68        'install_path' => __DIR__ . '/../../',
    79        'aliases' => array(),
    8         'reference' => '5a487cbf45f5c98e4fcecf4a8becee2a7e7bee92',
    9         'name' => 'juvo/mail-editor',
    1010        'dev' => false,
    1111    ),
     
    1414            'pretty_version' => '2.0.2',
    1515            'version' => '2.0.2.0',
     16            'reference' => 'f6fede4f94ced7c22ba63a9b8af0bf2dc38e3cb2',
    1617            'type' => 'library',
    1718            'install_path' => __DIR__ . '/../altorouter/altorouter',
    1819            'aliases' => array(),
    19             'reference' => 'f6fede4f94ced7c22ba63a9b8af0bf2dc38e3cb2',
    2020            'dev_requirement' => false,
    2121        ),
     
    2323            'pretty_version' => 'v2.9.0',
    2424            'version' => '2.9.0.0',
     25            'reference' => 'cacbc8cedbfdf8ffe0e840858e6860f9333c33f2',
    2526            'type' => 'wordpress-plugin',
    2627            'install_path' => __DIR__ . '/../cmb2/cmb2',
    2728            'aliases' => array(),
    28             'reference' => 'cacbc8cedbfdf8ffe0e840858e6860f9333c33f2',
    2929            'dev_requirement' => false,
    3030        ),
     
    3232            'pretty_version' => 'v1.12.0',
    3333            'version' => '1.12.0.0',
     34            'reference' => 'd20a64ed3c94748397ff5973488761b22f6d3f19',
    3435            'type' => 'composer-plugin',
    3536            'install_path' => __DIR__ . '/./installers',
    3637            'aliases' => array(),
    37             'reference' => 'd20a64ed3c94748397ff5973488761b22f6d3f19',
    3838            'dev_requirement' => false,
    3939        ),
    4040        'juvo/mail-editor' => array(
    41             'pretty_version' => '3.0.11',
    42             'version' => '3.0.11.0',
     41            'pretty_version' => '3.0.12',
     42            'version' => '3.0.12.0',
     43            'reference' => 'a9391b3ef6465723879826e060a27d3203bc884a',
    4344            'type' => 'wordpress-plugin',
    4445            'install_path' => __DIR__ . '/../../',
    4546            'aliases' => array(),
    46             'reference' => '5a487cbf45f5c98e4fcecf4a8becee2a7e7bee92',
    4747            'dev_requirement' => false,
    4848        ),
     
    6262            'pretty_version' => 'v1.24.0',
    6363            'version' => '1.24.0.0',
     64            'reference' => '30885182c981ab175d4d034db0f6f469898070ab',
    6465            'type' => 'library',
    6566            'install_path' => __DIR__ . '/../symfony/polyfill-ctype',
    6667            'aliases' => array(),
    67             'reference' => '30885182c981ab175d4d034db0f6f469898070ab',
    6868            'dev_requirement' => false,
    6969        ),
     
    7171            'pretty_version' => 'v1.20.0',
    7272            'version' => '1.20.0.0',
     73            'reference' => '39d483bdf39be819deabf04ec872eb0b2410b531',
    7374            'type' => 'library',
    7475            'install_path' => __DIR__ . '/../symfony/polyfill-mbstring',
    7576            'aliases' => array(),
    76             'reference' => '39d483bdf39be819deabf04ec872eb0b2410b531',
    7777            'dev_requirement' => false,
    7878        ),
     
    8080            'pretty_version' => 'v1.24.0',
    8181            'version' => '1.24.0.0',
     82            'reference' => '9a142215a36a3888e30d0a9eeea9766764e96976',
    8283            'type' => 'library',
    8384            'install_path' => __DIR__ . '/../symfony/polyfill-php72',
    8485            'aliases' => array(),
    85             'reference' => '9a142215a36a3888e30d0a9eeea9766764e96976',
    8686            'dev_requirement' => false,
    8787        ),
     
    8989            'pretty_version' => '1.19.1',
    9090            'version' => '1.19.1.0',
     91            'reference' => '3e213fbd3587eb36adec2d5a081824c4722a0acf',
    9192            'type' => 'library',
    9293            'install_path' => __DIR__ . '/../timber/timber',
    9394            'aliases' => array(),
    94             'reference' => '3e213fbd3587eb36adec2d5a081824c4722a0acf',
    9595            'dev_requirement' => false,
    9696        ),
     
    9898            'pretty_version' => 'v1.5.0',
    9999            'version' => '1.5.0.0',
     100            'reference' => '2c243643f59132194458bd03c745b079bbb12e78',
    100101            'type' => 'library',
    101102            'install_path' => __DIR__ . '/../twig/cache-extension',
    102103            'aliases' => array(),
    103             'reference' => '2c243643f59132194458bd03c745b079bbb12e78',
    104104            'dev_requirement' => false,
    105105        ),
     
    107107            'pretty_version' => 'v2.14.11',
    108108            'version' => '2.14.11.0',
     109            'reference' => '66baa66f29ee30e487e05f1679903e36eb01d727',
    109110            'type' => 'library',
    110111            'install_path' => __DIR__ . '/../twig/twig',
    111112            'aliases' => array(),
    112             'reference' => '66baa66f29ee30e487e05f1679903e36eb01d727',
    113113            'dev_requirement' => false,
    114114        ),
     
    116116            'pretty_version' => '0.8.1',
    117117            'version' => '0.8.1.0',
     118            'reference' => '02eb866668f5478d794547aa79e73dd92a989ad9',
    118119            'type' => 'library',
    119120            'install_path' => __DIR__ . '/../upstatement/routes',
    120121            'aliases' => array(),
    121             'reference' => '02eb866668f5478d794547aa79e73dd92a989ad9',
    122122            'dev_requirement' => false,
    123123        ),
  • juvo-mail-editor/trunk/juvo-mail-editor.php

    r2717851 r2791814  
    88 * Text Domain:     juvo-mail-editor
    99 * Domain Path:     /languages
    10  * Version:         3.0.11
     10 * Version:         3.0.12
    1111 */
    1212
  • juvo-mail-editor/trunk/readme.txt

    r2717851 r2791814  
    44License: GPLv2 or later
    55Tested up to: 5.9
    6 Stable tag: 3.0.11
     6Stable tag: 3.0.12
    77
    88JUVO Mail Editor helps to modify the standard WordPress Mailings and allows adding dynamic mail triggers.
  • juvo-mail-editor/trunk/src/Mails/Password_Changed.php

    r2717851 r2791814  
    1414    public function addCustomFields( CMB2 $cmb ): CMB2 {
    1515
     16        /** There are usecases to allow sending this mail to other recipients
    1617        if ( $cmb->object_id() && has_term( $this->getTrigger(), Mail_Trigger_TAX::TAXONOMY_NAME, $cmb->object_id() ) ) {
    1718
     
    3536
    3637        }
     38        **/
    3739
    3840        return $cmb;
  • juvo-mail-editor/trunk/src/Mails/Password_Reset.php

    r2717851 r2791814  
    1818    public function addCustomFields( CMB2 $cmb ): CMB2 {
    1919
     20        /** There are usecases to allow sending this mail to other recipients
    2021        if ( $cmb->object_id() && has_term( $this->getTrigger(), Mail_Trigger_TAX::TAXONOMY_NAME, $cmb->object_id() ) ) {
    2122
     
    3940
    4041        }
     42        **/
    4143
    4244        return $cmb;
  • juvo-mail-editor/trunk/vendor/autoload.php

    r2717851 r2791814  
    1010require_once __DIR__ . '/composer/autoload_real.php';
    1111
    12 return ComposerAutoloaderInita776181bfd2a06c572478c35b9d594a7::getLoader();
     12return ComposerAutoloaderInit7d4bf1851cad0eb389f37a767405692e::getLoader();
  • juvo-mail-editor/trunk/vendor/composer/InstalledVersions.php

    r2706810 r2791814  
    2929    /**
    3030     * @var mixed[]|null
    31      * @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
    3232     */
    3333    private static $installed;
     
    4040    /**
    4141     * @var array[]
    42      * @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[]}>}>
    4343     */
    4444    private static $installedByVendor = array();
     
    244244    /**
    245245     * @return array
    246      * @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}
    247247     */
    248248    public static function getRootPackage()
     
    258258     * @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.
    259259     * @return array[]
    260      * @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[]}>}
    261261     */
    262262    public static function getRawData()
     
    281281     *
    282282     * @return array[]
    283      * @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[]}>}>
    284284     */
    285285    public static function getAllRawData()
     
    304304     * @return void
    305305     *
    306      * @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
    307307     */
    308308    public static function reload($data)
     
    314314    /**
    315315     * @return array[]
    316      * @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[]}>}>
    317317     */
    318318    private static function getInstalled()
  • juvo-mail-editor/trunk/vendor/composer/autoload_real.php

    r2717851 r2791814  
    33// autoload_real.php @generated by Composer
    44
    5 class ComposerAutoloaderInita776181bfd2a06c572478c35b9d594a7
     5class ComposerAutoloaderInit7d4bf1851cad0eb389f37a767405692e
    66{
    77    private static $loader;
     
    2323        }
    2424
    25         spl_autoload_register(array('ComposerAutoloaderInita776181bfd2a06c572478c35b9d594a7', 'loadClassLoader'), true, true);
     25        spl_autoload_register(array('ComposerAutoloaderInit7d4bf1851cad0eb389f37a767405692e', 'loadClassLoader'), true, true);
    2626        self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
    27         spl_autoload_unregister(array('ComposerAutoloaderInita776181bfd2a06c572478c35b9d594a7', 'loadClassLoader'));
     27        spl_autoload_unregister(array('ComposerAutoloaderInit7d4bf1851cad0eb389f37a767405692e', 'loadClassLoader'));
    2828
    2929        require __DIR__ . '/autoload_static.php';
    30         call_user_func(\Composer\Autoload\ComposerStaticInita776181bfd2a06c572478c35b9d594a7::getInitializer($loader));
     30        call_user_func(\Composer\Autoload\ComposerStaticInit7d4bf1851cad0eb389f37a767405692e::getInitializer($loader));
    3131
    3232        $loader->register(true);
    3333
    34         $includeFiles = \Composer\Autoload\ComposerStaticInita776181bfd2a06c572478c35b9d594a7::$files;
     34        $includeFiles = \Composer\Autoload\ComposerStaticInit7d4bf1851cad0eb389f37a767405692e::$files;
    3535        foreach ($includeFiles as $fileIdentifier => $file) {
    36             composerRequirea776181bfd2a06c572478c35b9d594a7($fileIdentifier, $file);
     36            composerRequire7d4bf1851cad0eb389f37a767405692e($fileIdentifier, $file);
    3737        }
    3838
     
    4646 * @return void
    4747 */
    48 function composerRequirea776181bfd2a06c572478c35b9d594a7($fileIdentifier, $file)
     48function composerRequire7d4bf1851cad0eb389f37a767405692e($fileIdentifier, $file)
    4949{
    5050    if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
  • juvo-mail-editor/trunk/vendor/composer/autoload_static.php

    r2717851 r2791814  
    55namespace Composer\Autoload;
    66
    7 class ComposerStaticInita776181bfd2a06c572478c35b9d594a7
     7class ComposerStaticInit7d4bf1851cad0eb389f37a767405692e
    88{
    99    public static $files = array (
     
    100100    {
    101101        return \Closure::bind(function () use ($loader) {
    102             $loader->prefixLengthsPsr4 = ComposerStaticInita776181bfd2a06c572478c35b9d594a7::$prefixLengthsPsr4;
    103             $loader->prefixDirsPsr4 = ComposerStaticInita776181bfd2a06c572478c35b9d594a7::$prefixDirsPsr4;
    104             $loader->fallbackDirsPsr4 = ComposerStaticInita776181bfd2a06c572478c35b9d594a7::$fallbackDirsPsr4;
    105             $loader->prefixesPsr0 = ComposerStaticInita776181bfd2a06c572478c35b9d594a7::$prefixesPsr0;
    106             $loader->classMap = ComposerStaticInita776181bfd2a06c572478c35b9d594a7::$classMap;
     102            $loader->prefixLengthsPsr4 = ComposerStaticInit7d4bf1851cad0eb389f37a767405692e::$prefixLengthsPsr4;
     103            $loader->prefixDirsPsr4 = ComposerStaticInit7d4bf1851cad0eb389f37a767405692e::$prefixDirsPsr4;
     104            $loader->fallbackDirsPsr4 = ComposerStaticInit7d4bf1851cad0eb389f37a767405692e::$fallbackDirsPsr4;
     105            $loader->prefixesPsr0 = ComposerStaticInit7d4bf1851cad0eb389f37a767405692e::$prefixesPsr0;
     106            $loader->classMap = ComposerStaticInit7d4bf1851cad0eb389f37a767405692e::$classMap;
    107107
    108108        }, null, ClassLoader::class);
  • juvo-mail-editor/trunk/vendor/composer/installed.php

    r2717851 r2791814  
    11<?php return array(
    22    'root' => array(
    3         'pretty_version' => '3.0.11',
    4         'version' => '3.0.11.0',
     3        'name' => 'juvo/mail-editor',
     4        'pretty_version' => '3.0.12',
     5        'version' => '3.0.12.0',
     6        'reference' => 'a9391b3ef6465723879826e060a27d3203bc884a',
    57        'type' => 'wordpress-plugin',
    68        'install_path' => __DIR__ . '/../../',
    79        'aliases' => array(),
    8         'reference' => '5a487cbf45f5c98e4fcecf4a8becee2a7e7bee92',
    9         'name' => 'juvo/mail-editor',
    1010        'dev' => false,
    1111    ),
     
    1414            'pretty_version' => '2.0.2',
    1515            'version' => '2.0.2.0',
     16            'reference' => 'f6fede4f94ced7c22ba63a9b8af0bf2dc38e3cb2',
    1617            'type' => 'library',
    1718            'install_path' => __DIR__ . '/../altorouter/altorouter',
    1819            'aliases' => array(),
    19             'reference' => 'f6fede4f94ced7c22ba63a9b8af0bf2dc38e3cb2',
    2020            'dev_requirement' => false,
    2121        ),
     
    2323            'pretty_version' => 'v2.9.0',
    2424            'version' => '2.9.0.0',
     25            'reference' => 'cacbc8cedbfdf8ffe0e840858e6860f9333c33f2',
    2526            'type' => 'wordpress-plugin',
    2627            'install_path' => __DIR__ . '/../cmb2/cmb2',
    2728            'aliases' => array(),
    28             'reference' => 'cacbc8cedbfdf8ffe0e840858e6860f9333c33f2',
    2929            'dev_requirement' => false,
    3030        ),
     
    3232            'pretty_version' => 'v1.12.0',
    3333            'version' => '1.12.0.0',
     34            'reference' => 'd20a64ed3c94748397ff5973488761b22f6d3f19',
    3435            'type' => 'composer-plugin',
    3536            'install_path' => __DIR__ . '/./installers',
    3637            'aliases' => array(),
    37             'reference' => 'd20a64ed3c94748397ff5973488761b22f6d3f19',
    3838            'dev_requirement' => false,
    3939        ),
    4040        'juvo/mail-editor' => array(
    41             'pretty_version' => '3.0.11',
    42             'version' => '3.0.11.0',
     41            'pretty_version' => '3.0.12',
     42            'version' => '3.0.12.0',
     43            'reference' => 'a9391b3ef6465723879826e060a27d3203bc884a',
    4344            'type' => 'wordpress-plugin',
    4445            'install_path' => __DIR__ . '/../../',
    4546            'aliases' => array(),
    46             'reference' => '5a487cbf45f5c98e4fcecf4a8becee2a7e7bee92',
    4747            'dev_requirement' => false,
    4848        ),
     
    6262            'pretty_version' => 'v1.24.0',
    6363            'version' => '1.24.0.0',
     64            'reference' => '30885182c981ab175d4d034db0f6f469898070ab',
    6465            'type' => 'library',
    6566            'install_path' => __DIR__ . '/../symfony/polyfill-ctype',
    6667            'aliases' => array(),
    67             'reference' => '30885182c981ab175d4d034db0f6f469898070ab',
    6868            'dev_requirement' => false,
    6969        ),
     
    7171            'pretty_version' => 'v1.20.0',
    7272            'version' => '1.20.0.0',
     73            'reference' => '39d483bdf39be819deabf04ec872eb0b2410b531',
    7374            'type' => 'library',
    7475            'install_path' => __DIR__ . '/../symfony/polyfill-mbstring',
    7576            'aliases' => array(),
    76             'reference' => '39d483bdf39be819deabf04ec872eb0b2410b531',
    7777            'dev_requirement' => false,
    7878        ),
     
    8080            'pretty_version' => 'v1.24.0',
    8181            'version' => '1.24.0.0',
     82            'reference' => '9a142215a36a3888e30d0a9eeea9766764e96976',
    8283            'type' => 'library',
    8384            'install_path' => __DIR__ . '/../symfony/polyfill-php72',
    8485            'aliases' => array(),
    85             'reference' => '9a142215a36a3888e30d0a9eeea9766764e96976',
    8686            'dev_requirement' => false,
    8787        ),
     
    8989            'pretty_version' => '1.19.1',
    9090            'version' => '1.19.1.0',
     91            'reference' => '3e213fbd3587eb36adec2d5a081824c4722a0acf',
    9192            'type' => 'library',
    9293            'install_path' => __DIR__ . '/../timber/timber',
    9394            'aliases' => array(),
    94             'reference' => '3e213fbd3587eb36adec2d5a081824c4722a0acf',
    9595            'dev_requirement' => false,
    9696        ),
     
    9898            'pretty_version' => 'v1.5.0',
    9999            'version' => '1.5.0.0',
     100            'reference' => '2c243643f59132194458bd03c745b079bbb12e78',
    100101            'type' => 'library',
    101102            'install_path' => __DIR__ . '/../twig/cache-extension',
    102103            'aliases' => array(),
    103             'reference' => '2c243643f59132194458bd03c745b079bbb12e78',
    104104            'dev_requirement' => false,
    105105        ),
     
    107107            'pretty_version' => 'v2.14.11',
    108108            'version' => '2.14.11.0',
     109            'reference' => '66baa66f29ee30e487e05f1679903e36eb01d727',
    109110            'type' => 'library',
    110111            'install_path' => __DIR__ . '/../twig/twig',
    111112            'aliases' => array(),
    112             'reference' => '66baa66f29ee30e487e05f1679903e36eb01d727',
    113113            'dev_requirement' => false,
    114114        ),
     
    116116            'pretty_version' => '0.8.1',
    117117            'version' => '0.8.1.0',
     118            'reference' => '02eb866668f5478d794547aa79e73dd92a989ad9',
    118119            'type' => 'library',
    119120            'install_path' => __DIR__ . '/../upstatement/routes',
    120121            'aliases' => array(),
    121             'reference' => '02eb866668f5478d794547aa79e73dd92a989ad9',
    122122            'dev_requirement' => false,
    123123        ),
Note: See TracChangeset for help on using the changeset viewer.