Plugin Directory

Changeset 2620435


Ignore:
Timestamp:
10/26/2021 11:35:59 PM (4 years ago)
Author:
juvodesign
Message:

Update to version 2.0.9 from GitHub

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

Legend:

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

    r2596119 r2620435  
    88 * Text Domain:     juvo-mail-editor
    99 * Domain Path:     /languages
    10  * Version:         2.0.8
     10 * Version:         2.0.9
    1111 */
    1212
  • juvo-mail-editor/tags/2.0.9/readme.txt

    r2596119 r2620435  
    44License: GPLv2 or later
    55Tested up to: 5.8
    6 Stable tag: 2.0.8
     6Stable tag: 2.0.9
    77
    88JUVO Mail Editor helps to modify the standard WordPress Mailings and allows adding dynamic mail triggers.
  • juvo-mail-editor/tags/2.0.9/src/Mails/Password_Reset_Admin.php

    r2594645 r2620435  
    3232        $relay->sendMails();
    3333
    34         return $message;
     34        return "";
    3535    }
    3636
  • juvo-mail-editor/tags/2.0.9/vendor/autoload.php

    r2594645 r2620435  
    55require_once __DIR__ . '/composer/autoload_real.php';
    66
    7 return ComposerAutoloaderInit990c6fbbc0ba7c8aa1270fef6d0dc357::getLoader();
     7return ComposerAutoloaderInit1f612171edf97795af261ad0f1b361da::getLoader();
  • juvo-mail-editor/tags/2.0.9/vendor/composer/ClassLoader.php

    r2578760 r2620435  
    4343class ClassLoader
    4444{
     45    /** @var ?string */
    4546    private $vendorDir;
    4647
    4748    // PSR-4
     49    /**
     50     * @var array[]
     51     * @psalm-var array<string, array<string, int>>
     52     */
    4853    private $prefixLengthsPsr4 = array();
     54    /**
     55     * @var array[]
     56     * @psalm-var array<string, array<int, string>>
     57     */
    4958    private $prefixDirsPsr4 = array();
     59    /**
     60     * @var array[]
     61     * @psalm-var array<string, string>
     62     */
    5063    private $fallbackDirsPsr4 = array();
    5164
    5265    // PSR-0
     66    /**
     67     * @var array[]
     68     * @psalm-var array<string, array<string, string[]>>
     69     */
    5370    private $prefixesPsr0 = array();
     71    /**
     72     * @var array[]
     73     * @psalm-var array<string, string>
     74     */
    5475    private $fallbackDirsPsr0 = array();
    5576
     77    /** @var bool */
    5678    private $useIncludePath = false;
     79
     80    /**
     81     * @var string[]
     82     * @psalm-var array<string, string>
     83     */
    5784    private $classMap = array();
     85
     86    /** @var bool */
    5887    private $classMapAuthoritative = false;
     88
     89    /**
     90     * @var bool[]
     91     * @psalm-var array<string, bool>
     92     */
    5993    private $missingClasses = array();
     94
     95    /** @var ?string */
    6096    private $apcuPrefix;
    6197
     98    /**
     99     * @var self[]
     100     */
    62101    private static $registeredLoaders = array();
    63102
     103    /**
     104     * @param ?string $vendorDir
     105     */
    64106    public function __construct($vendorDir = null)
    65107    {
     
    67109    }
    68110
     111    /**
     112     * @return string[]
     113     */
    69114    public function getPrefixes()
    70115    {
     
    76121    }
    77122
     123    /**
     124     * @return array[]
     125     * @psalm-return array<string, array<int, string>>
     126     */
    78127    public function getPrefixesPsr4()
    79128    {
     
    81130    }
    82131
     132    /**
     133     * @return array[]
     134     * @psalm-return array<string, string>
     135     */
    83136    public function getFallbackDirs()
    84137    {
     
    86139    }
    87140
     141    /**
     142     * @return array[]
     143     * @psalm-return array<string, string>
     144     */
    88145    public function getFallbackDirsPsr4()
    89146    {
     
    91148    }
    92149
     150    /**
     151     * @return string[] Array of classname => path
     152     * @psalm-var array<string, string>
     153     */
    93154    public function getClassMap()
    94155    {
     
    97158
    98159    /**
    99      * @param array $classMap Class to filename map
     160     * @param string[] $classMap Class to filename map
     161     * @psalm-param array<string, string> $classMap
     162     *
     163     * @return void
    100164     */
    101165    public function addClassMap(array $classMap)
     
    112176     * appending or prepending to the ones previously set for this prefix.
    113177     *
    114      * @param string       $prefix  The prefix
    115      * @param array|string $paths   The PSR-0 root directories
    116      * @param bool         $prepend Whether to prepend the directories
     178     * @param string          $prefix  The prefix
     179     * @param string[]|string $paths   The PSR-0 root directories
     180     * @param bool            $prepend Whether to prepend the directories
     181     *
     182     * @return void
    117183     */
    118184    public function add($prefix, $paths, $prepend = false)
     
    157223     * appending or prepending to the ones previously set for this namespace.
    158224     *
    159      * @param string       $prefix  The prefix/namespace, with trailing '\\'
    160      * @param array|string $paths   The PSR-4 base directories
    161      * @param bool         $prepend Whether to prepend the directories
     225     * @param string          $prefix  The prefix/namespace, with trailing '\\'
     226     * @param string[]|string $paths   The PSR-4 base directories
     227     * @param bool            $prepend Whether to prepend the directories
    162228     *
    163229     * @throws \InvalidArgumentException
     230     *
     231     * @return void
    164232     */
    165233    public function addPsr4($prefix, $paths, $prepend = false)
     
    205273     * replacing any others previously set for this prefix.
    206274     *
    207      * @param string       $prefix The prefix
    208      * @param array|string $paths  The PSR-0 base directories
     275     * @param string          $prefix The prefix
     276     * @param string[]|string $paths  The PSR-0 base directories
     277     *
     278     * @return void
    209279     */
    210280    public function set($prefix, $paths)
     
    221291     * replacing any others previously set for this namespace.
    222292     *
    223      * @param string       $prefix The prefix/namespace, with trailing '\\'
    224      * @param array|string $paths  The PSR-4 base directories
     293     * @param string          $prefix The prefix/namespace, with trailing '\\'
     294     * @param string[]|string $paths  The PSR-4 base directories
    225295     *
    226296     * @throws \InvalidArgumentException
     297     *
     298     * @return void
    227299     */
    228300    public function setPsr4($prefix, $paths)
     
    244316     *
    245317     * @param bool $useIncludePath
     318     *
     319     * @return void
    246320     */
    247321    public function setUseIncludePath($useIncludePath)
     
    266340     *
    267341     * @param bool $classMapAuthoritative
     342     *
     343     * @return void
    268344     */
    269345    public function setClassMapAuthoritative($classMapAuthoritative)
     
    286362     *
    287363     * @param string|null $apcuPrefix
     364     *
     365     * @return void
    288366     */
    289367    public function setApcuPrefix($apcuPrefix)
     
    306384     *
    307385     * @param bool $prepend Whether to prepend the autoloader or not
     386     *
     387     * @return void
    308388     */
    309389    public function register($prepend = false)
     
    325405    /**
    326406     * Unregisters this instance as an autoloader.
     407     *
     408     * @return void
    327409     */
    328410    public function unregister()
     
    404486    }
    405487
     488    /**
     489     * @param  string       $class
     490     * @param  string       $ext
     491     * @return string|false
     492     */
    406493    private function findFileWithExtension($class, $ext)
    407494    {
     
    475562 *
    476563 * Prevents access to $this/self from included files.
     564 *
     565 * @param  string $file
     566 * @return void
     567 * @private
    477568 */
    478569function includeFile($file)
  • juvo-mail-editor/tags/2.0.9/vendor/composer/InstalledVersions.php

    r2578760 r2620435  
    2121 * See also https://getcomposer.org/doc/07-runtime.md#installed-versions
    2222 *
    23  * To require it's presence, you can require `composer-runtime-api ^2.0`
     23 * To require its presence, you can require `composer-runtime-api ^2.0`
    2424 */
    2525class InstalledVersions
     
    229229    /**
    230230     * @return array
    231      * @psalm-return array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string}
     231     * @psalm-return array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}
    232232     */
    233233    public static function getRootPackage()
     
    243243     * @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.
    244244     * @return array[]
    245      * @psalm-return array{root: array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string}, versions: array<string, array{dev_requirement: bool, pretty_version?: string, version?: string, aliases?: string[], reference?: string, replaced?: string[], provided?: string[], install_path?: string}>}
     245     * @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}>}
    246246     */
    247247    public static function getRawData()
     
    266266     *
    267267     * @return array[]
    268      * @psalm-return list<array{root: array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string}, versions: array<string, array{dev_requirement: bool, pretty_version?: string, version?: string, aliases?: string[], reference?: string, replaced?: string[], provided?: string[], install_path?: string}>}>
     268     * @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}>}>
    269269     */
    270270    public static function getAllRawData()
     
    289289     * @return void
    290290     *
    291      * @psalm-param array{root: array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string}, versions: array<string, array{dev_requirement: bool, pretty_version?: string, version?: string, aliases?: string[], reference?: string, replaced?: string[], provided?: string[], install_path?: string}>} $data
     291     * @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
    292292     */
    293293    public static function reload($data)
     
    299299    /**
    300300     * @return array[]
    301      * @psalm-return list<array{root: array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string}, versions: array<string, array{dev_requirement: bool, pretty_version?: string, version?: string, aliases?: string[], reference?: string, replaced?: string[], provided?: string[], install_path?: string}>}>
     301     * @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}>}>
    302302     */
    303303    private static function getInstalled()
  • juvo-mail-editor/tags/2.0.9/vendor/composer/autoload_real.php

    r2594645 r2620435  
    33// autoload_real.php @generated by Composer
    44
    5 class ComposerAutoloaderInit990c6fbbc0ba7c8aa1270fef6d0dc357
     5class ComposerAutoloaderInit1f612171edf97795af261ad0f1b361da
    66{
    77    private static $loader;
     
    2525        require __DIR__ . '/platform_check.php';
    2626
    27         spl_autoload_register(array('ComposerAutoloaderInit990c6fbbc0ba7c8aa1270fef6d0dc357', 'loadClassLoader'), true, true);
     27        spl_autoload_register(array('ComposerAutoloaderInit1f612171edf97795af261ad0f1b361da', 'loadClassLoader'), true, true);
    2828        self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(\dirname(__FILE__)));
    29         spl_autoload_unregister(array('ComposerAutoloaderInit990c6fbbc0ba7c8aa1270fef6d0dc357', 'loadClassLoader'));
     29        spl_autoload_unregister(array('ComposerAutoloaderInit1f612171edf97795af261ad0f1b361da', 'loadClassLoader'));
    3030
    3131        $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
     
    3333            require __DIR__ . '/autoload_static.php';
    3434
    35             call_user_func(\Composer\Autoload\ComposerStaticInit990c6fbbc0ba7c8aa1270fef6d0dc357::getInitializer($loader));
     35            call_user_func(\Composer\Autoload\ComposerStaticInit1f612171edf97795af261ad0f1b361da::getInitializer($loader));
    3636        } else {
    3737            $map = require __DIR__ . '/autoload_namespaces.php';
     
    5454
    5555        if ($useStaticLoader) {
    56             $includeFiles = Composer\Autoload\ComposerStaticInit990c6fbbc0ba7c8aa1270fef6d0dc357::$files;
     56            $includeFiles = Composer\Autoload\ComposerStaticInit1f612171edf97795af261ad0f1b361da::$files;
    5757        } else {
    5858            $includeFiles = require __DIR__ . '/autoload_files.php';
    5959        }
    6060        foreach ($includeFiles as $fileIdentifier => $file) {
    61             composerRequire990c6fbbc0ba7c8aa1270fef6d0dc357($fileIdentifier, $file);
     61            composerRequire1f612171edf97795af261ad0f1b361da($fileIdentifier, $file);
    6262        }
    6363
     
    6666}
    6767
    68 function composerRequire990c6fbbc0ba7c8aa1270fef6d0dc357($fileIdentifier, $file)
     68function composerRequire1f612171edf97795af261ad0f1b361da($fileIdentifier, $file)
    6969{
    7070    if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
  • juvo-mail-editor/tags/2.0.9/vendor/composer/autoload_static.php

    r2594645 r2620435  
    55namespace Composer\Autoload;
    66
    7 class ComposerStaticInit990c6fbbc0ba7c8aa1270fef6d0dc357
     7class ComposerStaticInit1f612171edf97795af261ad0f1b361da
    88{
    99    public static $files = array (
     
    6969    {
    7070        return \Closure::bind(function () use ($loader) {
    71             $loader->prefixLengthsPsr4 = ComposerStaticInit990c6fbbc0ba7c8aa1270fef6d0dc357::$prefixLengthsPsr4;
    72             $loader->prefixDirsPsr4 = ComposerStaticInit990c6fbbc0ba7c8aa1270fef6d0dc357::$prefixDirsPsr4;
    73             $loader->classMap = ComposerStaticInit990c6fbbc0ba7c8aa1270fef6d0dc357::$classMap;
     71            $loader->prefixLengthsPsr4 = ComposerStaticInit1f612171edf97795af261ad0f1b361da::$prefixLengthsPsr4;
     72            $loader->prefixDirsPsr4 = ComposerStaticInit1f612171edf97795af261ad0f1b361da::$prefixDirsPsr4;
     73            $loader->classMap = ComposerStaticInit1f612171edf97795af261ad0f1b361da::$classMap;
    7474
    7575        }, null, ClassLoader::class);
  • juvo-mail-editor/tags/2.0.9/vendor/composer/installed.php

    r2594645 r2620435  
    66        'install_path' => __DIR__ . '/../../',
    77        'aliases' => array(),
    8         'reference' => '23fbc3c87a9928b859915bae4bb51cae869b79e9',
     8        'reference' => '3b8661dce341f19782d83b248ff88403af8f163b',
    99        'name' => 'juvo/mail-editor',
    1010        'dev' => true,
     
    3232            'install_path' => __DIR__ . '/../../',
    3333            'aliases' => array(),
    34             'reference' => '23fbc3c87a9928b859915bae4bb51cae869b79e9',
     34            'reference' => '3b8661dce341f19782d83b248ff88403af8f163b',
    3535            'dev_requirement' => false,
    3636        ),
  • juvo-mail-editor/trunk/juvo-mail-editor.php

    r2596119 r2620435  
    88 * Text Domain:     juvo-mail-editor
    99 * Domain Path:     /languages
    10  * Version:         2.0.8
     10 * Version:         2.0.9
    1111 */
    1212
  • juvo-mail-editor/trunk/readme.txt

    r2596119 r2620435  
    44License: GPLv2 or later
    55Tested up to: 5.8
    6 Stable tag: 2.0.8
     6Stable tag: 2.0.9
    77
    88JUVO Mail Editor helps to modify the standard WordPress Mailings and allows adding dynamic mail triggers.
  • juvo-mail-editor/trunk/src/Mails/Password_Reset_Admin.php

    r2594645 r2620435  
    3232        $relay->sendMails();
    3333
    34         return $message;
     34        return "";
    3535    }
    3636
  • juvo-mail-editor/trunk/vendor/autoload.php

    r2594645 r2620435  
    55require_once __DIR__ . '/composer/autoload_real.php';
    66
    7 return ComposerAutoloaderInit990c6fbbc0ba7c8aa1270fef6d0dc357::getLoader();
     7return ComposerAutoloaderInit1f612171edf97795af261ad0f1b361da::getLoader();
  • juvo-mail-editor/trunk/vendor/composer/ClassLoader.php

    r2578760 r2620435  
    4343class ClassLoader
    4444{
     45    /** @var ?string */
    4546    private $vendorDir;
    4647
    4748    // PSR-4
     49    /**
     50     * @var array[]
     51     * @psalm-var array<string, array<string, int>>
     52     */
    4853    private $prefixLengthsPsr4 = array();
     54    /**
     55     * @var array[]
     56     * @psalm-var array<string, array<int, string>>
     57     */
    4958    private $prefixDirsPsr4 = array();
     59    /**
     60     * @var array[]
     61     * @psalm-var array<string, string>
     62     */
    5063    private $fallbackDirsPsr4 = array();
    5164
    5265    // PSR-0
     66    /**
     67     * @var array[]
     68     * @psalm-var array<string, array<string, string[]>>
     69     */
    5370    private $prefixesPsr0 = array();
     71    /**
     72     * @var array[]
     73     * @psalm-var array<string, string>
     74     */
    5475    private $fallbackDirsPsr0 = array();
    5576
     77    /** @var bool */
    5678    private $useIncludePath = false;
     79
     80    /**
     81     * @var string[]
     82     * @psalm-var array<string, string>
     83     */
    5784    private $classMap = array();
     85
     86    /** @var bool */
    5887    private $classMapAuthoritative = false;
     88
     89    /**
     90     * @var bool[]
     91     * @psalm-var array<string, bool>
     92     */
    5993    private $missingClasses = array();
     94
     95    /** @var ?string */
    6096    private $apcuPrefix;
    6197
     98    /**
     99     * @var self[]
     100     */
    62101    private static $registeredLoaders = array();
    63102
     103    /**
     104     * @param ?string $vendorDir
     105     */
    64106    public function __construct($vendorDir = null)
    65107    {
     
    67109    }
    68110
     111    /**
     112     * @return string[]
     113     */
    69114    public function getPrefixes()
    70115    {
     
    76121    }
    77122
     123    /**
     124     * @return array[]
     125     * @psalm-return array<string, array<int, string>>
     126     */
    78127    public function getPrefixesPsr4()
    79128    {
     
    81130    }
    82131
     132    /**
     133     * @return array[]
     134     * @psalm-return array<string, string>
     135     */
    83136    public function getFallbackDirs()
    84137    {
     
    86139    }
    87140
     141    /**
     142     * @return array[]
     143     * @psalm-return array<string, string>
     144     */
    88145    public function getFallbackDirsPsr4()
    89146    {
     
    91148    }
    92149
     150    /**
     151     * @return string[] Array of classname => path
     152     * @psalm-var array<string, string>
     153     */
    93154    public function getClassMap()
    94155    {
     
    97158
    98159    /**
    99      * @param array $classMap Class to filename map
     160     * @param string[] $classMap Class to filename map
     161     * @psalm-param array<string, string> $classMap
     162     *
     163     * @return void
    100164     */
    101165    public function addClassMap(array $classMap)
     
    112176     * appending or prepending to the ones previously set for this prefix.
    113177     *
    114      * @param string       $prefix  The prefix
    115      * @param array|string $paths   The PSR-0 root directories
    116      * @param bool         $prepend Whether to prepend the directories
     178     * @param string          $prefix  The prefix
     179     * @param string[]|string $paths   The PSR-0 root directories
     180     * @param bool            $prepend Whether to prepend the directories
     181     *
     182     * @return void
    117183     */
    118184    public function add($prefix, $paths, $prepend = false)
     
    157223     * appending or prepending to the ones previously set for this namespace.
    158224     *
    159      * @param string       $prefix  The prefix/namespace, with trailing '\\'
    160      * @param array|string $paths   The PSR-4 base directories
    161      * @param bool         $prepend Whether to prepend the directories
     225     * @param string          $prefix  The prefix/namespace, with trailing '\\'
     226     * @param string[]|string $paths   The PSR-4 base directories
     227     * @param bool            $prepend Whether to prepend the directories
    162228     *
    163229     * @throws \InvalidArgumentException
     230     *
     231     * @return void
    164232     */
    165233    public function addPsr4($prefix, $paths, $prepend = false)
     
    205273     * replacing any others previously set for this prefix.
    206274     *
    207      * @param string       $prefix The prefix
    208      * @param array|string $paths  The PSR-0 base directories
     275     * @param string          $prefix The prefix
     276     * @param string[]|string $paths  The PSR-0 base directories
     277     *
     278     * @return void
    209279     */
    210280    public function set($prefix, $paths)
     
    221291     * replacing any others previously set for this namespace.
    222292     *
    223      * @param string       $prefix The prefix/namespace, with trailing '\\'
    224      * @param array|string $paths  The PSR-4 base directories
     293     * @param string          $prefix The prefix/namespace, with trailing '\\'
     294     * @param string[]|string $paths  The PSR-4 base directories
    225295     *
    226296     * @throws \InvalidArgumentException
     297     *
     298     * @return void
    227299     */
    228300    public function setPsr4($prefix, $paths)
     
    244316     *
    245317     * @param bool $useIncludePath
     318     *
     319     * @return void
    246320     */
    247321    public function setUseIncludePath($useIncludePath)
     
    266340     *
    267341     * @param bool $classMapAuthoritative
     342     *
     343     * @return void
    268344     */
    269345    public function setClassMapAuthoritative($classMapAuthoritative)
     
    286362     *
    287363     * @param string|null $apcuPrefix
     364     *
     365     * @return void
    288366     */
    289367    public function setApcuPrefix($apcuPrefix)
     
    306384     *
    307385     * @param bool $prepend Whether to prepend the autoloader or not
     386     *
     387     * @return void
    308388     */
    309389    public function register($prepend = false)
     
    325405    /**
    326406     * Unregisters this instance as an autoloader.
     407     *
     408     * @return void
    327409     */
    328410    public function unregister()
     
    404486    }
    405487
     488    /**
     489     * @param  string       $class
     490     * @param  string       $ext
     491     * @return string|false
     492     */
    406493    private function findFileWithExtension($class, $ext)
    407494    {
     
    475562 *
    476563 * Prevents access to $this/self from included files.
     564 *
     565 * @param  string $file
     566 * @return void
     567 * @private
    477568 */
    478569function includeFile($file)
  • juvo-mail-editor/trunk/vendor/composer/InstalledVersions.php

    r2578760 r2620435  
    2121 * See also https://getcomposer.org/doc/07-runtime.md#installed-versions
    2222 *
    23  * To require it's presence, you can require `composer-runtime-api ^2.0`
     23 * To require its presence, you can require `composer-runtime-api ^2.0`
    2424 */
    2525class InstalledVersions
     
    229229    /**
    230230     * @return array
    231      * @psalm-return array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string}
     231     * @psalm-return array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}
    232232     */
    233233    public static function getRootPackage()
     
    243243     * @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.
    244244     * @return array[]
    245      * @psalm-return array{root: array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string}, versions: array<string, array{dev_requirement: bool, pretty_version?: string, version?: string, aliases?: string[], reference?: string, replaced?: string[], provided?: string[], install_path?: string}>}
     245     * @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}>}
    246246     */
    247247    public static function getRawData()
     
    266266     *
    267267     * @return array[]
    268      * @psalm-return list<array{root: array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string}, versions: array<string, array{dev_requirement: bool, pretty_version?: string, version?: string, aliases?: string[], reference?: string, replaced?: string[], provided?: string[], install_path?: string}>}>
     268     * @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}>}>
    269269     */
    270270    public static function getAllRawData()
     
    289289     * @return void
    290290     *
    291      * @psalm-param array{root: array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string}, versions: array<string, array{dev_requirement: bool, pretty_version?: string, version?: string, aliases?: string[], reference?: string, replaced?: string[], provided?: string[], install_path?: string}>} $data
     291     * @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
    292292     */
    293293    public static function reload($data)
     
    299299    /**
    300300     * @return array[]
    301      * @psalm-return list<array{root: array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string}, versions: array<string, array{dev_requirement: bool, pretty_version?: string, version?: string, aliases?: string[], reference?: string, replaced?: string[], provided?: string[], install_path?: string}>}>
     301     * @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}>}>
    302302     */
    303303    private static function getInstalled()
  • juvo-mail-editor/trunk/vendor/composer/autoload_real.php

    r2594645 r2620435  
    33// autoload_real.php @generated by Composer
    44
    5 class ComposerAutoloaderInit990c6fbbc0ba7c8aa1270fef6d0dc357
     5class ComposerAutoloaderInit1f612171edf97795af261ad0f1b361da
    66{
    77    private static $loader;
     
    2525        require __DIR__ . '/platform_check.php';
    2626
    27         spl_autoload_register(array('ComposerAutoloaderInit990c6fbbc0ba7c8aa1270fef6d0dc357', 'loadClassLoader'), true, true);
     27        spl_autoload_register(array('ComposerAutoloaderInit1f612171edf97795af261ad0f1b361da', 'loadClassLoader'), true, true);
    2828        self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(\dirname(__FILE__)));
    29         spl_autoload_unregister(array('ComposerAutoloaderInit990c6fbbc0ba7c8aa1270fef6d0dc357', 'loadClassLoader'));
     29        spl_autoload_unregister(array('ComposerAutoloaderInit1f612171edf97795af261ad0f1b361da', 'loadClassLoader'));
    3030
    3131        $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
     
    3333            require __DIR__ . '/autoload_static.php';
    3434
    35             call_user_func(\Composer\Autoload\ComposerStaticInit990c6fbbc0ba7c8aa1270fef6d0dc357::getInitializer($loader));
     35            call_user_func(\Composer\Autoload\ComposerStaticInit1f612171edf97795af261ad0f1b361da::getInitializer($loader));
    3636        } else {
    3737            $map = require __DIR__ . '/autoload_namespaces.php';
     
    5454
    5555        if ($useStaticLoader) {
    56             $includeFiles = Composer\Autoload\ComposerStaticInit990c6fbbc0ba7c8aa1270fef6d0dc357::$files;
     56            $includeFiles = Composer\Autoload\ComposerStaticInit1f612171edf97795af261ad0f1b361da::$files;
    5757        } else {
    5858            $includeFiles = require __DIR__ . '/autoload_files.php';
    5959        }
    6060        foreach ($includeFiles as $fileIdentifier => $file) {
    61             composerRequire990c6fbbc0ba7c8aa1270fef6d0dc357($fileIdentifier, $file);
     61            composerRequire1f612171edf97795af261ad0f1b361da($fileIdentifier, $file);
    6262        }
    6363
     
    6666}
    6767
    68 function composerRequire990c6fbbc0ba7c8aa1270fef6d0dc357($fileIdentifier, $file)
     68function composerRequire1f612171edf97795af261ad0f1b361da($fileIdentifier, $file)
    6969{
    7070    if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
  • juvo-mail-editor/trunk/vendor/composer/autoload_static.php

    r2594645 r2620435  
    55namespace Composer\Autoload;
    66
    7 class ComposerStaticInit990c6fbbc0ba7c8aa1270fef6d0dc357
     7class ComposerStaticInit1f612171edf97795af261ad0f1b361da
    88{
    99    public static $files = array (
     
    6969    {
    7070        return \Closure::bind(function () use ($loader) {
    71             $loader->prefixLengthsPsr4 = ComposerStaticInit990c6fbbc0ba7c8aa1270fef6d0dc357::$prefixLengthsPsr4;
    72             $loader->prefixDirsPsr4 = ComposerStaticInit990c6fbbc0ba7c8aa1270fef6d0dc357::$prefixDirsPsr4;
    73             $loader->classMap = ComposerStaticInit990c6fbbc0ba7c8aa1270fef6d0dc357::$classMap;
     71            $loader->prefixLengthsPsr4 = ComposerStaticInit1f612171edf97795af261ad0f1b361da::$prefixLengthsPsr4;
     72            $loader->prefixDirsPsr4 = ComposerStaticInit1f612171edf97795af261ad0f1b361da::$prefixDirsPsr4;
     73            $loader->classMap = ComposerStaticInit1f612171edf97795af261ad0f1b361da::$classMap;
    7474
    7575        }, null, ClassLoader::class);
  • juvo-mail-editor/trunk/vendor/composer/installed.php

    r2594645 r2620435  
    66        'install_path' => __DIR__ . '/../../',
    77        'aliases' => array(),
    8         'reference' => '23fbc3c87a9928b859915bae4bb51cae869b79e9',
     8        'reference' => '3b8661dce341f19782d83b248ff88403af8f163b',
    99        'name' => 'juvo/mail-editor',
    1010        'dev' => true,
     
    3232            'install_path' => __DIR__ . '/../../',
    3333            'aliases' => array(),
    34             'reference' => '23fbc3c87a9928b859915bae4bb51cae869b79e9',
     34            'reference' => '3b8661dce341f19782d83b248ff88403af8f163b',
    3535            'dev_requirement' => false,
    3636        ),
Note: See TracChangeset for help on using the changeset viewer.