Changeset 2791814
- Timestamp:
- 09/29/2022 10:59:44 AM (4 years ago)
- Location:
- juvo-mail-editor
- Files:
-
- 18 edited
- 1 copied
-
tags/3.0.12 (copied) (copied from juvo-mail-editor/trunk)
-
tags/3.0.12/juvo-mail-editor.php (modified) (1 diff)
-
tags/3.0.12/readme.txt (modified) (1 diff)
-
tags/3.0.12/src/Mails/Password_Changed.php (modified) (2 diffs)
-
tags/3.0.12/src/Mails/Password_Reset.php (modified) (2 diffs)
-
tags/3.0.12/vendor/autoload.php (modified) (1 diff)
-
tags/3.0.12/vendor/composer/InstalledVersions.php (modified) (7 diffs)
-
tags/3.0.12/vendor/composer/autoload_real.php (modified) (3 diffs)
-
tags/3.0.12/vendor/composer/autoload_static.php (modified) (2 diffs)
-
tags/3.0.12/vendor/composer/installed.php (modified) (11 diffs)
-
trunk/juvo-mail-editor.php (modified) (1 diff)
-
trunk/readme.txt (modified) (1 diff)
-
trunk/src/Mails/Password_Changed.php (modified) (2 diffs)
-
trunk/src/Mails/Password_Reset.php (modified) (2 diffs)
-
trunk/vendor/autoload.php (modified) (1 diff)
-
trunk/vendor/composer/InstalledVersions.php (modified) (7 diffs)
-
trunk/vendor/composer/autoload_real.php (modified) (3 diffs)
-
trunk/vendor/composer/autoload_static.php (modified) (2 diffs)
-
trunk/vendor/composer/installed.php (modified) (11 diffs)
Legend:
- Unmodified
- Added
- Removed
-
juvo-mail-editor/tags/3.0.12/juvo-mail-editor.php
r2717851 r2791814 8 8 * Text Domain: juvo-mail-editor 9 9 * Domain Path: /languages 10 * Version: 3.0.1 110 * Version: 3.0.12 11 11 */ 12 12 -
juvo-mail-editor/tags/3.0.12/readme.txt
r2717851 r2791814 4 4 License: GPLv2 or later 5 5 Tested up to: 5.9 6 Stable tag: 3.0.1 16 Stable tag: 3.0.12 7 7 8 8 JUVO 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 14 14 public function addCustomFields( CMB2 $cmb ): CMB2 { 15 15 16 /** There are usecases to allow sending this mail to other recipients 16 17 if ( $cmb->object_id() && has_term( $this->getTrigger(), Mail_Trigger_TAX::TAXONOMY_NAME, $cmb->object_id() ) ) { 17 18 … … 35 36 36 37 } 38 **/ 37 39 38 40 return $cmb; -
juvo-mail-editor/tags/3.0.12/src/Mails/Password_Reset.php
r2717851 r2791814 18 18 public function addCustomFields( CMB2 $cmb ): CMB2 { 19 19 20 /** There are usecases to allow sending this mail to other recipients 20 21 if ( $cmb->object_id() && has_term( $this->getTrigger(), Mail_Trigger_TAX::TAXONOMY_NAME, $cmb->object_id() ) ) { 21 22 … … 39 40 40 41 } 42 **/ 41 43 42 44 return $cmb; -
juvo-mail-editor/tags/3.0.12/vendor/autoload.php
r2717851 r2791814 10 10 require_once __DIR__ . '/composer/autoload_real.php'; 11 11 12 return ComposerAutoloaderInit a776181bfd2a06c572478c35b9d594a7::getLoader();12 return ComposerAutoloaderInit7d4bf1851cad0eb389f37a767405692e::getLoader(); -
juvo-mail-editor/tags/3.0.12/vendor/composer/InstalledVersions.php
r2706810 r2791814 29 29 /** 30 30 * @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{}|null31 * @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 32 32 */ 33 33 private static $installed; … … 40 40 /** 41 41 * @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[]}>}> 43 43 */ 44 44 private static $installedByVendor = array(); … … 244 244 /** 245 245 * @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} 247 247 */ 248 248 public static function getRootPackage() … … 258 258 * @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. 259 259 * @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[]}>} 261 261 */ 262 262 public static function getRawData() … … 281 281 * 282 282 * @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[]}>}> 284 284 */ 285 285 public static function getAllRawData() … … 304 304 * @return void 305 305 * 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}>} $data306 * @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 307 307 */ 308 308 public static function reload($data) … … 314 314 /** 315 315 * @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[]}>}> 317 317 */ 318 318 private static function getInstalled() -
juvo-mail-editor/tags/3.0.12/vendor/composer/autoload_real.php
r2717851 r2791814 3 3 // autoload_real.php @generated by Composer 4 4 5 class ComposerAutoloaderInit a776181bfd2a06c572478c35b9d594a75 class ComposerAutoloaderInit7d4bf1851cad0eb389f37a767405692e 6 6 { 7 7 private static $loader; … … 23 23 } 24 24 25 spl_autoload_register(array('ComposerAutoloaderInit a776181bfd2a06c572478c35b9d594a7', 'loadClassLoader'), true, true);25 spl_autoload_register(array('ComposerAutoloaderInit7d4bf1851cad0eb389f37a767405692e', 'loadClassLoader'), true, true); 26 26 self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__)); 27 spl_autoload_unregister(array('ComposerAutoloaderInit a776181bfd2a06c572478c35b9d594a7', 'loadClassLoader'));27 spl_autoload_unregister(array('ComposerAutoloaderInit7d4bf1851cad0eb389f37a767405692e', 'loadClassLoader')); 28 28 29 29 require __DIR__ . '/autoload_static.php'; 30 call_user_func(\Composer\Autoload\ComposerStaticInit a776181bfd2a06c572478c35b9d594a7::getInitializer($loader));30 call_user_func(\Composer\Autoload\ComposerStaticInit7d4bf1851cad0eb389f37a767405692e::getInitializer($loader)); 31 31 32 32 $loader->register(true); 33 33 34 $includeFiles = \Composer\Autoload\ComposerStaticInit a776181bfd2a06c572478c35b9d594a7::$files;34 $includeFiles = \Composer\Autoload\ComposerStaticInit7d4bf1851cad0eb389f37a767405692e::$files; 35 35 foreach ($includeFiles as $fileIdentifier => $file) { 36 composerRequire a776181bfd2a06c572478c35b9d594a7($fileIdentifier, $file);36 composerRequire7d4bf1851cad0eb389f37a767405692e($fileIdentifier, $file); 37 37 } 38 38 … … 46 46 * @return void 47 47 */ 48 function composerRequire a776181bfd2a06c572478c35b9d594a7($fileIdentifier, $file)48 function composerRequire7d4bf1851cad0eb389f37a767405692e($fileIdentifier, $file) 49 49 { 50 50 if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) { -
juvo-mail-editor/tags/3.0.12/vendor/composer/autoload_static.php
r2717851 r2791814 5 5 namespace Composer\Autoload; 6 6 7 class ComposerStaticInit a776181bfd2a06c572478c35b9d594a77 class ComposerStaticInit7d4bf1851cad0eb389f37a767405692e 8 8 { 9 9 public static $files = array ( … … 100 100 { 101 101 return \Closure::bind(function () use ($loader) { 102 $loader->prefixLengthsPsr4 = ComposerStaticInit a776181bfd2a06c572478c35b9d594a7::$prefixLengthsPsr4;103 $loader->prefixDirsPsr4 = ComposerStaticInit a776181bfd2a06c572478c35b9d594a7::$prefixDirsPsr4;104 $loader->fallbackDirsPsr4 = ComposerStaticInit a776181bfd2a06c572478c35b9d594a7::$fallbackDirsPsr4;105 $loader->prefixesPsr0 = ComposerStaticInit a776181bfd2a06c572478c35b9d594a7::$prefixesPsr0;106 $loader->classMap = ComposerStaticInit a776181bfd2a06c572478c35b9d594a7::$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; 107 107 108 108 }, null, ClassLoader::class); -
juvo-mail-editor/tags/3.0.12/vendor/composer/installed.php
r2717851 r2791814 1 1 <?php return array( 2 2 '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', 5 7 'type' => 'wordpress-plugin', 6 8 'install_path' => __DIR__ . '/../../', 7 9 'aliases' => array(), 8 'reference' => '5a487cbf45f5c98e4fcecf4a8becee2a7e7bee92',9 'name' => 'juvo/mail-editor',10 10 'dev' => false, 11 11 ), … … 14 14 'pretty_version' => '2.0.2', 15 15 'version' => '2.0.2.0', 16 'reference' => 'f6fede4f94ced7c22ba63a9b8af0bf2dc38e3cb2', 16 17 'type' => 'library', 17 18 'install_path' => __DIR__ . '/../altorouter/altorouter', 18 19 'aliases' => array(), 19 'reference' => 'f6fede4f94ced7c22ba63a9b8af0bf2dc38e3cb2',20 20 'dev_requirement' => false, 21 21 ), … … 23 23 'pretty_version' => 'v2.9.0', 24 24 'version' => '2.9.0.0', 25 'reference' => 'cacbc8cedbfdf8ffe0e840858e6860f9333c33f2', 25 26 'type' => 'wordpress-plugin', 26 27 'install_path' => __DIR__ . '/../cmb2/cmb2', 27 28 'aliases' => array(), 28 'reference' => 'cacbc8cedbfdf8ffe0e840858e6860f9333c33f2',29 29 'dev_requirement' => false, 30 30 ), … … 32 32 'pretty_version' => 'v1.12.0', 33 33 'version' => '1.12.0.0', 34 'reference' => 'd20a64ed3c94748397ff5973488761b22f6d3f19', 34 35 'type' => 'composer-plugin', 35 36 'install_path' => __DIR__ . '/./installers', 36 37 'aliases' => array(), 37 'reference' => 'd20a64ed3c94748397ff5973488761b22f6d3f19',38 38 'dev_requirement' => false, 39 39 ), 40 40 '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', 43 44 'type' => 'wordpress-plugin', 44 45 'install_path' => __DIR__ . '/../../', 45 46 'aliases' => array(), 46 'reference' => '5a487cbf45f5c98e4fcecf4a8becee2a7e7bee92',47 47 'dev_requirement' => false, 48 48 ), … … 62 62 'pretty_version' => 'v1.24.0', 63 63 'version' => '1.24.0.0', 64 'reference' => '30885182c981ab175d4d034db0f6f469898070ab', 64 65 'type' => 'library', 65 66 'install_path' => __DIR__ . '/../symfony/polyfill-ctype', 66 67 'aliases' => array(), 67 'reference' => '30885182c981ab175d4d034db0f6f469898070ab',68 68 'dev_requirement' => false, 69 69 ), … … 71 71 'pretty_version' => 'v1.20.0', 72 72 'version' => '1.20.0.0', 73 'reference' => '39d483bdf39be819deabf04ec872eb0b2410b531', 73 74 'type' => 'library', 74 75 'install_path' => __DIR__ . '/../symfony/polyfill-mbstring', 75 76 'aliases' => array(), 76 'reference' => '39d483bdf39be819deabf04ec872eb0b2410b531',77 77 'dev_requirement' => false, 78 78 ), … … 80 80 'pretty_version' => 'v1.24.0', 81 81 'version' => '1.24.0.0', 82 'reference' => '9a142215a36a3888e30d0a9eeea9766764e96976', 82 83 'type' => 'library', 83 84 'install_path' => __DIR__ . '/../symfony/polyfill-php72', 84 85 'aliases' => array(), 85 'reference' => '9a142215a36a3888e30d0a9eeea9766764e96976',86 86 'dev_requirement' => false, 87 87 ), … … 89 89 'pretty_version' => '1.19.1', 90 90 'version' => '1.19.1.0', 91 'reference' => '3e213fbd3587eb36adec2d5a081824c4722a0acf', 91 92 'type' => 'library', 92 93 'install_path' => __DIR__ . '/../timber/timber', 93 94 'aliases' => array(), 94 'reference' => '3e213fbd3587eb36adec2d5a081824c4722a0acf',95 95 'dev_requirement' => false, 96 96 ), … … 98 98 'pretty_version' => 'v1.5.0', 99 99 'version' => '1.5.0.0', 100 'reference' => '2c243643f59132194458bd03c745b079bbb12e78', 100 101 'type' => 'library', 101 102 'install_path' => __DIR__ . '/../twig/cache-extension', 102 103 'aliases' => array(), 103 'reference' => '2c243643f59132194458bd03c745b079bbb12e78',104 104 'dev_requirement' => false, 105 105 ), … … 107 107 'pretty_version' => 'v2.14.11', 108 108 'version' => '2.14.11.0', 109 'reference' => '66baa66f29ee30e487e05f1679903e36eb01d727', 109 110 'type' => 'library', 110 111 'install_path' => __DIR__ . '/../twig/twig', 111 112 'aliases' => array(), 112 'reference' => '66baa66f29ee30e487e05f1679903e36eb01d727',113 113 'dev_requirement' => false, 114 114 ), … … 116 116 'pretty_version' => '0.8.1', 117 117 'version' => '0.8.1.0', 118 'reference' => '02eb866668f5478d794547aa79e73dd92a989ad9', 118 119 'type' => 'library', 119 120 'install_path' => __DIR__ . '/../upstatement/routes', 120 121 'aliases' => array(), 121 'reference' => '02eb866668f5478d794547aa79e73dd92a989ad9',122 122 'dev_requirement' => false, 123 123 ), -
juvo-mail-editor/trunk/juvo-mail-editor.php
r2717851 r2791814 8 8 * Text Domain: juvo-mail-editor 9 9 * Domain Path: /languages 10 * Version: 3.0.1 110 * Version: 3.0.12 11 11 */ 12 12 -
juvo-mail-editor/trunk/readme.txt
r2717851 r2791814 4 4 License: GPLv2 or later 5 5 Tested up to: 5.9 6 Stable tag: 3.0.1 16 Stable tag: 3.0.12 7 7 8 8 JUVO 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 14 14 public function addCustomFields( CMB2 $cmb ): CMB2 { 15 15 16 /** There are usecases to allow sending this mail to other recipients 16 17 if ( $cmb->object_id() && has_term( $this->getTrigger(), Mail_Trigger_TAX::TAXONOMY_NAME, $cmb->object_id() ) ) { 17 18 … … 35 36 36 37 } 38 **/ 37 39 38 40 return $cmb; -
juvo-mail-editor/trunk/src/Mails/Password_Reset.php
r2717851 r2791814 18 18 public function addCustomFields( CMB2 $cmb ): CMB2 { 19 19 20 /** There are usecases to allow sending this mail to other recipients 20 21 if ( $cmb->object_id() && has_term( $this->getTrigger(), Mail_Trigger_TAX::TAXONOMY_NAME, $cmb->object_id() ) ) { 21 22 … … 39 40 40 41 } 42 **/ 41 43 42 44 return $cmb; -
juvo-mail-editor/trunk/vendor/autoload.php
r2717851 r2791814 10 10 require_once __DIR__ . '/composer/autoload_real.php'; 11 11 12 return ComposerAutoloaderInit a776181bfd2a06c572478c35b9d594a7::getLoader();12 return ComposerAutoloaderInit7d4bf1851cad0eb389f37a767405692e::getLoader(); -
juvo-mail-editor/trunk/vendor/composer/InstalledVersions.php
r2706810 r2791814 29 29 /** 30 30 * @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{}|null31 * @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 32 32 */ 33 33 private static $installed; … … 40 40 /** 41 41 * @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[]}>}> 43 43 */ 44 44 private static $installedByVendor = array(); … … 244 244 /** 245 245 * @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} 247 247 */ 248 248 public static function getRootPackage() … … 258 258 * @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. 259 259 * @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[]}>} 261 261 */ 262 262 public static function getRawData() … … 281 281 * 282 282 * @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[]}>}> 284 284 */ 285 285 public static function getAllRawData() … … 304 304 * @return void 305 305 * 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}>} $data306 * @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 307 307 */ 308 308 public static function reload($data) … … 314 314 /** 315 315 * @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[]}>}> 317 317 */ 318 318 private static function getInstalled() -
juvo-mail-editor/trunk/vendor/composer/autoload_real.php
r2717851 r2791814 3 3 // autoload_real.php @generated by Composer 4 4 5 class ComposerAutoloaderInit a776181bfd2a06c572478c35b9d594a75 class ComposerAutoloaderInit7d4bf1851cad0eb389f37a767405692e 6 6 { 7 7 private static $loader; … … 23 23 } 24 24 25 spl_autoload_register(array('ComposerAutoloaderInit a776181bfd2a06c572478c35b9d594a7', 'loadClassLoader'), true, true);25 spl_autoload_register(array('ComposerAutoloaderInit7d4bf1851cad0eb389f37a767405692e', 'loadClassLoader'), true, true); 26 26 self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__)); 27 spl_autoload_unregister(array('ComposerAutoloaderInit a776181bfd2a06c572478c35b9d594a7', 'loadClassLoader'));27 spl_autoload_unregister(array('ComposerAutoloaderInit7d4bf1851cad0eb389f37a767405692e', 'loadClassLoader')); 28 28 29 29 require __DIR__ . '/autoload_static.php'; 30 call_user_func(\Composer\Autoload\ComposerStaticInit a776181bfd2a06c572478c35b9d594a7::getInitializer($loader));30 call_user_func(\Composer\Autoload\ComposerStaticInit7d4bf1851cad0eb389f37a767405692e::getInitializer($loader)); 31 31 32 32 $loader->register(true); 33 33 34 $includeFiles = \Composer\Autoload\ComposerStaticInit a776181bfd2a06c572478c35b9d594a7::$files;34 $includeFiles = \Composer\Autoload\ComposerStaticInit7d4bf1851cad0eb389f37a767405692e::$files; 35 35 foreach ($includeFiles as $fileIdentifier => $file) { 36 composerRequire a776181bfd2a06c572478c35b9d594a7($fileIdentifier, $file);36 composerRequire7d4bf1851cad0eb389f37a767405692e($fileIdentifier, $file); 37 37 } 38 38 … … 46 46 * @return void 47 47 */ 48 function composerRequire a776181bfd2a06c572478c35b9d594a7($fileIdentifier, $file)48 function composerRequire7d4bf1851cad0eb389f37a767405692e($fileIdentifier, $file) 49 49 { 50 50 if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) { -
juvo-mail-editor/trunk/vendor/composer/autoload_static.php
r2717851 r2791814 5 5 namespace Composer\Autoload; 6 6 7 class ComposerStaticInit a776181bfd2a06c572478c35b9d594a77 class ComposerStaticInit7d4bf1851cad0eb389f37a767405692e 8 8 { 9 9 public static $files = array ( … … 100 100 { 101 101 return \Closure::bind(function () use ($loader) { 102 $loader->prefixLengthsPsr4 = ComposerStaticInit a776181bfd2a06c572478c35b9d594a7::$prefixLengthsPsr4;103 $loader->prefixDirsPsr4 = ComposerStaticInit a776181bfd2a06c572478c35b9d594a7::$prefixDirsPsr4;104 $loader->fallbackDirsPsr4 = ComposerStaticInit a776181bfd2a06c572478c35b9d594a7::$fallbackDirsPsr4;105 $loader->prefixesPsr0 = ComposerStaticInit a776181bfd2a06c572478c35b9d594a7::$prefixesPsr0;106 $loader->classMap = ComposerStaticInit a776181bfd2a06c572478c35b9d594a7::$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; 107 107 108 108 }, null, ClassLoader::class); -
juvo-mail-editor/trunk/vendor/composer/installed.php
r2717851 r2791814 1 1 <?php return array( 2 2 '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', 5 7 'type' => 'wordpress-plugin', 6 8 'install_path' => __DIR__ . '/../../', 7 9 'aliases' => array(), 8 'reference' => '5a487cbf45f5c98e4fcecf4a8becee2a7e7bee92',9 'name' => 'juvo/mail-editor',10 10 'dev' => false, 11 11 ), … … 14 14 'pretty_version' => '2.0.2', 15 15 'version' => '2.0.2.0', 16 'reference' => 'f6fede4f94ced7c22ba63a9b8af0bf2dc38e3cb2', 16 17 'type' => 'library', 17 18 'install_path' => __DIR__ . '/../altorouter/altorouter', 18 19 'aliases' => array(), 19 'reference' => 'f6fede4f94ced7c22ba63a9b8af0bf2dc38e3cb2',20 20 'dev_requirement' => false, 21 21 ), … … 23 23 'pretty_version' => 'v2.9.0', 24 24 'version' => '2.9.0.0', 25 'reference' => 'cacbc8cedbfdf8ffe0e840858e6860f9333c33f2', 25 26 'type' => 'wordpress-plugin', 26 27 'install_path' => __DIR__ . '/../cmb2/cmb2', 27 28 'aliases' => array(), 28 'reference' => 'cacbc8cedbfdf8ffe0e840858e6860f9333c33f2',29 29 'dev_requirement' => false, 30 30 ), … … 32 32 'pretty_version' => 'v1.12.0', 33 33 'version' => '1.12.0.0', 34 'reference' => 'd20a64ed3c94748397ff5973488761b22f6d3f19', 34 35 'type' => 'composer-plugin', 35 36 'install_path' => __DIR__ . '/./installers', 36 37 'aliases' => array(), 37 'reference' => 'd20a64ed3c94748397ff5973488761b22f6d3f19',38 38 'dev_requirement' => false, 39 39 ), 40 40 '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', 43 44 'type' => 'wordpress-plugin', 44 45 'install_path' => __DIR__ . '/../../', 45 46 'aliases' => array(), 46 'reference' => '5a487cbf45f5c98e4fcecf4a8becee2a7e7bee92',47 47 'dev_requirement' => false, 48 48 ), … … 62 62 'pretty_version' => 'v1.24.0', 63 63 'version' => '1.24.0.0', 64 'reference' => '30885182c981ab175d4d034db0f6f469898070ab', 64 65 'type' => 'library', 65 66 'install_path' => __DIR__ . '/../symfony/polyfill-ctype', 66 67 'aliases' => array(), 67 'reference' => '30885182c981ab175d4d034db0f6f469898070ab',68 68 'dev_requirement' => false, 69 69 ), … … 71 71 'pretty_version' => 'v1.20.0', 72 72 'version' => '1.20.0.0', 73 'reference' => '39d483bdf39be819deabf04ec872eb0b2410b531', 73 74 'type' => 'library', 74 75 'install_path' => __DIR__ . '/../symfony/polyfill-mbstring', 75 76 'aliases' => array(), 76 'reference' => '39d483bdf39be819deabf04ec872eb0b2410b531',77 77 'dev_requirement' => false, 78 78 ), … … 80 80 'pretty_version' => 'v1.24.0', 81 81 'version' => '1.24.0.0', 82 'reference' => '9a142215a36a3888e30d0a9eeea9766764e96976', 82 83 'type' => 'library', 83 84 'install_path' => __DIR__ . '/../symfony/polyfill-php72', 84 85 'aliases' => array(), 85 'reference' => '9a142215a36a3888e30d0a9eeea9766764e96976',86 86 'dev_requirement' => false, 87 87 ), … … 89 89 'pretty_version' => '1.19.1', 90 90 'version' => '1.19.1.0', 91 'reference' => '3e213fbd3587eb36adec2d5a081824c4722a0acf', 91 92 'type' => 'library', 92 93 'install_path' => __DIR__ . '/../timber/timber', 93 94 'aliases' => array(), 94 'reference' => '3e213fbd3587eb36adec2d5a081824c4722a0acf',95 95 'dev_requirement' => false, 96 96 ), … … 98 98 'pretty_version' => 'v1.5.0', 99 99 'version' => '1.5.0.0', 100 'reference' => '2c243643f59132194458bd03c745b079bbb12e78', 100 101 'type' => 'library', 101 102 'install_path' => __DIR__ . '/../twig/cache-extension', 102 103 'aliases' => array(), 103 'reference' => '2c243643f59132194458bd03c745b079bbb12e78',104 104 'dev_requirement' => false, 105 105 ), … … 107 107 'pretty_version' => 'v2.14.11', 108 108 'version' => '2.14.11.0', 109 'reference' => '66baa66f29ee30e487e05f1679903e36eb01d727', 109 110 'type' => 'library', 110 111 'install_path' => __DIR__ . '/../twig/twig', 111 112 'aliases' => array(), 112 'reference' => '66baa66f29ee30e487e05f1679903e36eb01d727',113 113 'dev_requirement' => false, 114 114 ), … … 116 116 'pretty_version' => '0.8.1', 117 117 'version' => '0.8.1.0', 118 'reference' => '02eb866668f5478d794547aa79e73dd92a989ad9', 118 119 'type' => 'library', 119 120 'install_path' => __DIR__ . '/../upstatement/routes', 120 121 'aliases' => array(), 121 'reference' => '02eb866668f5478d794547aa79e73dd92a989ad9',122 122 'dev_requirement' => false, 123 123 ),
Note: See TracChangeset
for help on using the changeset viewer.