Plugin Directory

Changeset 3067018


Ignore:
Timestamp:
04/08/2024 03:00:23 PM (2 years ago)
Author:
juvodesign
Message:

Update to version 3.1.6 from GitHub

Location:
juvo-mail-editor
Files:
784 added
10 deleted
22 edited
1 copied

Legend:

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

    r3066961 r3067018  
    88 * Text Domain:     juvo-mail-editor
    99 * Domain Path:     /languages
    10  * Version:         3.1.5
     10 * Version:         3.1.6
    1111 * Requires at least: 6.5
    1212 * Requires PHP: 7.4
     
    3232 * Add file check to avoid autoloading if included as sub-package
    3333 */
    34 $juvo_mail_editor_plugin_dir = plugin_dir_path(__FILE__);
    3534if (
    36     file_exists($juvo_mail_editor_plugin_dir . 'vendor/autoload.php')
    37     && file_exists($juvo_mail_editor_plugin_dir . 'vendor/vendor-prefixed/autoload.php')
     35    file_exists(JUVO_MAIL_EDITOR_PATH . 'vendor/autoload.php')
     36    && file_exists(JUVO_MAIL_EDITOR_PATH . 'vendor/vendor-prefixed/autoload.php')
    3837) {
    39     require plugin_dir_path(__FILE__) . 'vendor/autoload.php';
    40     require plugin_dir_path(__FILE__) . 'vendor/vendor-prefixed/autoload.php';
     38    require JUVO_MAIL_EDITOR_PATH . 'vendor/autoload.php';
     39    require JUVO_MAIL_EDITOR_PATH . 'vendor/vendor-prefixed/autoload.php';
    4140}
    4241
     
    4443 * Load cmb2 manually and not by composer because file autoloading does not work
    4544 */
    46 if (file_exists($juvo_mail_editor_plugin_dir . 'vendor/cmb2/cmb2/init.php')) {
     45if (file_exists(JUVO_MAIL_EDITOR_PATH . 'vendor/cmb2/cmb2/init.php')) {
    4746    // Path for standalone plugin. Load from local vendor folder
    48     require plugin_dir_path(__FILE__) . 'vendor/cmb2/cmb2/init.php';
     47    require JUVO_MAIL_EDITOR_PATH . 'vendor/cmb2/cmb2/init.php';
    4948} else {
    5049    // Lookup vendor folder when included as library
    51     preg_match('/(.*)vendor/U', $juvo_mail_editor_plugin_dir, $matches);
     50    preg_match('/(.*)vendor/U', JUVO_MAIL_EDITOR_PATH, $matches);
    5251    if (file_exists($matches[1] . 'vendor/cmb2/cmb2/init.php')) {
    5352        require $matches[1] . 'vendor/cmb2/cmb2/init.php';
  • juvo-mail-editor/tags/3.1.6/readme.txt

    r3066961 r3067018  
    44License: GPLv2 or later
    55Tested up to: 6.3
    6 Stable tag: 3.1.5
     6Stable tag: 3.1.6
    77
    88JUVO Mail Editor helps to modify the standard WordPress Mailings and allows adding dynamic mail triggers.
  • juvo-mail-editor/tags/3.1.6/vendor/autoload.php

    r3066961 r3067018  
    2323require_once __DIR__ . '/composer/autoload_real.php';
    2424
    25 return ComposerAutoloaderInitb3312db7eda8973b26180d7301fd2d8b::getLoader();
     25return ComposerAutoloaderInit125c45f3cabfd143f1cb2d07a562de78::getLoader();
  • juvo-mail-editor/tags/3.1.6/vendor/composer/autoload_files.php

    r3066961 r3067018  
    77
    88return array(
    9     'a4a119a56e50fbb293281d9a48007e0e' => $baseDir . '/vendor/vendor-prefixed/symfony/polyfill-php80/bootstrap.php',
    10     '320cde22f66dd4f5d3fd621d3e88b98f' => $baseDir . '/vendor/vendor-prefixed/symfony/polyfill-ctype/bootstrap.php',
    11     '0e6d7bf4a5811bfa5cf40c5ccd6fae6a' => $baseDir . '/vendor/vendor-prefixed/symfony/polyfill-mbstring/bootstrap.php',
     9    'a4a119a56e50fbb293281d9a48007e0e' => $vendorDir . '/symfony/polyfill-php80/bootstrap.php',
     10    '320cde22f66dd4f5d3fd621d3e88b98f' => $vendorDir . '/symfony/polyfill-ctype/bootstrap.php',
     11    '0e6d7bf4a5811bfa5cf40c5ccd6fae6a' => $vendorDir . '/symfony/polyfill-mbstring/bootstrap.php',
    1212);
  • juvo-mail-editor/tags/3.1.6/vendor/composer/autoload_real.php

    r3066961 r3067018  
    33// autoload_real.php @generated by Composer
    44
    5 class ComposerAutoloaderInitb3312db7eda8973b26180d7301fd2d8b
     5class ComposerAutoloaderInit125c45f3cabfd143f1cb2d07a562de78
    66{
    77    private static $loader;
     
    2323        }
    2424
    25         spl_autoload_register(array('ComposerAutoloaderInitb3312db7eda8973b26180d7301fd2d8b', 'loadClassLoader'), true, true);
     25        spl_autoload_register(array('ComposerAutoloaderInit125c45f3cabfd143f1cb2d07a562de78', 'loadClassLoader'), true, true);
    2626        self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
    27         spl_autoload_unregister(array('ComposerAutoloaderInitb3312db7eda8973b26180d7301fd2d8b', 'loadClassLoader'));
     27        spl_autoload_unregister(array('ComposerAutoloaderInit125c45f3cabfd143f1cb2d07a562de78', 'loadClassLoader'));
    2828
    2929        require __DIR__ . '/autoload_static.php';
    30         call_user_func(\Composer\Autoload\ComposerStaticInitb3312db7eda8973b26180d7301fd2d8b::getInitializer($loader));
     30        call_user_func(\Composer\Autoload\ComposerStaticInit125c45f3cabfd143f1cb2d07a562de78::getInitializer($loader));
    3131
    3232        $loader->setClassMapAuthoritative(true);
    3333        $loader->register(true);
    3434
    35         $filesToLoad = \Composer\Autoload\ComposerStaticInitb3312db7eda8973b26180d7301fd2d8b::$files;
     35        $filesToLoad = \Composer\Autoload\ComposerStaticInit125c45f3cabfd143f1cb2d07a562de78::$files;
    3636        $requireFile = \Closure::bind(static function ($fileIdentifier, $file) {
    3737            if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
  • juvo-mail-editor/tags/3.1.6/vendor/composer/autoload_static.php

    r3066961 r3067018  
    55namespace Composer\Autoload;
    66
    7 class ComposerStaticInitb3312db7eda8973b26180d7301fd2d8b
     7class ComposerStaticInit125c45f3cabfd143f1cb2d07a562de78
    88{
    99    public static $files = array (
    10         'a4a119a56e50fbb293281d9a48007e0e' => __DIR__ . '/../../vendor/vendor-prefixed/' . '/symfony/polyfill-php80/bootstrap.php',
    11         '320cde22f66dd4f5d3fd621d3e88b98f' => __DIR__ . '/../../vendor/vendor-prefixed/' . '/symfony/polyfill-ctype/bootstrap.php',
    12         '0e6d7bf4a5811bfa5cf40c5ccd6fae6a' => __DIR__ . '/../../vendor/vendor-prefixed/' . '/symfony/polyfill-mbstring/bootstrap.php',
     10        'a4a119a56e50fbb293281d9a48007e0e' => __DIR__ . '/..' . '/symfony/polyfill-php80/bootstrap.php',
     11        '320cde22f66dd4f5d3fd621d3e88b98f' => __DIR__ . '/..' . '/symfony/polyfill-ctype/bootstrap.php',
     12        '0e6d7bf4a5811bfa5cf40c5ccd6fae6a' => __DIR__ . '/..' . '/symfony/polyfill-mbstring/bootstrap.php',
    1313    );
    1414
     
    454454    {
    455455        return \Closure::bind(function () use ($loader) {
    456             $loader->prefixLengthsPsr4 = ComposerStaticInitb3312db7eda8973b26180d7301fd2d8b::$prefixLengthsPsr4;
    457             $loader->prefixDirsPsr4 = ComposerStaticInitb3312db7eda8973b26180d7301fd2d8b::$prefixDirsPsr4;
    458             $loader->classMap = ComposerStaticInitb3312db7eda8973b26180d7301fd2d8b::$classMap;
     456            $loader->prefixLengthsPsr4 = ComposerStaticInit125c45f3cabfd143f1cb2d07a562de78::$prefixLengthsPsr4;
     457            $loader->prefixDirsPsr4 = ComposerStaticInit125c45f3cabfd143f1cb2d07a562de78::$prefixDirsPsr4;
     458            $loader->classMap = ComposerStaticInit125c45f3cabfd143f1cb2d07a562de78::$classMap;
    459459
    460460        }, null, ClassLoader::class);
  • juvo-mail-editor/tags/3.1.6/vendor/composer/installed.php

    r3066961 r3067018  
    22    'root' => array(
    33        'name' => 'juvo/mail-editor',
    4         'pretty_version' => '3.1.5',
    5         'version' => '3.1.5.0',
    6         'reference' => '9d7042f314404367536c858fb7f28752a9ff0129',
     4        'pretty_version' => '3.1.6',
     5        'version' => '3.1.6.0',
     6        'reference' => '63ef9debafcac090a1f81e5eda29cc4fc8e270d7',
    77        'type' => 'wordpress-plugin',
    88        'install_path' => __DIR__ . '/../../',
     
    3030        ),
    3131        'juvo/mail-editor' => array(
    32             'pretty_version' => '3.1.5',
    33             'version' => '3.1.5.0',
    34             'reference' => '9d7042f314404367536c858fb7f28752a9ff0129',
     32            'pretty_version' => '3.1.6',
     33            'version' => '3.1.6.0',
     34            'reference' => '63ef9debafcac090a1f81e5eda29cc4fc8e270d7',
    3535            'type' => 'wordpress-plugin',
    3636            'install_path' => __DIR__ . '/../../',
  • juvo-mail-editor/tags/3.1.6/vendor/symfony/polyfill-ctype/bootstrap.php

    r3066961 r3067018  
    1 <?php // This file was deleted by {@see https://github.com/BrianHenryIE/strauss}.
     1<?php
     2
     3/*
     4 * This file is part of the Symfony package.
     5 *
     6 * (c) Fabien Potencier <[email protected]>
     7 *
     8 * For the full copyright and license information, please view the LICENSE
     9 * file that was distributed with this source code.
     10 */
     11
     12use Symfony\Polyfill\Ctype as p;
     13
     14if (\PHP_VERSION_ID >= 80000) {
     15    return require __DIR__.'/bootstrap80.php';
     16}
     17
     18if (!function_exists('ctype_alnum')) {
     19    function ctype_alnum($text) { return p\Ctype::ctype_alnum($text); }
     20}
     21if (!function_exists('ctype_alpha')) {
     22    function ctype_alpha($text) { return p\Ctype::ctype_alpha($text); }
     23}
     24if (!function_exists('ctype_cntrl')) {
     25    function ctype_cntrl($text) { return p\Ctype::ctype_cntrl($text); }
     26}
     27if (!function_exists('ctype_digit')) {
     28    function ctype_digit($text) { return p\Ctype::ctype_digit($text); }
     29}
     30if (!function_exists('ctype_graph')) {
     31    function ctype_graph($text) { return p\Ctype::ctype_graph($text); }
     32}
     33if (!function_exists('ctype_lower')) {
     34    function ctype_lower($text) { return p\Ctype::ctype_lower($text); }
     35}
     36if (!function_exists('ctype_print')) {
     37    function ctype_print($text) { return p\Ctype::ctype_print($text); }
     38}
     39if (!function_exists('ctype_punct')) {
     40    function ctype_punct($text) { return p\Ctype::ctype_punct($text); }
     41}
     42if (!function_exists('ctype_space')) {
     43    function ctype_space($text) { return p\Ctype::ctype_space($text); }
     44}
     45if (!function_exists('ctype_upper')) {
     46    function ctype_upper($text) { return p\Ctype::ctype_upper($text); }
     47}
     48if (!function_exists('ctype_xdigit')) {
     49    function ctype_xdigit($text) { return p\Ctype::ctype_xdigit($text); }
     50}
  • juvo-mail-editor/tags/3.1.6/vendor/symfony/polyfill-mbstring/bootstrap.php

    r3066961 r3067018  
    1 <?php // This file was deleted by {@see https://github.com/BrianHenryIE/strauss}.
     1<?php
     2
     3/*
     4 * This file is part of the Symfony package.
     5 *
     6 * (c) Fabien Potencier <[email protected]>
     7 *
     8 * For the full copyright and license information, please view the LICENSE
     9 * file that was distributed with this source code.
     10 */
     11
     12use Symfony\Polyfill\Mbstring as p;
     13
     14if (\PHP_VERSION_ID >= 80000) {
     15    return require __DIR__.'/bootstrap80.php';
     16}
     17
     18if (!function_exists('mb_convert_encoding')) {
     19    function mb_convert_encoding($string, $to_encoding, $from_encoding = null) { return p\Mbstring::mb_convert_encoding($string, $to_encoding, $from_encoding); }
     20}
     21if (!function_exists('mb_decode_mimeheader')) {
     22    function mb_decode_mimeheader($string) { return p\Mbstring::mb_decode_mimeheader($string); }
     23}
     24if (!function_exists('mb_encode_mimeheader')) {
     25    function mb_encode_mimeheader($string, $charset = null, $transfer_encoding = null, $newline = "\r\n", $indent = 0) { return p\Mbstring::mb_encode_mimeheader($string, $charset, $transfer_encoding, $newline, $indent); }
     26}
     27if (!function_exists('mb_decode_numericentity')) {
     28    function mb_decode_numericentity($string, $map, $encoding = null) { return p\Mbstring::mb_decode_numericentity($string, $map, $encoding); }
     29}
     30if (!function_exists('mb_encode_numericentity')) {
     31    function mb_encode_numericentity($string, $map, $encoding = null, $hex = false) { return p\Mbstring::mb_encode_numericentity($string, $map, $encoding, $hex); }
     32}
     33if (!function_exists('mb_convert_case')) {
     34    function mb_convert_case($string, $mode, $encoding = null) { return p\Mbstring::mb_convert_case($string, $mode, $encoding); }
     35}
     36if (!function_exists('mb_internal_encoding')) {
     37    function mb_internal_encoding($encoding = null) { return p\Mbstring::mb_internal_encoding($encoding); }
     38}
     39if (!function_exists('mb_language')) {
     40    function mb_language($language = null) { return p\Mbstring::mb_language($language); }
     41}
     42if (!function_exists('mb_list_encodings')) {
     43    function mb_list_encodings() { return p\Mbstring::mb_list_encodings(); }
     44}
     45if (!function_exists('mb_encoding_aliases')) {
     46    function mb_encoding_aliases($encoding) { return p\Mbstring::mb_encoding_aliases($encoding); }
     47}
     48if (!function_exists('mb_check_encoding')) {
     49    function mb_check_encoding($value = null, $encoding = null) { return p\Mbstring::mb_check_encoding($value, $encoding); }
     50}
     51if (!function_exists('mb_detect_encoding')) {
     52    function mb_detect_encoding($string, $encodings = null, $strict = false) { return p\Mbstring::mb_detect_encoding($string, $encodings, $strict); }
     53}
     54if (!function_exists('mb_detect_order')) {
     55    function mb_detect_order($encoding = null) { return p\Mbstring::mb_detect_order($encoding); }
     56}
     57if (!function_exists('mb_parse_str')) {
     58    function mb_parse_str($string, &$result = []) { parse_str($string, $result); return (bool) $result; }
     59}
     60if (!function_exists('mb_strlen')) {
     61    function mb_strlen($string, $encoding = null) { return p\Mbstring::mb_strlen($string, $encoding); }
     62}
     63if (!function_exists('mb_strpos')) {
     64    function mb_strpos($haystack, $needle, $offset = 0, $encoding = null) { return p\Mbstring::mb_strpos($haystack, $needle, $offset, $encoding); }
     65}
     66if (!function_exists('mb_strtolower')) {
     67    function mb_strtolower($string, $encoding = null) { return p\Mbstring::mb_strtolower($string, $encoding); }
     68}
     69if (!function_exists('mb_strtoupper')) {
     70    function mb_strtoupper($string, $encoding = null) { return p\Mbstring::mb_strtoupper($string, $encoding); }
     71}
     72if (!function_exists('mb_substitute_character')) {
     73    function mb_substitute_character($substitute_character = null) { return p\Mbstring::mb_substitute_character($substitute_character); }
     74}
     75if (!function_exists('mb_substr')) {
     76    function mb_substr($string, $start, $length = 2147483647, $encoding = null) { return p\Mbstring::mb_substr($string, $start, $length, $encoding); }
     77}
     78if (!function_exists('mb_stripos')) {
     79    function mb_stripos($haystack, $needle, $offset = 0, $encoding = null) { return p\Mbstring::mb_stripos($haystack, $needle, $offset, $encoding); }
     80}
     81if (!function_exists('mb_stristr')) {
     82    function mb_stristr($haystack, $needle, $before_needle = false, $encoding = null) { return p\Mbstring::mb_stristr($haystack, $needle, $before_needle, $encoding); }
     83}
     84if (!function_exists('mb_strrchr')) {
     85    function mb_strrchr($haystack, $needle, $before_needle = false, $encoding = null) { return p\Mbstring::mb_strrchr($haystack, $needle, $before_needle, $encoding); }
     86}
     87if (!function_exists('mb_strrichr')) {
     88    function mb_strrichr($haystack, $needle, $before_needle = false, $encoding = null) { return p\Mbstring::mb_strrichr($haystack, $needle, $before_needle, $encoding); }
     89}
     90if (!function_exists('mb_strripos')) {
     91    function mb_strripos($haystack, $needle, $offset = 0, $encoding = null) { return p\Mbstring::mb_strripos($haystack, $needle, $offset, $encoding); }
     92}
     93if (!function_exists('mb_strrpos')) {
     94    function mb_strrpos($haystack, $needle, $offset = 0, $encoding = null) { return p\Mbstring::mb_strrpos($haystack, $needle, $offset, $encoding); }
     95}
     96if (!function_exists('mb_strstr')) {
     97    function mb_strstr($haystack, $needle, $before_needle = false, $encoding = null) { return p\Mbstring::mb_strstr($haystack, $needle, $before_needle, $encoding); }
     98}
     99if (!function_exists('mb_get_info')) {
     100    function mb_get_info($type = 'all') { return p\Mbstring::mb_get_info($type); }
     101}
     102if (!function_exists('mb_http_output')) {
     103    function mb_http_output($encoding = null) { return p\Mbstring::mb_http_output($encoding); }
     104}
     105if (!function_exists('mb_strwidth')) {
     106    function mb_strwidth($string, $encoding = null) { return p\Mbstring::mb_strwidth($string, $encoding); }
     107}
     108if (!function_exists('mb_substr_count')) {
     109    function mb_substr_count($haystack, $needle, $encoding = null) { return p\Mbstring::mb_substr_count($haystack, $needle, $encoding); }
     110}
     111if (!function_exists('mb_output_handler')) {
     112    function mb_output_handler($string, $status) { return p\Mbstring::mb_output_handler($string, $status); }
     113}
     114if (!function_exists('mb_http_input')) {
     115    function mb_http_input($type = null) { return p\Mbstring::mb_http_input($type); }
     116}
     117
     118if (!function_exists('mb_convert_variables')) {
     119    function mb_convert_variables($to_encoding, $from_encoding, &...$vars) { return p\Mbstring::mb_convert_variables($to_encoding, $from_encoding, ...$vars); }
     120}
     121
     122if (!function_exists('mb_ord')) {
     123    function mb_ord($string, $encoding = null) { return p\Mbstring::mb_ord($string, $encoding); }
     124}
     125if (!function_exists('mb_chr')) {
     126    function mb_chr($codepoint, $encoding = null) { return p\Mbstring::mb_chr($codepoint, $encoding); }
     127}
     128if (!function_exists('mb_scrub')) {
     129    function mb_scrub($string, $encoding = null) { $encoding = null === $encoding ? mb_internal_encoding() : $encoding; return mb_convert_encoding($string, $encoding, $encoding); }
     130}
     131if (!function_exists('mb_str_split')) {
     132    function mb_str_split($string, $length = 1, $encoding = null) { return p\Mbstring::mb_str_split($string, $length, $encoding); }
     133}
     134
     135if (!function_exists('mb_str_pad')) {
     136    function mb_str_pad(string $string, int $length, string $pad_string = ' ', int $pad_type = STR_PAD_RIGHT, ?string $encoding = null): string { return p\Mbstring::mb_str_pad($string, $length, $pad_string, $pad_type, $encoding); }
     137}
     138
     139if (extension_loaded('mbstring')) {
     140    return;
     141}
     142
     143if (!defined('MB_CASE_UPPER')) {
     144    define('MB_CASE_UPPER', 0);
     145}
     146if (!defined('MB_CASE_LOWER')) {
     147    define('MB_CASE_LOWER', 1);
     148}
     149if (!defined('MB_CASE_TITLE')) {
     150    define('MB_CASE_TITLE', 2);
     151}
  • juvo-mail-editor/tags/3.1.6/vendor/symfony/polyfill-php80/bootstrap.php

    r3066961 r3067018  
    1 <?php // This file was deleted by {@see https://github.com/BrianHenryIE/strauss}.
     1<?php
     2
     3/*
     4 * This file is part of the Symfony package.
     5 *
     6 * (c) Fabien Potencier <[email protected]>
     7 *
     8 * For the full copyright and license information, please view the LICENSE
     9 * file that was distributed with this source code.
     10 */
     11
     12use Symfony\Polyfill\Php80 as p;
     13
     14if (\PHP_VERSION_ID >= 80000) {
     15    return;
     16}
     17
     18if (!defined('FILTER_VALIDATE_BOOL') && defined('FILTER_VALIDATE_BOOLEAN')) {
     19    define('FILTER_VALIDATE_BOOL', \FILTER_VALIDATE_BOOLEAN);
     20}
     21
     22if (!function_exists('fdiv')) {
     23    function fdiv(float $num1, float $num2): float { return p\Php80::fdiv($num1, $num2); }
     24}
     25if (!function_exists('preg_last_error_msg')) {
     26    function preg_last_error_msg(): string { return p\Php80::preg_last_error_msg(); }
     27}
     28if (!function_exists('str_contains')) {
     29    function str_contains(?string $haystack, ?string $needle): bool { return p\Php80::str_contains($haystack ?? '', $needle ?? ''); }
     30}
     31if (!function_exists('str_starts_with')) {
     32    function str_starts_with(?string $haystack, ?string $needle): bool { return p\Php80::str_starts_with($haystack ?? '', $needle ?? ''); }
     33}
     34if (!function_exists('str_ends_with')) {
     35    function str_ends_with(?string $haystack, ?string $needle): bool { return p\Php80::str_ends_with($haystack ?? '', $needle ?? ''); }
     36}
     37if (!function_exists('get_debug_type')) {
     38    function get_debug_type($value): string { return p\Php80::get_debug_type($value); }
     39}
     40if (!function_exists('get_resource_id')) {
     41    function get_resource_id($resource): int { return p\Php80::get_resource_id($resource); }
     42}
  • juvo-mail-editor/tags/3.1.6/vendor/vendor-prefixed/autoload-classmap.php

    r3066961 r3067018  
    66
    77return array(
    8    'Twig\Compiler' => $strauss_src . '/twig/twig/src/Compiler.php',
    9    'Twig\Extension\ProfilerExtension' => $strauss_src . '/twig/twig/src/Extension/ProfilerExtension.php',
    10    'Twig\Extension\StagingExtension' => $strauss_src . '/twig/twig/src/Extension/StagingExtension.php',
    11    'Twig\Extension\DebugExtension' => $strauss_src . '/twig/twig/src/Extension/DebugExtension.php',
    12    'Twig\Extension\OptimizerExtension' => $strauss_src . '/twig/twig/src/Extension/OptimizerExtension.php',
    13    'Twig\Extension\StringLoaderExtension' => $strauss_src . '/twig/twig/src/Extension/StringLoaderExtension.php',
    14    'Twig\Extension\ExtensionInterface' => $strauss_src . '/twig/twig/src/Extension/ExtensionInterface.php',
    15    'Twig\Extension\RuntimeExtensionInterface' => $strauss_src . '/twig/twig/src/Extension/RuntimeExtensionInterface.php',
    16    'Twig\Extension\EscaperExtension' => $strauss_src . '/twig/twig/src/Extension/EscaperExtension.php',
    17    'Twig\Extension\GlobalsInterface' => $strauss_src . '/twig/twig/src/Extension/GlobalsInterface.php',
    18    'Twig\Extension\AbstractExtension' => $strauss_src . '/twig/twig/src/Extension/AbstractExtension.php',
    19    'Twig\Extension\SandboxExtension' => $strauss_src . '/twig/twig/src/Extension/SandboxExtension.php',
    20    'Twig\Extension\CoreExtension' => $strauss_src . '/twig/twig/src/Extension/CoreExtension.php',
    21    'Twig\Token' => $strauss_src . '/twig/twig/src/Token.php',
    22    'Twig\Template' => $strauss_src . '/twig/twig/src/Template.php',
    23    'Twig\Loader\LoaderInterface' => $strauss_src . '/twig/twig/src/Loader/LoaderInterface.php',
    24    'Twig\Loader\FilesystemLoader' => $strauss_src . '/twig/twig/src/Loader/FilesystemLoader.php',
    25    'Twig\Loader\ChainLoader' => $strauss_src . '/twig/twig/src/Loader/ChainLoader.php',
    26    'Twig\Loader\ArrayLoader' => $strauss_src . '/twig/twig/src/Loader/ArrayLoader.php',
    27    'Twig\Source' => $strauss_src . '/twig/twig/src/Source.php',
    28    'Twig\NodeTraverser' => $strauss_src . '/twig/twig/src/NodeTraverser.php',
    29    'Twig\Profiler\Dumper\TextDumper' => $strauss_src . '/twig/twig/src/Profiler/Dumper/TextDumper.php',
    30    'Twig\Profiler\Dumper\BlackfireDumper' => $strauss_src . '/twig/twig/src/Profiler/Dumper/BlackfireDumper.php',
    31    'Twig\Profiler\Dumper\HtmlDumper' => $strauss_src . '/twig/twig/src/Profiler/Dumper/HtmlDumper.php',
    32    'Twig\Profiler\Dumper\BaseDumper' => $strauss_src . '/twig/twig/src/Profiler/Dumper/BaseDumper.php',
    33    'Twig\Profiler\NodeVisitor\ProfilerNodeVisitor' => $strauss_src . '/twig/twig/src/Profiler/NodeVisitor/ProfilerNodeVisitor.php',
    34    'Twig\Profiler\Profile' => $strauss_src . '/twig/twig/src/Profiler/Profile.php',
    35    'Twig\Profiler\Node\LeaveProfileNode' => $strauss_src . '/twig/twig/src/Profiler/Node/LeaveProfileNode.php',
    36    'Twig\Profiler\Node\EnterProfileNode' => $strauss_src . '/twig/twig/src/Profiler/Node/EnterProfileNode.php',
    37    'Twig\Cache\CacheInterface' => $strauss_src . '/twig/twig/src/Cache/CacheInterface.php',
    38    'Twig\Cache\FilesystemCache' => $strauss_src . '/twig/twig/src/Cache/FilesystemCache.php',
    39    'Twig\Cache\NullCache' => $strauss_src . '/twig/twig/src/Cache/NullCache.php',
    40    'Twig\Error\RuntimeError' => $strauss_src . '/twig/twig/src/Error/RuntimeError.php',
    41    'Twig\Error\Error' => $strauss_src . '/twig/twig/src/Error/Error.php',
    42    'Twig\Error\SyntaxError' => $strauss_src . '/twig/twig/src/Error/SyntaxError.php',
    43    'Twig\Error\LoaderError' => $strauss_src . '/twig/twig/src/Error/LoaderError.php',
    44    'Twig\FileExtensionEscapingStrategy' => $strauss_src . '/twig/twig/src/FileExtensionEscapingStrategy.php',
    45    'Twig\Environment' => $strauss_src . '/twig/twig/src/Environment.php',
    46    'Twig\Sandbox\SecurityNotAllowedFilterError' => $strauss_src . '/twig/twig/src/Sandbox/SecurityNotAllowedFilterError.php',
    47    'Twig\Sandbox\SecurityPolicy' => $strauss_src . '/twig/twig/src/Sandbox/SecurityPolicy.php',
    48    'Twig\Sandbox\SecurityPolicyInterface' => $strauss_src . '/twig/twig/src/Sandbox/SecurityPolicyInterface.php',
    49    'Twig\Sandbox\SecurityNotAllowedFunctionError' => $strauss_src . '/twig/twig/src/Sandbox/SecurityNotAllowedFunctionError.php',
    50    'Twig\Sandbox\SecurityError' => $strauss_src . '/twig/twig/src/Sandbox/SecurityError.php',
    51    'Twig\Sandbox\SecurityNotAllowedTagError' => $strauss_src . '/twig/twig/src/Sandbox/SecurityNotAllowedTagError.php',
    52    'Twig\Sandbox\SecurityNotAllowedMethodError' => $strauss_src . '/twig/twig/src/Sandbox/SecurityNotAllowedMethodError.php',
    53    'Twig\Sandbox\SecurityNotAllowedPropertyError' => $strauss_src . '/twig/twig/src/Sandbox/SecurityNotAllowedPropertyError.php',
    54    'Twig\ExtensionSet' => $strauss_src . '/twig/twig/src/ExtensionSet.php',
    55    'Twig\ExpressionParser' => $strauss_src . '/twig/twig/src/ExpressionParser.php',
    56    'Twig\TokenParser\ForTokenParser' => $strauss_src . '/twig/twig/src/TokenParser/ForTokenParser.php',
    57    'Twig\TokenParser\ApplyTokenParser' => $strauss_src . '/twig/twig/src/TokenParser/ApplyTokenParser.php',
    58    'Twig\TokenParser\EmbedTokenParser' => $strauss_src . '/twig/twig/src/TokenParser/EmbedTokenParser.php',
    59    'Twig\TokenParser\BlockTokenParser' => $strauss_src . '/twig/twig/src/TokenParser/BlockTokenParser.php',
    60    'Twig\TokenParser\SandboxTokenParser' => $strauss_src . '/twig/twig/src/TokenParser/SandboxTokenParser.php',
    61    'Twig\TokenParser\DeprecatedTokenParser' => $strauss_src . '/twig/twig/src/TokenParser/DeprecatedTokenParser.php',
    62    'Twig\TokenParser\WithTokenParser' => $strauss_src . '/twig/twig/src/TokenParser/WithTokenParser.php',
    63    'Twig\TokenParser\ImportTokenParser' => $strauss_src . '/twig/twig/src/TokenParser/ImportTokenParser.php',
    64    'Twig\TokenParser\IfTokenParser' => $strauss_src . '/twig/twig/src/TokenParser/IfTokenParser.php',
    65    'Twig\TokenParser\UseTokenParser' => $strauss_src . '/twig/twig/src/TokenParser/UseTokenParser.php',
    66    'Twig\TokenParser\FlushTokenParser' => $strauss_src . '/twig/twig/src/TokenParser/FlushTokenParser.php',
    67    'Twig\TokenParser\MacroTokenParser' => $strauss_src . '/twig/twig/src/TokenParser/MacroTokenParser.php',
    68    'Twig\TokenParser\IncludeTokenParser' => $strauss_src . '/twig/twig/src/TokenParser/IncludeTokenParser.php',
    69    'Twig\TokenParser\DoTokenParser' => $strauss_src . '/twig/twig/src/TokenParser/DoTokenParser.php',
    70    'Twig\TokenParser\AutoEscapeTokenParser' => $strauss_src . '/twig/twig/src/TokenParser/AutoEscapeTokenParser.php',
    71    'Twig\TokenParser\TokenParserInterface' => $strauss_src . '/twig/twig/src/TokenParser/TokenParserInterface.php',
    72    'Twig\TokenParser\FromTokenParser' => $strauss_src . '/twig/twig/src/TokenParser/FromTokenParser.php',
    73    'Twig\TokenParser\ExtendsTokenParser' => $strauss_src . '/twig/twig/src/TokenParser/ExtendsTokenParser.php',
    74    'Twig\TokenParser\SetTokenParser' => $strauss_src . '/twig/twig/src/TokenParser/SetTokenParser.php',
    75    'Twig\TokenParser\AbstractTokenParser' => $strauss_src . '/twig/twig/src/TokenParser/AbstractTokenParser.php',
    76    'Twig\TwigFunction' => $strauss_src . '/twig/twig/src/TwigFunction.php',
    77    'Twig\TwigFilter' => $strauss_src . '/twig/twig/src/TwigFilter.php',
    78    'Twig\TwigTest' => $strauss_src . '/twig/twig/src/TwigTest.php',
    79    'Twig\TemplateWrapper' => $strauss_src . '/twig/twig/src/TemplateWrapper.php',
    80    'Twig\NodeVisitor\NodeVisitorInterface' => $strauss_src . '/twig/twig/src/NodeVisitor/NodeVisitorInterface.php',
    81    'Twig\NodeVisitor\SandboxNodeVisitor' => $strauss_src . '/twig/twig/src/NodeVisitor/SandboxNodeVisitor.php',
    82    'Twig\NodeVisitor\OptimizerNodeVisitor' => $strauss_src . '/twig/twig/src/NodeVisitor/OptimizerNodeVisitor.php',
    83    'Twig\NodeVisitor\AbstractNodeVisitor' => $strauss_src . '/twig/twig/src/NodeVisitor/AbstractNodeVisitor.php',
    84    'Twig\NodeVisitor\SafeAnalysisNodeVisitor' => $strauss_src . '/twig/twig/src/NodeVisitor/SafeAnalysisNodeVisitor.php',
    85    'Twig\NodeVisitor\EscaperNodeVisitor' => $strauss_src . '/twig/twig/src/NodeVisitor/EscaperNodeVisitor.php',
    86    'Twig\NodeVisitor\MacroAutoImportNodeVisitor' => $strauss_src . '/twig/twig/src/NodeVisitor/MacroAutoImportNodeVisitor.php',
    87    'Twig\Markup' => $strauss_src . '/twig/twig/src/Markup.php',
    88    'Twig\RuntimeLoader\RuntimeLoaderInterface' => $strauss_src . '/twig/twig/src/RuntimeLoader/RuntimeLoaderInterface.php',
    89    'Twig\RuntimeLoader\ContainerRuntimeLoader' => $strauss_src . '/twig/twig/src/RuntimeLoader/ContainerRuntimeLoader.php',
    90    'Twig\RuntimeLoader\FactoryRuntimeLoader' => $strauss_src . '/twig/twig/src/RuntimeLoader/FactoryRuntimeLoader.php',
    91    'Twig\Test\NodeTestCase' => $strauss_src . '/twig/twig/src/Test/NodeTestCase.php',
    92    'Twig\Test\IntegrationTestCase' => $strauss_src . '/twig/twig/src/Test/IntegrationTestCase.php',
    93    'Twig\Lexer' => $strauss_src . '/twig/twig/src/Lexer.php',
    94    'Twig\Parser' => $strauss_src . '/twig/twig/src/Parser.php',
    95    'Twig\TokenStream' => $strauss_src . '/twig/twig/src/TokenStream.php',
    96    'Twig\Node\EmbedNode' => $strauss_src . '/twig/twig/src/Node/EmbedNode.php',
    97    'Twig\Node\NodeOutputInterface' => $strauss_src . '/twig/twig/src/Node/NodeOutputInterface.php',
    98    'Twig\Node\FlushNode' => $strauss_src . '/twig/twig/src/Node/FlushNode.php',
    99    'Twig\Node\Expression\TempNameExpression' => $strauss_src . '/twig/twig/src/Node/Expression/TempNameExpression.php',
    100    'Twig\Node\Expression\Binary\EndsWithBinary' => $strauss_src . '/twig/twig/src/Node/Expression/Binary/EndsWithBinary.php',
    101    'Twig\Node\Expression\Binary\DivBinary' => $strauss_src . '/twig/twig/src/Node/Expression/Binary/DivBinary.php',
    102    'Twig\Node\Expression\Binary\MatchesBinary' => $strauss_src . '/twig/twig/src/Node/Expression/Binary/MatchesBinary.php',
    103    'Twig\Node\Expression\Binary\NotInBinary' => $strauss_src . '/twig/twig/src/Node/Expression/Binary/NotInBinary.php',
    104    'Twig\Node\Expression\Binary\ConcatBinary' => $strauss_src . '/twig/twig/src/Node/Expression/Binary/ConcatBinary.php',
    105    'Twig\Node\Expression\Binary\NotEqualBinary' => $strauss_src . '/twig/twig/src/Node/Expression/Binary/NotEqualBinary.php',
    106    'Twig\Node\Expression\Binary\BitwiseAndBinary' => $strauss_src . '/twig/twig/src/Node/Expression/Binary/BitwiseAndBinary.php',
    107    'Twig\Node\Expression\Binary\OrBinary' => $strauss_src . '/twig/twig/src/Node/Expression/Binary/OrBinary.php',
    108    'Twig\Node\Expression\Binary\RangeBinary' => $strauss_src . '/twig/twig/src/Node/Expression/Binary/RangeBinary.php',
    109    'Twig\Node\Expression\Binary\BitwiseOrBinary' => $strauss_src . '/twig/twig/src/Node/Expression/Binary/BitwiseOrBinary.php',
    110    'Twig\Node\Expression\Binary\StartsWithBinary' => $strauss_src . '/twig/twig/src/Node/Expression/Binary/StartsWithBinary.php',
    111    'Twig\Node\Expression\Binary\GreaterEqualBinary' => $strauss_src . '/twig/twig/src/Node/Expression/Binary/GreaterEqualBinary.php',
    112    'Twig\Node\Expression\Binary\EqualBinary' => $strauss_src . '/twig/twig/src/Node/Expression/Binary/EqualBinary.php',
    113    'Twig\Node\Expression\Binary\FloorDivBinary' => $strauss_src . '/twig/twig/src/Node/Expression/Binary/FloorDivBinary.php',
    114    'Twig\Node\Expression\Binary\PowerBinary' => $strauss_src . '/twig/twig/src/Node/Expression/Binary/PowerBinary.php',
    115    'Twig\Node\Expression\Binary\LessBinary' => $strauss_src . '/twig/twig/src/Node/Expression/Binary/LessBinary.php',
    116    'Twig\Node\Expression\Binary\HasEveryBinary' => $strauss_src . '/twig/twig/src/Node/Expression/Binary/HasEveryBinary.php',
    117    'Twig\Node\Expression\Binary\BitwiseXorBinary' => $strauss_src . '/twig/twig/src/Node/Expression/Binary/BitwiseXorBinary.php',
    118    'Twig\Node\Expression\Binary\LessEqualBinary' => $strauss_src . '/twig/twig/src/Node/Expression/Binary/LessEqualBinary.php',
    119    'Twig\Node\Expression\Binary\HasSomeBinary' => $strauss_src . '/twig/twig/src/Node/Expression/Binary/HasSomeBinary.php',
    120    'Twig\Node\Expression\Binary\MulBinary' => $strauss_src . '/twig/twig/src/Node/Expression/Binary/MulBinary.php',
    121    'Twig\Node\Expression\Binary\ModBinary' => $strauss_src . '/twig/twig/src/Node/Expression/Binary/ModBinary.php',
    122    'Twig\Node\Expression\Binary\AddBinary' => $strauss_src . '/twig/twig/src/Node/Expression/Binary/AddBinary.php',
    123    'Twig\Node\Expression\Binary\AbstractBinary' => $strauss_src . '/twig/twig/src/Node/Expression/Binary/AbstractBinary.php',
    124    'Twig\Node\Expression\Binary\SubBinary' => $strauss_src . '/twig/twig/src/Node/Expression/Binary/SubBinary.php',
    125    'Twig\Node\Expression\Binary\SpaceshipBinary' => $strauss_src . '/twig/twig/src/Node/Expression/Binary/SpaceshipBinary.php',
    126    'Twig\Node\Expression\Binary\AndBinary' => $strauss_src . '/twig/twig/src/Node/Expression/Binary/AndBinary.php',
    127    'Twig\Node\Expression\Binary\InBinary' => $strauss_src . '/twig/twig/src/Node/Expression/Binary/InBinary.php',
    128    'Twig\Node\Expression\Binary\GreaterBinary' => $strauss_src . '/twig/twig/src/Node/Expression/Binary/GreaterBinary.php',
    129    'Twig\Node\Expression\FunctionExpression' => $strauss_src . '/twig/twig/src/Node/Expression/FunctionExpression.php',
    130    'Twig\Node\Expression\CallExpression' => $strauss_src . '/twig/twig/src/Node/Expression/CallExpression.php',
    131    'Twig\Node\Expression\AssignNameExpression' => $strauss_src . '/twig/twig/src/Node/Expression/AssignNameExpression.php',
    132    'Twig\Node\Expression\InlinePrint' => $strauss_src . '/twig/twig/src/Node/Expression/InlinePrint.php',
    133    'Twig\Node\Expression\Unary\PosUnary' => $strauss_src . '/twig/twig/src/Node/Expression/Unary/PosUnary.php',
    134    'Twig\Node\Expression\Unary\NegUnary' => $strauss_src . '/twig/twig/src/Node/Expression/Unary/NegUnary.php',
    135    'Twig\Node\Expression\Unary\AbstractUnary' => $strauss_src . '/twig/twig/src/Node/Expression/Unary/AbstractUnary.php',
    136    'Twig\Node\Expression\Unary\NotUnary' => $strauss_src . '/twig/twig/src/Node/Expression/Unary/NotUnary.php',
    137    'Twig\Node\Expression\NameExpression' => $strauss_src . '/twig/twig/src/Node/Expression/NameExpression.php',
    138    'Twig\Node\Expression\ArrowFunctionExpression' => $strauss_src . '/twig/twig/src/Node/Expression/ArrowFunctionExpression.php',
    139    'Twig\Node\Expression\NullCoalesceExpression' => $strauss_src . '/twig/twig/src/Node/Expression/NullCoalesceExpression.php',
    140    'Twig\Node\Expression\VariadicExpression' => $strauss_src . '/twig/twig/src/Node/Expression/VariadicExpression.php',
    141    'Twig\Node\Expression\FilterExpression' => $strauss_src . '/twig/twig/src/Node/Expression/FilterExpression.php',
    142    'Twig\Node\Expression\MethodCallExpression' => $strauss_src . '/twig/twig/src/Node/Expression/MethodCallExpression.php',
    143    'Twig\Node\Expression\Filter\DefaultFilter' => $strauss_src . '/twig/twig/src/Node/Expression/Filter/DefaultFilter.php',
    144    'Twig\Node\Expression\AbstractExpression' => $strauss_src . '/twig/twig/src/Node/Expression/AbstractExpression.php',
    145    'Twig\Node\Expression\Test\ConstantTest' => $strauss_src . '/twig/twig/src/Node/Expression/Test/ConstantTest.php',
    146    'Twig\Node\Expression\Test\DivisiblebyTest' => $strauss_src . '/twig/twig/src/Node/Expression/Test/DivisiblebyTest.php',
    147    'Twig\Node\Expression\Test\NullTest' => $strauss_src . '/twig/twig/src/Node/Expression/Test/NullTest.php',
    148    'Twig\Node\Expression\Test\SameasTest' => $strauss_src . '/twig/twig/src/Node/Expression/Test/SameasTest.php',
    149    'Twig\Node\Expression\Test\EvenTest' => $strauss_src . '/twig/twig/src/Node/Expression/Test/EvenTest.php',
    150    'Twig\Node\Expression\Test\OddTest' => $strauss_src . '/twig/twig/src/Node/Expression/Test/OddTest.php',
    151    'Twig\Node\Expression\Test\DefinedTest' => $strauss_src . '/twig/twig/src/Node/Expression/Test/DefinedTest.php',
    152    'Twig\Node\Expression\TestExpression' => $strauss_src . '/twig/twig/src/Node/Expression/TestExpression.php',
    153    'Twig\Node\Expression\ConditionalExpression' => $strauss_src . '/twig/twig/src/Node/Expression/ConditionalExpression.php',
    154    'Twig\Node\Expression\BlockReferenceExpression' => $strauss_src . '/twig/twig/src/Node/Expression/BlockReferenceExpression.php',
    155    'Twig\Node\Expression\ConstantExpression' => $strauss_src . '/twig/twig/src/Node/Expression/ConstantExpression.php',
    156    'Twig\Node\Expression\GetAttrExpression' => $strauss_src . '/twig/twig/src/Node/Expression/GetAttrExpression.php',
    157    'Twig\Node\Expression\ParentExpression' => $strauss_src . '/twig/twig/src/Node/Expression/ParentExpression.php',
    158    'Twig\Node\Expression\ArrayExpression' => $strauss_src . '/twig/twig/src/Node/Expression/ArrayExpression.php',
    159    'Twig\Node\ForNode' => $strauss_src . '/twig/twig/src/Node/ForNode.php',
    160    'Twig\Node\ModuleNode' => $strauss_src . '/twig/twig/src/Node/ModuleNode.php',
    161    'Twig\Node\PrintNode' => $strauss_src . '/twig/twig/src/Node/PrintNode.php',
    162    'Twig\Node\MacroNode' => $strauss_src . '/twig/twig/src/Node/MacroNode.php',
    163    'Twig\Node\BlockNode' => $strauss_src . '/twig/twig/src/Node/BlockNode.php',
    164    'Twig\Node\IncludeNode' => $strauss_src . '/twig/twig/src/Node/IncludeNode.php',
    165    'Twig\Node\CheckSecurityNode' => $strauss_src . '/twig/twig/src/Node/CheckSecurityNode.php',
    166    'Twig\Node\NodeCaptureInterface' => $strauss_src . '/twig/twig/src/Node/NodeCaptureInterface.php',
    167    'Twig\Node\WithNode' => $strauss_src . '/twig/twig/src/Node/WithNode.php',
    168    'Twig\Node\SandboxNode' => $strauss_src . '/twig/twig/src/Node/SandboxNode.php',
    169    'Twig\Node\TextNode' => $strauss_src . '/twig/twig/src/Node/TextNode.php',
    170    'Twig\Node\BodyNode' => $strauss_src . '/twig/twig/src/Node/BodyNode.php',
    171    'Twig\Node\ForLoopNode' => $strauss_src . '/twig/twig/src/Node/ForLoopNode.php',
    172    'Twig\Node\IfNode' => $strauss_src . '/twig/twig/src/Node/IfNode.php',
    173    'Twig\Node\SetNode' => $strauss_src . '/twig/twig/src/Node/SetNode.php',
    174    'Twig\Node\DoNode' => $strauss_src . '/twig/twig/src/Node/DoNode.php',
    175    'Twig\Node\CheckToStringNode' => $strauss_src . '/twig/twig/src/Node/CheckToStringNode.php',
    176    'Twig\Node\AutoEscapeNode' => $strauss_src . '/twig/twig/src/Node/AutoEscapeNode.php',
    177    'Twig\Node\ImportNode' => $strauss_src . '/twig/twig/src/Node/ImportNode.php',
    178    'Twig\Node\Node' => $strauss_src . '/twig/twig/src/Node/Node.php',
    179    'Twig\Node\DeprecatedNode' => $strauss_src . '/twig/twig/src/Node/DeprecatedNode.php',
    180    'Twig\Node\BlockReferenceNode' => $strauss_src . '/twig/twig/src/Node/BlockReferenceNode.php',
    181    'Twig\Node\CheckSecurityCallNode' => $strauss_src . '/twig/twig/src/Node/CheckSecurityCallNode.php',
    182    'Twig\Util\TemplateDirIterator' => $strauss_src . '/twig/twig/src/Util/TemplateDirIterator.php',
    183    'Twig\Util\DeprecationCollector' => $strauss_src . '/twig/twig/src/Util/DeprecationCollector.php',
    184    'JUVO_MailEditor\Dependencies\Symfony\Polyfill\Mbstring\Mbstring' => $strauss_src . '/symfony/polyfill-mbstring/Mbstring.php',
    185    'JUVO_MailEditor\Dependencies\Symfony\Polyfill\Ctype\Ctype' => $strauss_src . '/symfony/polyfill-ctype/Ctype.php',
    186    'JUVO_MailEditor\Dependencies\Symfony\Polyfill\Php80\PhpToken' => $strauss_src . '/symfony/polyfill-php80/PhpToken.php',
    187    'JUVO_MailEditor\Dependencies\Symfony\Polyfill\Php80\Php80' => $strauss_src . '/symfony/polyfill-php80/Php80.php',
    188    'ValueError' => $strauss_src . '/symfony/polyfill-php80/Resources/stubs/ValueError.php',
    189    'PhpToken' => $strauss_src . '/symfony/polyfill-php80/Resources/stubs/PhpToken.php',
    190    'JUVO_MailEditorStringable' => $strauss_src . '/symfony/polyfill-php80/Resources/stubs/Stringable.php',
    191    'UnhandledMatchError' => $strauss_src . '/symfony/polyfill-php80/Resources/stubs/UnhandledMatchError.php',
    192    'Attribute' => $strauss_src . '/symfony/polyfill-php80/Resources/stubs/Attribute.php',
    193    'JUVO_MailEditor\Dependencies\Composer\Installers\FuelphpInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/FuelphpInstaller.php',
    194    'JUVO_MailEditor\Dependencies\Composer\Installers\ZikulaInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/ZikulaInstaller.php',
    195    'JUVO_MailEditor\Dependencies\Composer\Installers\MajimaInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/MajimaInstaller.php',
    196    'JUVO_MailEditor\Dependencies\Composer\Installers\AttogramInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/AttogramInstaller.php',
    197    'JUVO_MailEditor\Dependencies\Composer\Installers\Installer' => $strauss_src . '/composer/installers/src/Composer/Installers/Installer.php',
    198    'JUVO_MailEditor\Dependencies\Composer\Installers\PantheonInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/PantheonInstaller.php',
    199    'JUVO_MailEditor\Dependencies\Composer\Installers\WHMCSInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/WHMCSInstaller.php',
    200    'JUVO_MailEditor\Dependencies\Composer\Installers\DokuWikiInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/DokuWikiInstaller.php',
    201    'JUVO_MailEditor\Dependencies\Composer\Installers\MayaInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/MayaInstaller.php',
    202    'JUVO_MailEditor\Dependencies\Composer\Installers\RoundcubeInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/RoundcubeInstaller.php',
    203    'JUVO_MailEditor\Dependencies\Composer\Installers\MagentoInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/MagentoInstaller.php',
    204    'JUVO_MailEditor\Dependencies\Composer\Installers\EzPlatformInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/EzPlatformInstaller.php',
    205    'JUVO_MailEditor\Dependencies\Composer\Installers\MODULEWorkInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/MODULEWorkInstaller.php',
    206    'JUVO_MailEditor\Dependencies\Composer\Installers\WolfCMSInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/WolfCMSInstaller.php',
    207    'JUVO_MailEditor\Dependencies\Composer\Installers\SiteDirectInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/SiteDirectInstaller.php',
    208    'JUVO_MailEditor\Dependencies\Composer\Installers\BonefishInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/BonefishInstaller.php',
    209    'JUVO_MailEditor\Dependencies\Composer\Installers\MediaWikiInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/MediaWikiInstaller.php',
    210    'JUVO_MailEditor\Dependencies\Composer\Installers\MiaoxingInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/MiaoxingInstaller.php',
    211    'JUVO_MailEditor\Dependencies\Composer\Installers\CroogoInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/CroogoInstaller.php',
    212    'JUVO_MailEditor\Dependencies\Composer\Installers\ZendInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/ZendInstaller.php',
    213    'JUVO_MailEditor\Dependencies\Composer\Installers\TastyIgniterInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/TastyIgniterInstaller.php',
    214    'JUVO_MailEditor\Dependencies\Composer\Installers\DframeInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/DframeInstaller.php',
    215    'JUVO_MailEditor\Dependencies\Composer\Installers\ClanCatsFrameworkInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/ClanCatsFrameworkInstaller.php',
    216    'JUVO_MailEditor\Dependencies\Composer\Installers\ModxInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/ModxInstaller.php',
    217    'JUVO_MailEditor\Dependencies\Composer\Installers\OntoWikiInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/OntoWikiInstaller.php',
    218    'JUVO_MailEditor\Dependencies\Composer\Installers\StarbugInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/StarbugInstaller.php',
    219    'JUVO_MailEditor\Dependencies\Composer\Installers\OsclassInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/OsclassInstaller.php',
    220    'JUVO_MailEditor\Dependencies\Composer\Installers\PlentymarketsInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/PlentymarketsInstaller.php',
    221    'JUVO_MailEditor\Dependencies\Composer\Installers\CockpitInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/CockpitInstaller.php',
    222    'JUVO_MailEditor\Dependencies\Composer\Installers\OctoberInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/OctoberInstaller.php',
    223    'JUVO_MailEditor\Dependencies\Composer\Installers\LanManagementSystemInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/LanManagementSystemInstaller.php',
    224    'JUVO_MailEditor\Dependencies\Composer\Installers\ChefInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/ChefInstaller.php',
    225    'JUVO_MailEditor\Dependencies\Composer\Installers\LithiumInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/LithiumInstaller.php',
    226    'JUVO_MailEditor\Dependencies\Composer\Installers\HuradInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/HuradInstaller.php',
    227    'JUVO_MailEditor\Dependencies\Composer\Installers\ShopwareInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/ShopwareInstaller.php',
    228    'JUVO_MailEditor\Dependencies\Composer\Installers\Plugin' => $strauss_src . '/composer/installers/src/Composer/Installers/Plugin.php',
    229    'JUVO_MailEditor\Dependencies\Composer\Installers\DrupalInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/DrupalInstaller.php',
    230    'JUVO_MailEditor\Dependencies\Composer\Installers\DolibarrInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/DolibarrInstaller.php',
    231    'JUVO_MailEditor\Dependencies\Composer\Installers\KodiCMSInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/KodiCMSInstaller.php',
    232    'JUVO_MailEditor\Dependencies\Composer\Installers\SyDESInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/SyDESInstaller.php',
    233    'JUVO_MailEditor\Dependencies\Composer\Installers\EliasisInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/EliasisInstaller.php',
    234    'JUVO_MailEditor\Dependencies\Composer\Installers\TaoInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/TaoInstaller.php',
    235    'JUVO_MailEditor\Dependencies\Composer\Installers\KohanaInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/KohanaInstaller.php',
    236    'JUVO_MailEditor\Dependencies\Composer\Installers\ImageCMSInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/ImageCMSInstaller.php',
    237    'JUVO_MailEditor\Dependencies\Composer\Installers\FuelInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/FuelInstaller.php',
    238    'JUVO_MailEditor\Dependencies\Composer\Installers\VanillaInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/VanillaInstaller.php',
    239    'JUVO_MailEditor\Dependencies\Composer\Installers\MakoInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/MakoInstaller.php',
    240    'JUVO_MailEditor\Dependencies\Composer\Installers\WinterInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/WinterInstaller.php',
    241    'JUVO_MailEditor\Dependencies\Composer\Installers\LaravelInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/LaravelInstaller.php',
    242    'JUVO_MailEditor\Dependencies\Composer\Installers\MantisBTInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/MantisBTInstaller.php',
    243    'JUVO_MailEditor\Dependencies\Composer\Installers\CiviCrmInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/CiviCrmInstaller.php',
    244    'JUVO_MailEditor\Dependencies\Composer\Installers\UserFrostingInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/UserFrostingInstaller.php',
    245    'JUVO_MailEditor\Dependencies\Composer\Installers\AkauntingInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/AkauntingInstaller.php',
    246    'JUVO_MailEditor\Dependencies\Composer\Installers\KnownInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/KnownInstaller.php',
    247    'JUVO_MailEditor\Dependencies\Composer\Installers\VgmcpInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/VgmcpInstaller.php',
    248    'JUVO_MailEditor\Dependencies\Composer\Installers\SilverStripeInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/SilverStripeInstaller.php',
    249    'JUVO_MailEditor\Dependencies\Composer\Installers\LavaLiteInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/LavaLiteInstaller.php',
    250    'JUVO_MailEditor\Dependencies\Composer\Installers\ProcessWireInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/ProcessWireInstaller.php',
    251    'JUVO_MailEditor\Dependencies\Composer\Installers\KanboardInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/KanboardInstaller.php',
    252    'JUVO_MailEditor\Dependencies\Composer\Installers\CakePHPInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/CakePHPInstaller.php',
    253    'JUVO_MailEditor\Dependencies\Composer\Installers\DecibelInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/DecibelInstaller.php',
    254    'JUVO_MailEditor\Dependencies\Composer\Installers\OxidInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/OxidInstaller.php',
    255    'JUVO_MailEditor\Dependencies\Composer\Installers\TheliaInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/TheliaInstaller.php',
    256    'JUVO_MailEditor\Dependencies\Composer\Installers\MODXEvoInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/MODXEvoInstaller.php',
    257    'JUVO_MailEditor\Dependencies\Composer\Installers\SyliusInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/SyliusInstaller.php',
    258    'JUVO_MailEditor\Dependencies\Composer\Installers\PrestashopInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/PrestashopInstaller.php',
    259    'JUVO_MailEditor\Dependencies\Composer\Installers\PPIInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/PPIInstaller.php',
    260    'JUVO_MailEditor\Dependencies\Composer\Installers\CodeIgniterInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/CodeIgniterInstaller.php',
    261    'JUVO_MailEditor\Dependencies\Composer\Installers\ItopInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/ItopInstaller.php',
    262    'JUVO_MailEditor\Dependencies\Composer\Installers\RadPHPInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/RadPHPInstaller.php',
    263    'JUVO_MailEditor\Dependencies\Composer\Installers\GravInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/GravInstaller.php',
    264    'JUVO_MailEditor\Dependencies\Composer\Installers\PhiftyInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/PhiftyInstaller.php',
    265    'JUVO_MailEditor\Dependencies\Composer\Installers\TuskInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/TuskInstaller.php',
    266    'JUVO_MailEditor\Dependencies\Composer\Installers\AsgardInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/AsgardInstaller.php',
    267    'JUVO_MailEditor\Dependencies\Composer\Installers\PxcmsInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/PxcmsInstaller.php',
    268    'JUVO_MailEditor\Dependencies\Composer\Installers\ExpressionEngineInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/ExpressionEngineInstaller.php',
    269    'JUVO_MailEditor\Dependencies\Composer\Installers\WordPressInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/WordPressInstaller.php',
    270    'JUVO_MailEditor\Dependencies\Composer\Installers\MauticInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/MauticInstaller.php',
    271    'JUVO_MailEditor\Dependencies\Composer\Installers\BitrixInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/BitrixInstaller.php',
    272    'JUVO_MailEditor\Dependencies\Composer\Installers\YawikInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/YawikInstaller.php',
    273    'JUVO_MailEditor\Dependencies\Composer\Installers\Redaxo5Installer' => $strauss_src . '/composer/installers/src/Composer/Installers/Redaxo5Installer.php',
    274    'JUVO_MailEditor\Dependencies\Composer\Installers\ReIndexInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/ReIndexInstaller.php',
    275    'JUVO_MailEditor\Dependencies\Composer\Installers\AnnotateCmsInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/AnnotateCmsInstaller.php',
    276    'JUVO_MailEditor\Dependencies\Composer\Installers\MoodleInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/MoodleInstaller.php',
    277    'JUVO_MailEditor\Dependencies\Composer\Installers\MatomoInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/MatomoInstaller.php',
    278    'JUVO_MailEditor\Dependencies\Composer\Installers\PortoInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/PortoInstaller.php',
    279    'JUVO_MailEditor\Dependencies\Composer\Installers\BaseInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/BaseInstaller.php',
    280    'JUVO_MailEditor\Dependencies\Composer\Installers\PuppetInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/PuppetInstaller.php',
    281    'JUVO_MailEditor\Dependencies\Composer\Installers\PiwikInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/PiwikInstaller.php',
    282    'JUVO_MailEditor\Dependencies\Composer\Installers\RedaxoInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/RedaxoInstaller.php',
    283    'JUVO_MailEditor\Dependencies\Composer\Installers\PhpBBInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/PhpBBInstaller.php',
    284    'JUVO_MailEditor\Dependencies\Composer\Installers\Concrete5Installer' => $strauss_src . '/composer/installers/src/Composer/Installers/Concrete5Installer.php',
    285    'JUVO_MailEditor\Dependencies\Composer\Installers\MicroweberInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/MicroweberInstaller.php',
    286    'JUVO_MailEditor\Dependencies\Composer\Installers\ElggInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/ElggInstaller.php',
    287    'JUVO_MailEditor\Dependencies\Composer\Installers\AglInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/AglInstaller.php',
    288    'JUVO_MailEditor\Dependencies\Composer\Installers\SMFInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/SMFInstaller.php',
    289    'Timber\Image' => $strauss_src . '/timber/timber/src/Image.php',
    290    'Timber\Comment' => $strauss_src . '/timber/timber/src/Comment.php',
    291    'Timber\PostArrayObject' => $strauss_src . '/timber/timber/src/PostArrayObject.php',
    292    'Timber\Archives' => $strauss_src . '/timber/timber/src/Archives.php',
    293    'Timber\CommentThread' => $strauss_src . '/timber/timber/src/CommentThread.php',
    294    'Timber\CoreEntityInterface' => $strauss_src . '/timber/timber/src/CoreEntityInterface.php',
    295    'Timber\CoreEntity' => $strauss_src . '/timber/timber/src/CoreEntity.php',
    296    'Timber\CoreInterface' => $strauss_src . '/timber/timber/src/CoreInterface.php',
    297    'Timber\Image\Operation\ToWebp' => $strauss_src . '/timber/timber/src/Image/Operation/ToWebp.php',
    298    'Timber\Image\Operation\Letterbox' => $strauss_src . '/timber/timber/src/Image/Operation/Letterbox.php',
    299    'Timber\Image\Operation\ToJpg' => $strauss_src . '/timber/timber/src/Image/Operation/ToJpg.php',
    300    'Timber\Image\Operation\Retina' => $strauss_src . '/timber/timber/src/Image/Operation/Retina.php',
    301    'Timber\Image\Operation\Resize' => $strauss_src . '/timber/timber/src/Image/Operation/Resize.php',
    302    'Timber\Image\Operation' => $strauss_src . '/timber/timber/src/Image/Operation.php',
    303    'Timber\LocationManager' => $strauss_src . '/timber/timber/src/LocationManager.php',
    304    'Timber\PathHelper' => $strauss_src . '/timber/timber/src/PathHelper.php',
    305    'Timber\URLHelper' => $strauss_src . '/timber/timber/src/URLHelper.php',
    306    'Timber\MenuItem' => $strauss_src . '/timber/timber/src/MenuItem.php',
    307    'Timber\Loader' => $strauss_src . '/timber/timber/src/Loader.php',
    308    'Timber\Timber' => $strauss_src . '/timber/timber/src/Timber.php',
    309    'Timber\Site' => $strauss_src . '/timber/timber/src/Site.php',
    310    'Timber\DatedInterface' => $strauss_src . '/timber/timber/src/DatedInterface.php',
    311    'Timber\Cache\Cleaner' => $strauss_src . '/timber/timber/src/Cache/Cleaner.php',
    312    'Timber\Cache\KeyGenerator' => $strauss_src . '/timber/timber/src/Cache/KeyGenerator.php',
    313    'Timber\Cache\WPObjectCacheAdapter' => $strauss_src . '/timber/timber/src/Cache/WPObjectCacheAdapter.php',
    314    'Timber\Cache\TimberKeyGeneratorInterface' => $strauss_src . '/timber/timber/src/Cache/TimberKeyGeneratorInterface.php',
    315    'Timber\DateTimeHelper' => $strauss_src . '/timber/timber/src/DateTimeHelper.php',
    316    'Timber\ImageDimensions' => $strauss_src . '/timber/timber/src/ImageDimensions.php',
    317    'Timber\ImageInterface' => $strauss_src . '/timber/timber/src/ImageInterface.php',
    318    'Timber\Core' => $strauss_src . '/timber/timber/src/Core.php',
    319    'Timber\Admin' => $strauss_src . '/timber/timber/src/Admin.php',
    320    'Timber\PostType' => $strauss_src . '/timber/timber/src/PostType.php',
    321    'Timber\Attachment' => $strauss_src . '/timber/timber/src/Attachment.php',
    322    'Timber\Integration\CoAuthorsPlus\CoAuthorsPlusUser' => $strauss_src . '/timber/timber/src/Integration/CoAuthorsPlus/CoAuthorsPlusUser.php',
    323    'Timber\Integration\CLI\TimberCommand' => $strauss_src . '/timber/timber/src/Integration/CLI/TimberCommand.php',
    324    'Timber\Integration\AcfIntegration' => $strauss_src . '/timber/timber/src/Integration/AcfIntegration.php',
    325    'Timber\Integration\CoAuthorsPlusIntegration' => $strauss_src . '/timber/timber/src/Integration/CoAuthorsPlusIntegration.php',
    326    'Timber\Integration\WpCliIntegration' => $strauss_src . '/timber/timber/src/Integration/WpCliIntegration.php',
    327    'Timber\Integration\WpmlIntegration' => $strauss_src . '/timber/timber/src/Integration/WpmlIntegration.php',
    328    'Timber\Integration\IntegrationInterface' => $strauss_src . '/timber/timber/src/Integration/IntegrationInterface.php',
    329    'Timber\PagesMenu' => $strauss_src . '/timber/timber/src/PagesMenu.php',
    330    'Timber\Factory\TermFactory' => $strauss_src . '/timber/timber/src/Factory/TermFactory.php',
    331    'Timber\Factory\MenuFactory' => $strauss_src . '/timber/timber/src/Factory/MenuFactory.php',
    332    'Timber\Factory\PostFactory' => $strauss_src . '/timber/timber/src/Factory/PostFactory.php',
    333    'Timber\Factory\UserFactory' => $strauss_src . '/timber/timber/src/Factory/UserFactory.php',
    334    'Timber\Factory\CommentFactory' => $strauss_src . '/timber/timber/src/Factory/CommentFactory.php',
    335    'Timber\Factory\PagesMenuFactory' => $strauss_src . '/timber/timber/src/Factory/PagesMenuFactory.php',
    336    'Timber\Factory\MenuItemFactory' => $strauss_src . '/timber/timber/src/Factory/MenuItemFactory.php',
    337    'Timber\MetaInterface' => $strauss_src . '/timber/timber/src/MetaInterface.php',
    338    'Timber\PostExcerpt' => $strauss_src . '/timber/timber/src/PostExcerpt.php',
    339    'Timber\Helper' => $strauss_src . '/timber/timber/src/Helper.php',
    340    'Timber\PostsIterator' => $strauss_src . '/timber/timber/src/PostsIterator.php',
    341    'Timber\Pagination' => $strauss_src . '/timber/timber/src/Pagination.php',
    342    'Timber\User' => $strauss_src . '/timber/timber/src/User.php',
    343    'Timber\AccessesPostsLazily' => $strauss_src . '/timber/timber/src/AccessesPostsLazily.php',
    344    'Timber\Setupable' => $strauss_src . '/timber/timber/src/Setupable.php',
    345    'Timber\Post' => $strauss_src . '/timber/timber/src/Post.php',
    346    'Timber\Twig' => $strauss_src . '/timber/timber/src/Twig.php',
    347    'Timber\Term' => $strauss_src . '/timber/timber/src/Term.php',
    348    'Timber\Menu' => $strauss_src . '/timber/timber/src/Menu.php',
    349    'Timber\Theme' => $strauss_src . '/timber/timber/src/Theme.php',
    350    'Timber\PostQuery' => $strauss_src . '/timber/timber/src/PostQuery.php',
    351    'Timber\FunctionWrapper' => $strauss_src . '/timber/timber/src/FunctionWrapper.php',
    352    'Timber\ImageHelper' => $strauss_src . '/timber/timber/src/ImageHelper.php',
    353    'Timber\TextHelper' => $strauss_src . '/timber/timber/src/TextHelper.php',
    354    'Timber\PostCollectionInterface' => $strauss_src . '/timber/timber/src/PostCollectionInterface.php',
    355    'Timber\ExternalImage' => $strauss_src . '/timber/timber/src/ExternalImage.php',
    3568);
  • juvo-mail-editor/trunk/juvo-mail-editor.php

    r3066961 r3067018  
    88 * Text Domain:     juvo-mail-editor
    99 * Domain Path:     /languages
    10  * Version:         3.1.5
     10 * Version:         3.1.6
    1111 * Requires at least: 6.5
    1212 * Requires PHP: 7.4
     
    3232 * Add file check to avoid autoloading if included as sub-package
    3333 */
    34 $juvo_mail_editor_plugin_dir = plugin_dir_path(__FILE__);
    3534if (
    36     file_exists($juvo_mail_editor_plugin_dir . 'vendor/autoload.php')
    37     && file_exists($juvo_mail_editor_plugin_dir . 'vendor/vendor-prefixed/autoload.php')
     35    file_exists(JUVO_MAIL_EDITOR_PATH . 'vendor/autoload.php')
     36    && file_exists(JUVO_MAIL_EDITOR_PATH . 'vendor/vendor-prefixed/autoload.php')
    3837) {
    39     require plugin_dir_path(__FILE__) . 'vendor/autoload.php';
    40     require plugin_dir_path(__FILE__) . 'vendor/vendor-prefixed/autoload.php';
     38    require JUVO_MAIL_EDITOR_PATH . 'vendor/autoload.php';
     39    require JUVO_MAIL_EDITOR_PATH . 'vendor/vendor-prefixed/autoload.php';
    4140}
    4241
     
    4443 * Load cmb2 manually and not by composer because file autoloading does not work
    4544 */
    46 if (file_exists($juvo_mail_editor_plugin_dir . 'vendor/cmb2/cmb2/init.php')) {
     45if (file_exists(JUVO_MAIL_EDITOR_PATH . 'vendor/cmb2/cmb2/init.php')) {
    4746    // Path for standalone plugin. Load from local vendor folder
    48     require plugin_dir_path(__FILE__) . 'vendor/cmb2/cmb2/init.php';
     47    require JUVO_MAIL_EDITOR_PATH . 'vendor/cmb2/cmb2/init.php';
    4948} else {
    5049    // Lookup vendor folder when included as library
    51     preg_match('/(.*)vendor/U', $juvo_mail_editor_plugin_dir, $matches);
     50    preg_match('/(.*)vendor/U', JUVO_MAIL_EDITOR_PATH, $matches);
    5251    if (file_exists($matches[1] . 'vendor/cmb2/cmb2/init.php')) {
    5352        require $matches[1] . 'vendor/cmb2/cmb2/init.php';
  • juvo-mail-editor/trunk/readme.txt

    r3066961 r3067018  
    44License: GPLv2 or later
    55Tested up to: 6.3
    6 Stable tag: 3.1.5
     6Stable tag: 3.1.6
    77
    88JUVO Mail Editor helps to modify the standard WordPress Mailings and allows adding dynamic mail triggers.
  • juvo-mail-editor/trunk/vendor/autoload.php

    r3066961 r3067018  
    2323require_once __DIR__ . '/composer/autoload_real.php';
    2424
    25 return ComposerAutoloaderInitb3312db7eda8973b26180d7301fd2d8b::getLoader();
     25return ComposerAutoloaderInit125c45f3cabfd143f1cb2d07a562de78::getLoader();
  • juvo-mail-editor/trunk/vendor/composer/autoload_files.php

    r3066961 r3067018  
    77
    88return array(
    9     'a4a119a56e50fbb293281d9a48007e0e' => $baseDir . '/vendor/vendor-prefixed/symfony/polyfill-php80/bootstrap.php',
    10     '320cde22f66dd4f5d3fd621d3e88b98f' => $baseDir . '/vendor/vendor-prefixed/symfony/polyfill-ctype/bootstrap.php',
    11     '0e6d7bf4a5811bfa5cf40c5ccd6fae6a' => $baseDir . '/vendor/vendor-prefixed/symfony/polyfill-mbstring/bootstrap.php',
     9    'a4a119a56e50fbb293281d9a48007e0e' => $vendorDir . '/symfony/polyfill-php80/bootstrap.php',
     10    '320cde22f66dd4f5d3fd621d3e88b98f' => $vendorDir . '/symfony/polyfill-ctype/bootstrap.php',
     11    '0e6d7bf4a5811bfa5cf40c5ccd6fae6a' => $vendorDir . '/symfony/polyfill-mbstring/bootstrap.php',
    1212);
  • juvo-mail-editor/trunk/vendor/composer/autoload_real.php

    r3066961 r3067018  
    33// autoload_real.php @generated by Composer
    44
    5 class ComposerAutoloaderInitb3312db7eda8973b26180d7301fd2d8b
     5class ComposerAutoloaderInit125c45f3cabfd143f1cb2d07a562de78
    66{
    77    private static $loader;
     
    2323        }
    2424
    25         spl_autoload_register(array('ComposerAutoloaderInitb3312db7eda8973b26180d7301fd2d8b', 'loadClassLoader'), true, true);
     25        spl_autoload_register(array('ComposerAutoloaderInit125c45f3cabfd143f1cb2d07a562de78', 'loadClassLoader'), true, true);
    2626        self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
    27         spl_autoload_unregister(array('ComposerAutoloaderInitb3312db7eda8973b26180d7301fd2d8b', 'loadClassLoader'));
     27        spl_autoload_unregister(array('ComposerAutoloaderInit125c45f3cabfd143f1cb2d07a562de78', 'loadClassLoader'));
    2828
    2929        require __DIR__ . '/autoload_static.php';
    30         call_user_func(\Composer\Autoload\ComposerStaticInitb3312db7eda8973b26180d7301fd2d8b::getInitializer($loader));
     30        call_user_func(\Composer\Autoload\ComposerStaticInit125c45f3cabfd143f1cb2d07a562de78::getInitializer($loader));
    3131
    3232        $loader->setClassMapAuthoritative(true);
    3333        $loader->register(true);
    3434
    35         $filesToLoad = \Composer\Autoload\ComposerStaticInitb3312db7eda8973b26180d7301fd2d8b::$files;
     35        $filesToLoad = \Composer\Autoload\ComposerStaticInit125c45f3cabfd143f1cb2d07a562de78::$files;
    3636        $requireFile = \Closure::bind(static function ($fileIdentifier, $file) {
    3737            if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
  • juvo-mail-editor/trunk/vendor/composer/autoload_static.php

    r3066961 r3067018  
    55namespace Composer\Autoload;
    66
    7 class ComposerStaticInitb3312db7eda8973b26180d7301fd2d8b
     7class ComposerStaticInit125c45f3cabfd143f1cb2d07a562de78
    88{
    99    public static $files = array (
    10         'a4a119a56e50fbb293281d9a48007e0e' => __DIR__ . '/../../vendor/vendor-prefixed/' . '/symfony/polyfill-php80/bootstrap.php',
    11         '320cde22f66dd4f5d3fd621d3e88b98f' => __DIR__ . '/../../vendor/vendor-prefixed/' . '/symfony/polyfill-ctype/bootstrap.php',
    12         '0e6d7bf4a5811bfa5cf40c5ccd6fae6a' => __DIR__ . '/../../vendor/vendor-prefixed/' . '/symfony/polyfill-mbstring/bootstrap.php',
     10        'a4a119a56e50fbb293281d9a48007e0e' => __DIR__ . '/..' . '/symfony/polyfill-php80/bootstrap.php',
     11        '320cde22f66dd4f5d3fd621d3e88b98f' => __DIR__ . '/..' . '/symfony/polyfill-ctype/bootstrap.php',
     12        '0e6d7bf4a5811bfa5cf40c5ccd6fae6a' => __DIR__ . '/..' . '/symfony/polyfill-mbstring/bootstrap.php',
    1313    );
    1414
     
    454454    {
    455455        return \Closure::bind(function () use ($loader) {
    456             $loader->prefixLengthsPsr4 = ComposerStaticInitb3312db7eda8973b26180d7301fd2d8b::$prefixLengthsPsr4;
    457             $loader->prefixDirsPsr4 = ComposerStaticInitb3312db7eda8973b26180d7301fd2d8b::$prefixDirsPsr4;
    458             $loader->classMap = ComposerStaticInitb3312db7eda8973b26180d7301fd2d8b::$classMap;
     456            $loader->prefixLengthsPsr4 = ComposerStaticInit125c45f3cabfd143f1cb2d07a562de78::$prefixLengthsPsr4;
     457            $loader->prefixDirsPsr4 = ComposerStaticInit125c45f3cabfd143f1cb2d07a562de78::$prefixDirsPsr4;
     458            $loader->classMap = ComposerStaticInit125c45f3cabfd143f1cb2d07a562de78::$classMap;
    459459
    460460        }, null, ClassLoader::class);
  • juvo-mail-editor/trunk/vendor/composer/installed.php

    r3066961 r3067018  
    22    'root' => array(
    33        'name' => 'juvo/mail-editor',
    4         'pretty_version' => '3.1.5',
    5         'version' => '3.1.5.0',
    6         'reference' => '9d7042f314404367536c858fb7f28752a9ff0129',
     4        'pretty_version' => '3.1.6',
     5        'version' => '3.1.6.0',
     6        'reference' => '63ef9debafcac090a1f81e5eda29cc4fc8e270d7',
    77        'type' => 'wordpress-plugin',
    88        'install_path' => __DIR__ . '/../../',
     
    3030        ),
    3131        'juvo/mail-editor' => array(
    32             'pretty_version' => '3.1.5',
    33             'version' => '3.1.5.0',
    34             'reference' => '9d7042f314404367536c858fb7f28752a9ff0129',
     32            'pretty_version' => '3.1.6',
     33            'version' => '3.1.6.0',
     34            'reference' => '63ef9debafcac090a1f81e5eda29cc4fc8e270d7',
    3535            'type' => 'wordpress-plugin',
    3636            'install_path' => __DIR__ . '/../../',
  • juvo-mail-editor/trunk/vendor/symfony/polyfill-ctype/bootstrap.php

    r3066961 r3067018  
    1 <?php // This file was deleted by {@see https://github.com/BrianHenryIE/strauss}.
     1<?php
     2
     3/*
     4 * This file is part of the Symfony package.
     5 *
     6 * (c) Fabien Potencier <[email protected]>
     7 *
     8 * For the full copyright and license information, please view the LICENSE
     9 * file that was distributed with this source code.
     10 */
     11
     12use Symfony\Polyfill\Ctype as p;
     13
     14if (\PHP_VERSION_ID >= 80000) {
     15    return require __DIR__.'/bootstrap80.php';
     16}
     17
     18if (!function_exists('ctype_alnum')) {
     19    function ctype_alnum($text) { return p\Ctype::ctype_alnum($text); }
     20}
     21if (!function_exists('ctype_alpha')) {
     22    function ctype_alpha($text) { return p\Ctype::ctype_alpha($text); }
     23}
     24if (!function_exists('ctype_cntrl')) {
     25    function ctype_cntrl($text) { return p\Ctype::ctype_cntrl($text); }
     26}
     27if (!function_exists('ctype_digit')) {
     28    function ctype_digit($text) { return p\Ctype::ctype_digit($text); }
     29}
     30if (!function_exists('ctype_graph')) {
     31    function ctype_graph($text) { return p\Ctype::ctype_graph($text); }
     32}
     33if (!function_exists('ctype_lower')) {
     34    function ctype_lower($text) { return p\Ctype::ctype_lower($text); }
     35}
     36if (!function_exists('ctype_print')) {
     37    function ctype_print($text) { return p\Ctype::ctype_print($text); }
     38}
     39if (!function_exists('ctype_punct')) {
     40    function ctype_punct($text) { return p\Ctype::ctype_punct($text); }
     41}
     42if (!function_exists('ctype_space')) {
     43    function ctype_space($text) { return p\Ctype::ctype_space($text); }
     44}
     45if (!function_exists('ctype_upper')) {
     46    function ctype_upper($text) { return p\Ctype::ctype_upper($text); }
     47}
     48if (!function_exists('ctype_xdigit')) {
     49    function ctype_xdigit($text) { return p\Ctype::ctype_xdigit($text); }
     50}
  • juvo-mail-editor/trunk/vendor/symfony/polyfill-mbstring/bootstrap.php

    r3066961 r3067018  
    1 <?php // This file was deleted by {@see https://github.com/BrianHenryIE/strauss}.
     1<?php
     2
     3/*
     4 * This file is part of the Symfony package.
     5 *
     6 * (c) Fabien Potencier <[email protected]>
     7 *
     8 * For the full copyright and license information, please view the LICENSE
     9 * file that was distributed with this source code.
     10 */
     11
     12use Symfony\Polyfill\Mbstring as p;
     13
     14if (\PHP_VERSION_ID >= 80000) {
     15    return require __DIR__.'/bootstrap80.php';
     16}
     17
     18if (!function_exists('mb_convert_encoding')) {
     19    function mb_convert_encoding($string, $to_encoding, $from_encoding = null) { return p\Mbstring::mb_convert_encoding($string, $to_encoding, $from_encoding); }
     20}
     21if (!function_exists('mb_decode_mimeheader')) {
     22    function mb_decode_mimeheader($string) { return p\Mbstring::mb_decode_mimeheader($string); }
     23}
     24if (!function_exists('mb_encode_mimeheader')) {
     25    function mb_encode_mimeheader($string, $charset = null, $transfer_encoding = null, $newline = "\r\n", $indent = 0) { return p\Mbstring::mb_encode_mimeheader($string, $charset, $transfer_encoding, $newline, $indent); }
     26}
     27if (!function_exists('mb_decode_numericentity')) {
     28    function mb_decode_numericentity($string, $map, $encoding = null) { return p\Mbstring::mb_decode_numericentity($string, $map, $encoding); }
     29}
     30if (!function_exists('mb_encode_numericentity')) {
     31    function mb_encode_numericentity($string, $map, $encoding = null, $hex = false) { return p\Mbstring::mb_encode_numericentity($string, $map, $encoding, $hex); }
     32}
     33if (!function_exists('mb_convert_case')) {
     34    function mb_convert_case($string, $mode, $encoding = null) { return p\Mbstring::mb_convert_case($string, $mode, $encoding); }
     35}
     36if (!function_exists('mb_internal_encoding')) {
     37    function mb_internal_encoding($encoding = null) { return p\Mbstring::mb_internal_encoding($encoding); }
     38}
     39if (!function_exists('mb_language')) {
     40    function mb_language($language = null) { return p\Mbstring::mb_language($language); }
     41}
     42if (!function_exists('mb_list_encodings')) {
     43    function mb_list_encodings() { return p\Mbstring::mb_list_encodings(); }
     44}
     45if (!function_exists('mb_encoding_aliases')) {
     46    function mb_encoding_aliases($encoding) { return p\Mbstring::mb_encoding_aliases($encoding); }
     47}
     48if (!function_exists('mb_check_encoding')) {
     49    function mb_check_encoding($value = null, $encoding = null) { return p\Mbstring::mb_check_encoding($value, $encoding); }
     50}
     51if (!function_exists('mb_detect_encoding')) {
     52    function mb_detect_encoding($string, $encodings = null, $strict = false) { return p\Mbstring::mb_detect_encoding($string, $encodings, $strict); }
     53}
     54if (!function_exists('mb_detect_order')) {
     55    function mb_detect_order($encoding = null) { return p\Mbstring::mb_detect_order($encoding); }
     56}
     57if (!function_exists('mb_parse_str')) {
     58    function mb_parse_str($string, &$result = []) { parse_str($string, $result); return (bool) $result; }
     59}
     60if (!function_exists('mb_strlen')) {
     61    function mb_strlen($string, $encoding = null) { return p\Mbstring::mb_strlen($string, $encoding); }
     62}
     63if (!function_exists('mb_strpos')) {
     64    function mb_strpos($haystack, $needle, $offset = 0, $encoding = null) { return p\Mbstring::mb_strpos($haystack, $needle, $offset, $encoding); }
     65}
     66if (!function_exists('mb_strtolower')) {
     67    function mb_strtolower($string, $encoding = null) { return p\Mbstring::mb_strtolower($string, $encoding); }
     68}
     69if (!function_exists('mb_strtoupper')) {
     70    function mb_strtoupper($string, $encoding = null) { return p\Mbstring::mb_strtoupper($string, $encoding); }
     71}
     72if (!function_exists('mb_substitute_character')) {
     73    function mb_substitute_character($substitute_character = null) { return p\Mbstring::mb_substitute_character($substitute_character); }
     74}
     75if (!function_exists('mb_substr')) {
     76    function mb_substr($string, $start, $length = 2147483647, $encoding = null) { return p\Mbstring::mb_substr($string, $start, $length, $encoding); }
     77}
     78if (!function_exists('mb_stripos')) {
     79    function mb_stripos($haystack, $needle, $offset = 0, $encoding = null) { return p\Mbstring::mb_stripos($haystack, $needle, $offset, $encoding); }
     80}
     81if (!function_exists('mb_stristr')) {
     82    function mb_stristr($haystack, $needle, $before_needle = false, $encoding = null) { return p\Mbstring::mb_stristr($haystack, $needle, $before_needle, $encoding); }
     83}
     84if (!function_exists('mb_strrchr')) {
     85    function mb_strrchr($haystack, $needle, $before_needle = false, $encoding = null) { return p\Mbstring::mb_strrchr($haystack, $needle, $before_needle, $encoding); }
     86}
     87if (!function_exists('mb_strrichr')) {
     88    function mb_strrichr($haystack, $needle, $before_needle = false, $encoding = null) { return p\Mbstring::mb_strrichr($haystack, $needle, $before_needle, $encoding); }
     89}
     90if (!function_exists('mb_strripos')) {
     91    function mb_strripos($haystack, $needle, $offset = 0, $encoding = null) { return p\Mbstring::mb_strripos($haystack, $needle, $offset, $encoding); }
     92}
     93if (!function_exists('mb_strrpos')) {
     94    function mb_strrpos($haystack, $needle, $offset = 0, $encoding = null) { return p\Mbstring::mb_strrpos($haystack, $needle, $offset, $encoding); }
     95}
     96if (!function_exists('mb_strstr')) {
     97    function mb_strstr($haystack, $needle, $before_needle = false, $encoding = null) { return p\Mbstring::mb_strstr($haystack, $needle, $before_needle, $encoding); }
     98}
     99if (!function_exists('mb_get_info')) {
     100    function mb_get_info($type = 'all') { return p\Mbstring::mb_get_info($type); }
     101}
     102if (!function_exists('mb_http_output')) {
     103    function mb_http_output($encoding = null) { return p\Mbstring::mb_http_output($encoding); }
     104}
     105if (!function_exists('mb_strwidth')) {
     106    function mb_strwidth($string, $encoding = null) { return p\Mbstring::mb_strwidth($string, $encoding); }
     107}
     108if (!function_exists('mb_substr_count')) {
     109    function mb_substr_count($haystack, $needle, $encoding = null) { return p\Mbstring::mb_substr_count($haystack, $needle, $encoding); }
     110}
     111if (!function_exists('mb_output_handler')) {
     112    function mb_output_handler($string, $status) { return p\Mbstring::mb_output_handler($string, $status); }
     113}
     114if (!function_exists('mb_http_input')) {
     115    function mb_http_input($type = null) { return p\Mbstring::mb_http_input($type); }
     116}
     117
     118if (!function_exists('mb_convert_variables')) {
     119    function mb_convert_variables($to_encoding, $from_encoding, &...$vars) { return p\Mbstring::mb_convert_variables($to_encoding, $from_encoding, ...$vars); }
     120}
     121
     122if (!function_exists('mb_ord')) {
     123    function mb_ord($string, $encoding = null) { return p\Mbstring::mb_ord($string, $encoding); }
     124}
     125if (!function_exists('mb_chr')) {
     126    function mb_chr($codepoint, $encoding = null) { return p\Mbstring::mb_chr($codepoint, $encoding); }
     127}
     128if (!function_exists('mb_scrub')) {
     129    function mb_scrub($string, $encoding = null) { $encoding = null === $encoding ? mb_internal_encoding() : $encoding; return mb_convert_encoding($string, $encoding, $encoding); }
     130}
     131if (!function_exists('mb_str_split')) {
     132    function mb_str_split($string, $length = 1, $encoding = null) { return p\Mbstring::mb_str_split($string, $length, $encoding); }
     133}
     134
     135if (!function_exists('mb_str_pad')) {
     136    function mb_str_pad(string $string, int $length, string $pad_string = ' ', int $pad_type = STR_PAD_RIGHT, ?string $encoding = null): string { return p\Mbstring::mb_str_pad($string, $length, $pad_string, $pad_type, $encoding); }
     137}
     138
     139if (extension_loaded('mbstring')) {
     140    return;
     141}
     142
     143if (!defined('MB_CASE_UPPER')) {
     144    define('MB_CASE_UPPER', 0);
     145}
     146if (!defined('MB_CASE_LOWER')) {
     147    define('MB_CASE_LOWER', 1);
     148}
     149if (!defined('MB_CASE_TITLE')) {
     150    define('MB_CASE_TITLE', 2);
     151}
  • juvo-mail-editor/trunk/vendor/symfony/polyfill-php80/bootstrap.php

    r3066961 r3067018  
    1 <?php // This file was deleted by {@see https://github.com/BrianHenryIE/strauss}.
     1<?php
     2
     3/*
     4 * This file is part of the Symfony package.
     5 *
     6 * (c) Fabien Potencier <[email protected]>
     7 *
     8 * For the full copyright and license information, please view the LICENSE
     9 * file that was distributed with this source code.
     10 */
     11
     12use Symfony\Polyfill\Php80 as p;
     13
     14if (\PHP_VERSION_ID >= 80000) {
     15    return;
     16}
     17
     18if (!defined('FILTER_VALIDATE_BOOL') && defined('FILTER_VALIDATE_BOOLEAN')) {
     19    define('FILTER_VALIDATE_BOOL', \FILTER_VALIDATE_BOOLEAN);
     20}
     21
     22if (!function_exists('fdiv')) {
     23    function fdiv(float $num1, float $num2): float { return p\Php80::fdiv($num1, $num2); }
     24}
     25if (!function_exists('preg_last_error_msg')) {
     26    function preg_last_error_msg(): string { return p\Php80::preg_last_error_msg(); }
     27}
     28if (!function_exists('str_contains')) {
     29    function str_contains(?string $haystack, ?string $needle): bool { return p\Php80::str_contains($haystack ?? '', $needle ?? ''); }
     30}
     31if (!function_exists('str_starts_with')) {
     32    function str_starts_with(?string $haystack, ?string $needle): bool { return p\Php80::str_starts_with($haystack ?? '', $needle ?? ''); }
     33}
     34if (!function_exists('str_ends_with')) {
     35    function str_ends_with(?string $haystack, ?string $needle): bool { return p\Php80::str_ends_with($haystack ?? '', $needle ?? ''); }
     36}
     37if (!function_exists('get_debug_type')) {
     38    function get_debug_type($value): string { return p\Php80::get_debug_type($value); }
     39}
     40if (!function_exists('get_resource_id')) {
     41    function get_resource_id($resource): int { return p\Php80::get_resource_id($resource); }
     42}
  • juvo-mail-editor/trunk/vendor/vendor-prefixed/autoload-classmap.php

    r3066961 r3067018  
    66
    77return array(
    8    'Twig\Compiler' => $strauss_src . '/twig/twig/src/Compiler.php',
    9    'Twig\Extension\ProfilerExtension' => $strauss_src . '/twig/twig/src/Extension/ProfilerExtension.php',
    10    'Twig\Extension\StagingExtension' => $strauss_src . '/twig/twig/src/Extension/StagingExtension.php',
    11    'Twig\Extension\DebugExtension' => $strauss_src . '/twig/twig/src/Extension/DebugExtension.php',
    12    'Twig\Extension\OptimizerExtension' => $strauss_src . '/twig/twig/src/Extension/OptimizerExtension.php',
    13    'Twig\Extension\StringLoaderExtension' => $strauss_src . '/twig/twig/src/Extension/StringLoaderExtension.php',
    14    'Twig\Extension\ExtensionInterface' => $strauss_src . '/twig/twig/src/Extension/ExtensionInterface.php',
    15    'Twig\Extension\RuntimeExtensionInterface' => $strauss_src . '/twig/twig/src/Extension/RuntimeExtensionInterface.php',
    16    'Twig\Extension\EscaperExtension' => $strauss_src . '/twig/twig/src/Extension/EscaperExtension.php',
    17    'Twig\Extension\GlobalsInterface' => $strauss_src . '/twig/twig/src/Extension/GlobalsInterface.php',
    18    'Twig\Extension\AbstractExtension' => $strauss_src . '/twig/twig/src/Extension/AbstractExtension.php',
    19    'Twig\Extension\SandboxExtension' => $strauss_src . '/twig/twig/src/Extension/SandboxExtension.php',
    20    'Twig\Extension\CoreExtension' => $strauss_src . '/twig/twig/src/Extension/CoreExtension.php',
    21    'Twig\Token' => $strauss_src . '/twig/twig/src/Token.php',
    22    'Twig\Template' => $strauss_src . '/twig/twig/src/Template.php',
    23    'Twig\Loader\LoaderInterface' => $strauss_src . '/twig/twig/src/Loader/LoaderInterface.php',
    24    'Twig\Loader\FilesystemLoader' => $strauss_src . '/twig/twig/src/Loader/FilesystemLoader.php',
    25    'Twig\Loader\ChainLoader' => $strauss_src . '/twig/twig/src/Loader/ChainLoader.php',
    26    'Twig\Loader\ArrayLoader' => $strauss_src . '/twig/twig/src/Loader/ArrayLoader.php',
    27    'Twig\Source' => $strauss_src . '/twig/twig/src/Source.php',
    28    'Twig\NodeTraverser' => $strauss_src . '/twig/twig/src/NodeTraverser.php',
    29    'Twig\Profiler\Dumper\TextDumper' => $strauss_src . '/twig/twig/src/Profiler/Dumper/TextDumper.php',
    30    'Twig\Profiler\Dumper\BlackfireDumper' => $strauss_src . '/twig/twig/src/Profiler/Dumper/BlackfireDumper.php',
    31    'Twig\Profiler\Dumper\HtmlDumper' => $strauss_src . '/twig/twig/src/Profiler/Dumper/HtmlDumper.php',
    32    'Twig\Profiler\Dumper\BaseDumper' => $strauss_src . '/twig/twig/src/Profiler/Dumper/BaseDumper.php',
    33    'Twig\Profiler\NodeVisitor\ProfilerNodeVisitor' => $strauss_src . '/twig/twig/src/Profiler/NodeVisitor/ProfilerNodeVisitor.php',
    34    'Twig\Profiler\Profile' => $strauss_src . '/twig/twig/src/Profiler/Profile.php',
    35    'Twig\Profiler\Node\LeaveProfileNode' => $strauss_src . '/twig/twig/src/Profiler/Node/LeaveProfileNode.php',
    36    'Twig\Profiler\Node\EnterProfileNode' => $strauss_src . '/twig/twig/src/Profiler/Node/EnterProfileNode.php',
    37    'Twig\Cache\CacheInterface' => $strauss_src . '/twig/twig/src/Cache/CacheInterface.php',
    38    'Twig\Cache\FilesystemCache' => $strauss_src . '/twig/twig/src/Cache/FilesystemCache.php',
    39    'Twig\Cache\NullCache' => $strauss_src . '/twig/twig/src/Cache/NullCache.php',
    40    'Twig\Error\RuntimeError' => $strauss_src . '/twig/twig/src/Error/RuntimeError.php',
    41    'Twig\Error\Error' => $strauss_src . '/twig/twig/src/Error/Error.php',
    42    'Twig\Error\SyntaxError' => $strauss_src . '/twig/twig/src/Error/SyntaxError.php',
    43    'Twig\Error\LoaderError' => $strauss_src . '/twig/twig/src/Error/LoaderError.php',
    44    'Twig\FileExtensionEscapingStrategy' => $strauss_src . '/twig/twig/src/FileExtensionEscapingStrategy.php',
    45    'Twig\Environment' => $strauss_src . '/twig/twig/src/Environment.php',
    46    'Twig\Sandbox\SecurityNotAllowedFilterError' => $strauss_src . '/twig/twig/src/Sandbox/SecurityNotAllowedFilterError.php',
    47    'Twig\Sandbox\SecurityPolicy' => $strauss_src . '/twig/twig/src/Sandbox/SecurityPolicy.php',
    48    'Twig\Sandbox\SecurityPolicyInterface' => $strauss_src . '/twig/twig/src/Sandbox/SecurityPolicyInterface.php',
    49    'Twig\Sandbox\SecurityNotAllowedFunctionError' => $strauss_src . '/twig/twig/src/Sandbox/SecurityNotAllowedFunctionError.php',
    50    'Twig\Sandbox\SecurityError' => $strauss_src . '/twig/twig/src/Sandbox/SecurityError.php',
    51    'Twig\Sandbox\SecurityNotAllowedTagError' => $strauss_src . '/twig/twig/src/Sandbox/SecurityNotAllowedTagError.php',
    52    'Twig\Sandbox\SecurityNotAllowedMethodError' => $strauss_src . '/twig/twig/src/Sandbox/SecurityNotAllowedMethodError.php',
    53    'Twig\Sandbox\SecurityNotAllowedPropertyError' => $strauss_src . '/twig/twig/src/Sandbox/SecurityNotAllowedPropertyError.php',
    54    'Twig\ExtensionSet' => $strauss_src . '/twig/twig/src/ExtensionSet.php',
    55    'Twig\ExpressionParser' => $strauss_src . '/twig/twig/src/ExpressionParser.php',
    56    'Twig\TokenParser\ForTokenParser' => $strauss_src . '/twig/twig/src/TokenParser/ForTokenParser.php',
    57    'Twig\TokenParser\ApplyTokenParser' => $strauss_src . '/twig/twig/src/TokenParser/ApplyTokenParser.php',
    58    'Twig\TokenParser\EmbedTokenParser' => $strauss_src . '/twig/twig/src/TokenParser/EmbedTokenParser.php',
    59    'Twig\TokenParser\BlockTokenParser' => $strauss_src . '/twig/twig/src/TokenParser/BlockTokenParser.php',
    60    'Twig\TokenParser\SandboxTokenParser' => $strauss_src . '/twig/twig/src/TokenParser/SandboxTokenParser.php',
    61    'Twig\TokenParser\DeprecatedTokenParser' => $strauss_src . '/twig/twig/src/TokenParser/DeprecatedTokenParser.php',
    62    'Twig\TokenParser\WithTokenParser' => $strauss_src . '/twig/twig/src/TokenParser/WithTokenParser.php',
    63    'Twig\TokenParser\ImportTokenParser' => $strauss_src . '/twig/twig/src/TokenParser/ImportTokenParser.php',
    64    'Twig\TokenParser\IfTokenParser' => $strauss_src . '/twig/twig/src/TokenParser/IfTokenParser.php',
    65    'Twig\TokenParser\UseTokenParser' => $strauss_src . '/twig/twig/src/TokenParser/UseTokenParser.php',
    66    'Twig\TokenParser\FlushTokenParser' => $strauss_src . '/twig/twig/src/TokenParser/FlushTokenParser.php',
    67    'Twig\TokenParser\MacroTokenParser' => $strauss_src . '/twig/twig/src/TokenParser/MacroTokenParser.php',
    68    'Twig\TokenParser\IncludeTokenParser' => $strauss_src . '/twig/twig/src/TokenParser/IncludeTokenParser.php',
    69    'Twig\TokenParser\DoTokenParser' => $strauss_src . '/twig/twig/src/TokenParser/DoTokenParser.php',
    70    'Twig\TokenParser\AutoEscapeTokenParser' => $strauss_src . '/twig/twig/src/TokenParser/AutoEscapeTokenParser.php',
    71    'Twig\TokenParser\TokenParserInterface' => $strauss_src . '/twig/twig/src/TokenParser/TokenParserInterface.php',
    72    'Twig\TokenParser\FromTokenParser' => $strauss_src . '/twig/twig/src/TokenParser/FromTokenParser.php',
    73    'Twig\TokenParser\ExtendsTokenParser' => $strauss_src . '/twig/twig/src/TokenParser/ExtendsTokenParser.php',
    74    'Twig\TokenParser\SetTokenParser' => $strauss_src . '/twig/twig/src/TokenParser/SetTokenParser.php',
    75    'Twig\TokenParser\AbstractTokenParser' => $strauss_src . '/twig/twig/src/TokenParser/AbstractTokenParser.php',
    76    'Twig\TwigFunction' => $strauss_src . '/twig/twig/src/TwigFunction.php',
    77    'Twig\TwigFilter' => $strauss_src . '/twig/twig/src/TwigFilter.php',
    78    'Twig\TwigTest' => $strauss_src . '/twig/twig/src/TwigTest.php',
    79    'Twig\TemplateWrapper' => $strauss_src . '/twig/twig/src/TemplateWrapper.php',
    80    'Twig\NodeVisitor\NodeVisitorInterface' => $strauss_src . '/twig/twig/src/NodeVisitor/NodeVisitorInterface.php',
    81    'Twig\NodeVisitor\SandboxNodeVisitor' => $strauss_src . '/twig/twig/src/NodeVisitor/SandboxNodeVisitor.php',
    82    'Twig\NodeVisitor\OptimizerNodeVisitor' => $strauss_src . '/twig/twig/src/NodeVisitor/OptimizerNodeVisitor.php',
    83    'Twig\NodeVisitor\AbstractNodeVisitor' => $strauss_src . '/twig/twig/src/NodeVisitor/AbstractNodeVisitor.php',
    84    'Twig\NodeVisitor\SafeAnalysisNodeVisitor' => $strauss_src . '/twig/twig/src/NodeVisitor/SafeAnalysisNodeVisitor.php',
    85    'Twig\NodeVisitor\EscaperNodeVisitor' => $strauss_src . '/twig/twig/src/NodeVisitor/EscaperNodeVisitor.php',
    86    'Twig\NodeVisitor\MacroAutoImportNodeVisitor' => $strauss_src . '/twig/twig/src/NodeVisitor/MacroAutoImportNodeVisitor.php',
    87    'Twig\Markup' => $strauss_src . '/twig/twig/src/Markup.php',
    88    'Twig\RuntimeLoader\RuntimeLoaderInterface' => $strauss_src . '/twig/twig/src/RuntimeLoader/RuntimeLoaderInterface.php',
    89    'Twig\RuntimeLoader\ContainerRuntimeLoader' => $strauss_src . '/twig/twig/src/RuntimeLoader/ContainerRuntimeLoader.php',
    90    'Twig\RuntimeLoader\FactoryRuntimeLoader' => $strauss_src . '/twig/twig/src/RuntimeLoader/FactoryRuntimeLoader.php',
    91    'Twig\Test\NodeTestCase' => $strauss_src . '/twig/twig/src/Test/NodeTestCase.php',
    92    'Twig\Test\IntegrationTestCase' => $strauss_src . '/twig/twig/src/Test/IntegrationTestCase.php',
    93    'Twig\Lexer' => $strauss_src . '/twig/twig/src/Lexer.php',
    94    'Twig\Parser' => $strauss_src . '/twig/twig/src/Parser.php',
    95    'Twig\TokenStream' => $strauss_src . '/twig/twig/src/TokenStream.php',
    96    'Twig\Node\EmbedNode' => $strauss_src . '/twig/twig/src/Node/EmbedNode.php',
    97    'Twig\Node\NodeOutputInterface' => $strauss_src . '/twig/twig/src/Node/NodeOutputInterface.php',
    98    'Twig\Node\FlushNode' => $strauss_src . '/twig/twig/src/Node/FlushNode.php',
    99    'Twig\Node\Expression\TempNameExpression' => $strauss_src . '/twig/twig/src/Node/Expression/TempNameExpression.php',
    100    'Twig\Node\Expression\Binary\EndsWithBinary' => $strauss_src . '/twig/twig/src/Node/Expression/Binary/EndsWithBinary.php',
    101    'Twig\Node\Expression\Binary\DivBinary' => $strauss_src . '/twig/twig/src/Node/Expression/Binary/DivBinary.php',
    102    'Twig\Node\Expression\Binary\MatchesBinary' => $strauss_src . '/twig/twig/src/Node/Expression/Binary/MatchesBinary.php',
    103    'Twig\Node\Expression\Binary\NotInBinary' => $strauss_src . '/twig/twig/src/Node/Expression/Binary/NotInBinary.php',
    104    'Twig\Node\Expression\Binary\ConcatBinary' => $strauss_src . '/twig/twig/src/Node/Expression/Binary/ConcatBinary.php',
    105    'Twig\Node\Expression\Binary\NotEqualBinary' => $strauss_src . '/twig/twig/src/Node/Expression/Binary/NotEqualBinary.php',
    106    'Twig\Node\Expression\Binary\BitwiseAndBinary' => $strauss_src . '/twig/twig/src/Node/Expression/Binary/BitwiseAndBinary.php',
    107    'Twig\Node\Expression\Binary\OrBinary' => $strauss_src . '/twig/twig/src/Node/Expression/Binary/OrBinary.php',
    108    'Twig\Node\Expression\Binary\RangeBinary' => $strauss_src . '/twig/twig/src/Node/Expression/Binary/RangeBinary.php',
    109    'Twig\Node\Expression\Binary\BitwiseOrBinary' => $strauss_src . '/twig/twig/src/Node/Expression/Binary/BitwiseOrBinary.php',
    110    'Twig\Node\Expression\Binary\StartsWithBinary' => $strauss_src . '/twig/twig/src/Node/Expression/Binary/StartsWithBinary.php',
    111    'Twig\Node\Expression\Binary\GreaterEqualBinary' => $strauss_src . '/twig/twig/src/Node/Expression/Binary/GreaterEqualBinary.php',
    112    'Twig\Node\Expression\Binary\EqualBinary' => $strauss_src . '/twig/twig/src/Node/Expression/Binary/EqualBinary.php',
    113    'Twig\Node\Expression\Binary\FloorDivBinary' => $strauss_src . '/twig/twig/src/Node/Expression/Binary/FloorDivBinary.php',
    114    'Twig\Node\Expression\Binary\PowerBinary' => $strauss_src . '/twig/twig/src/Node/Expression/Binary/PowerBinary.php',
    115    'Twig\Node\Expression\Binary\LessBinary' => $strauss_src . '/twig/twig/src/Node/Expression/Binary/LessBinary.php',
    116    'Twig\Node\Expression\Binary\HasEveryBinary' => $strauss_src . '/twig/twig/src/Node/Expression/Binary/HasEveryBinary.php',
    117    'Twig\Node\Expression\Binary\BitwiseXorBinary' => $strauss_src . '/twig/twig/src/Node/Expression/Binary/BitwiseXorBinary.php',
    118    'Twig\Node\Expression\Binary\LessEqualBinary' => $strauss_src . '/twig/twig/src/Node/Expression/Binary/LessEqualBinary.php',
    119    'Twig\Node\Expression\Binary\HasSomeBinary' => $strauss_src . '/twig/twig/src/Node/Expression/Binary/HasSomeBinary.php',
    120    'Twig\Node\Expression\Binary\MulBinary' => $strauss_src . '/twig/twig/src/Node/Expression/Binary/MulBinary.php',
    121    'Twig\Node\Expression\Binary\ModBinary' => $strauss_src . '/twig/twig/src/Node/Expression/Binary/ModBinary.php',
    122    'Twig\Node\Expression\Binary\AddBinary' => $strauss_src . '/twig/twig/src/Node/Expression/Binary/AddBinary.php',
    123    'Twig\Node\Expression\Binary\AbstractBinary' => $strauss_src . '/twig/twig/src/Node/Expression/Binary/AbstractBinary.php',
    124    'Twig\Node\Expression\Binary\SubBinary' => $strauss_src . '/twig/twig/src/Node/Expression/Binary/SubBinary.php',
    125    'Twig\Node\Expression\Binary\SpaceshipBinary' => $strauss_src . '/twig/twig/src/Node/Expression/Binary/SpaceshipBinary.php',
    126    'Twig\Node\Expression\Binary\AndBinary' => $strauss_src . '/twig/twig/src/Node/Expression/Binary/AndBinary.php',
    127    'Twig\Node\Expression\Binary\InBinary' => $strauss_src . '/twig/twig/src/Node/Expression/Binary/InBinary.php',
    128    'Twig\Node\Expression\Binary\GreaterBinary' => $strauss_src . '/twig/twig/src/Node/Expression/Binary/GreaterBinary.php',
    129    'Twig\Node\Expression\FunctionExpression' => $strauss_src . '/twig/twig/src/Node/Expression/FunctionExpression.php',
    130    'Twig\Node\Expression\CallExpression' => $strauss_src . '/twig/twig/src/Node/Expression/CallExpression.php',
    131    'Twig\Node\Expression\AssignNameExpression' => $strauss_src . '/twig/twig/src/Node/Expression/AssignNameExpression.php',
    132    'Twig\Node\Expression\InlinePrint' => $strauss_src . '/twig/twig/src/Node/Expression/InlinePrint.php',
    133    'Twig\Node\Expression\Unary\PosUnary' => $strauss_src . '/twig/twig/src/Node/Expression/Unary/PosUnary.php',
    134    'Twig\Node\Expression\Unary\NegUnary' => $strauss_src . '/twig/twig/src/Node/Expression/Unary/NegUnary.php',
    135    'Twig\Node\Expression\Unary\AbstractUnary' => $strauss_src . '/twig/twig/src/Node/Expression/Unary/AbstractUnary.php',
    136    'Twig\Node\Expression\Unary\NotUnary' => $strauss_src . '/twig/twig/src/Node/Expression/Unary/NotUnary.php',
    137    'Twig\Node\Expression\NameExpression' => $strauss_src . '/twig/twig/src/Node/Expression/NameExpression.php',
    138    'Twig\Node\Expression\ArrowFunctionExpression' => $strauss_src . '/twig/twig/src/Node/Expression/ArrowFunctionExpression.php',
    139    'Twig\Node\Expression\NullCoalesceExpression' => $strauss_src . '/twig/twig/src/Node/Expression/NullCoalesceExpression.php',
    140    'Twig\Node\Expression\VariadicExpression' => $strauss_src . '/twig/twig/src/Node/Expression/VariadicExpression.php',
    141    'Twig\Node\Expression\FilterExpression' => $strauss_src . '/twig/twig/src/Node/Expression/FilterExpression.php',
    142    'Twig\Node\Expression\MethodCallExpression' => $strauss_src . '/twig/twig/src/Node/Expression/MethodCallExpression.php',
    143    'Twig\Node\Expression\Filter\DefaultFilter' => $strauss_src . '/twig/twig/src/Node/Expression/Filter/DefaultFilter.php',
    144    'Twig\Node\Expression\AbstractExpression' => $strauss_src . '/twig/twig/src/Node/Expression/AbstractExpression.php',
    145    'Twig\Node\Expression\Test\ConstantTest' => $strauss_src . '/twig/twig/src/Node/Expression/Test/ConstantTest.php',
    146    'Twig\Node\Expression\Test\DivisiblebyTest' => $strauss_src . '/twig/twig/src/Node/Expression/Test/DivisiblebyTest.php',
    147    'Twig\Node\Expression\Test\NullTest' => $strauss_src . '/twig/twig/src/Node/Expression/Test/NullTest.php',
    148    'Twig\Node\Expression\Test\SameasTest' => $strauss_src . '/twig/twig/src/Node/Expression/Test/SameasTest.php',
    149    'Twig\Node\Expression\Test\EvenTest' => $strauss_src . '/twig/twig/src/Node/Expression/Test/EvenTest.php',
    150    'Twig\Node\Expression\Test\OddTest' => $strauss_src . '/twig/twig/src/Node/Expression/Test/OddTest.php',
    151    'Twig\Node\Expression\Test\DefinedTest' => $strauss_src . '/twig/twig/src/Node/Expression/Test/DefinedTest.php',
    152    'Twig\Node\Expression\TestExpression' => $strauss_src . '/twig/twig/src/Node/Expression/TestExpression.php',
    153    'Twig\Node\Expression\ConditionalExpression' => $strauss_src . '/twig/twig/src/Node/Expression/ConditionalExpression.php',
    154    'Twig\Node\Expression\BlockReferenceExpression' => $strauss_src . '/twig/twig/src/Node/Expression/BlockReferenceExpression.php',
    155    'Twig\Node\Expression\ConstantExpression' => $strauss_src . '/twig/twig/src/Node/Expression/ConstantExpression.php',
    156    'Twig\Node\Expression\GetAttrExpression' => $strauss_src . '/twig/twig/src/Node/Expression/GetAttrExpression.php',
    157    'Twig\Node\Expression\ParentExpression' => $strauss_src . '/twig/twig/src/Node/Expression/ParentExpression.php',
    158    'Twig\Node\Expression\ArrayExpression' => $strauss_src . '/twig/twig/src/Node/Expression/ArrayExpression.php',
    159    'Twig\Node\ForNode' => $strauss_src . '/twig/twig/src/Node/ForNode.php',
    160    'Twig\Node\ModuleNode' => $strauss_src . '/twig/twig/src/Node/ModuleNode.php',
    161    'Twig\Node\PrintNode' => $strauss_src . '/twig/twig/src/Node/PrintNode.php',
    162    'Twig\Node\MacroNode' => $strauss_src . '/twig/twig/src/Node/MacroNode.php',
    163    'Twig\Node\BlockNode' => $strauss_src . '/twig/twig/src/Node/BlockNode.php',
    164    'Twig\Node\IncludeNode' => $strauss_src . '/twig/twig/src/Node/IncludeNode.php',
    165    'Twig\Node\CheckSecurityNode' => $strauss_src . '/twig/twig/src/Node/CheckSecurityNode.php',
    166    'Twig\Node\NodeCaptureInterface' => $strauss_src . '/twig/twig/src/Node/NodeCaptureInterface.php',
    167    'Twig\Node\WithNode' => $strauss_src . '/twig/twig/src/Node/WithNode.php',
    168    'Twig\Node\SandboxNode' => $strauss_src . '/twig/twig/src/Node/SandboxNode.php',
    169    'Twig\Node\TextNode' => $strauss_src . '/twig/twig/src/Node/TextNode.php',
    170    'Twig\Node\BodyNode' => $strauss_src . '/twig/twig/src/Node/BodyNode.php',
    171    'Twig\Node\ForLoopNode' => $strauss_src . '/twig/twig/src/Node/ForLoopNode.php',
    172    'Twig\Node\IfNode' => $strauss_src . '/twig/twig/src/Node/IfNode.php',
    173    'Twig\Node\SetNode' => $strauss_src . '/twig/twig/src/Node/SetNode.php',
    174    'Twig\Node\DoNode' => $strauss_src . '/twig/twig/src/Node/DoNode.php',
    175    'Twig\Node\CheckToStringNode' => $strauss_src . '/twig/twig/src/Node/CheckToStringNode.php',
    176    'Twig\Node\AutoEscapeNode' => $strauss_src . '/twig/twig/src/Node/AutoEscapeNode.php',
    177    'Twig\Node\ImportNode' => $strauss_src . '/twig/twig/src/Node/ImportNode.php',
    178    'Twig\Node\Node' => $strauss_src . '/twig/twig/src/Node/Node.php',
    179    'Twig\Node\DeprecatedNode' => $strauss_src . '/twig/twig/src/Node/DeprecatedNode.php',
    180    'Twig\Node\BlockReferenceNode' => $strauss_src . '/twig/twig/src/Node/BlockReferenceNode.php',
    181    'Twig\Node\CheckSecurityCallNode' => $strauss_src . '/twig/twig/src/Node/CheckSecurityCallNode.php',
    182    'Twig\Util\TemplateDirIterator' => $strauss_src . '/twig/twig/src/Util/TemplateDirIterator.php',
    183    'Twig\Util\DeprecationCollector' => $strauss_src . '/twig/twig/src/Util/DeprecationCollector.php',
    184    'JUVO_MailEditor\Dependencies\Symfony\Polyfill\Mbstring\Mbstring' => $strauss_src . '/symfony/polyfill-mbstring/Mbstring.php',
    185    'JUVO_MailEditor\Dependencies\Symfony\Polyfill\Ctype\Ctype' => $strauss_src . '/symfony/polyfill-ctype/Ctype.php',
    186    'JUVO_MailEditor\Dependencies\Symfony\Polyfill\Php80\PhpToken' => $strauss_src . '/symfony/polyfill-php80/PhpToken.php',
    187    'JUVO_MailEditor\Dependencies\Symfony\Polyfill\Php80\Php80' => $strauss_src . '/symfony/polyfill-php80/Php80.php',
    188    'ValueError' => $strauss_src . '/symfony/polyfill-php80/Resources/stubs/ValueError.php',
    189    'PhpToken' => $strauss_src . '/symfony/polyfill-php80/Resources/stubs/PhpToken.php',
    190    'JUVO_MailEditorStringable' => $strauss_src . '/symfony/polyfill-php80/Resources/stubs/Stringable.php',
    191    'UnhandledMatchError' => $strauss_src . '/symfony/polyfill-php80/Resources/stubs/UnhandledMatchError.php',
    192    'Attribute' => $strauss_src . '/symfony/polyfill-php80/Resources/stubs/Attribute.php',
    193    'JUVO_MailEditor\Dependencies\Composer\Installers\FuelphpInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/FuelphpInstaller.php',
    194    'JUVO_MailEditor\Dependencies\Composer\Installers\ZikulaInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/ZikulaInstaller.php',
    195    'JUVO_MailEditor\Dependencies\Composer\Installers\MajimaInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/MajimaInstaller.php',
    196    'JUVO_MailEditor\Dependencies\Composer\Installers\AttogramInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/AttogramInstaller.php',
    197    'JUVO_MailEditor\Dependencies\Composer\Installers\Installer' => $strauss_src . '/composer/installers/src/Composer/Installers/Installer.php',
    198    'JUVO_MailEditor\Dependencies\Composer\Installers\PantheonInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/PantheonInstaller.php',
    199    'JUVO_MailEditor\Dependencies\Composer\Installers\WHMCSInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/WHMCSInstaller.php',
    200    'JUVO_MailEditor\Dependencies\Composer\Installers\DokuWikiInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/DokuWikiInstaller.php',
    201    'JUVO_MailEditor\Dependencies\Composer\Installers\MayaInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/MayaInstaller.php',
    202    'JUVO_MailEditor\Dependencies\Composer\Installers\RoundcubeInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/RoundcubeInstaller.php',
    203    'JUVO_MailEditor\Dependencies\Composer\Installers\MagentoInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/MagentoInstaller.php',
    204    'JUVO_MailEditor\Dependencies\Composer\Installers\EzPlatformInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/EzPlatformInstaller.php',
    205    'JUVO_MailEditor\Dependencies\Composer\Installers\MODULEWorkInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/MODULEWorkInstaller.php',
    206    'JUVO_MailEditor\Dependencies\Composer\Installers\WolfCMSInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/WolfCMSInstaller.php',
    207    'JUVO_MailEditor\Dependencies\Composer\Installers\SiteDirectInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/SiteDirectInstaller.php',
    208    'JUVO_MailEditor\Dependencies\Composer\Installers\BonefishInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/BonefishInstaller.php',
    209    'JUVO_MailEditor\Dependencies\Composer\Installers\MediaWikiInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/MediaWikiInstaller.php',
    210    'JUVO_MailEditor\Dependencies\Composer\Installers\MiaoxingInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/MiaoxingInstaller.php',
    211    'JUVO_MailEditor\Dependencies\Composer\Installers\CroogoInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/CroogoInstaller.php',
    212    'JUVO_MailEditor\Dependencies\Composer\Installers\ZendInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/ZendInstaller.php',
    213    'JUVO_MailEditor\Dependencies\Composer\Installers\TastyIgniterInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/TastyIgniterInstaller.php',
    214    'JUVO_MailEditor\Dependencies\Composer\Installers\DframeInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/DframeInstaller.php',
    215    'JUVO_MailEditor\Dependencies\Composer\Installers\ClanCatsFrameworkInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/ClanCatsFrameworkInstaller.php',
    216    'JUVO_MailEditor\Dependencies\Composer\Installers\ModxInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/ModxInstaller.php',
    217    'JUVO_MailEditor\Dependencies\Composer\Installers\OntoWikiInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/OntoWikiInstaller.php',
    218    'JUVO_MailEditor\Dependencies\Composer\Installers\StarbugInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/StarbugInstaller.php',
    219    'JUVO_MailEditor\Dependencies\Composer\Installers\OsclassInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/OsclassInstaller.php',
    220    'JUVO_MailEditor\Dependencies\Composer\Installers\PlentymarketsInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/PlentymarketsInstaller.php',
    221    'JUVO_MailEditor\Dependencies\Composer\Installers\CockpitInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/CockpitInstaller.php',
    222    'JUVO_MailEditor\Dependencies\Composer\Installers\OctoberInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/OctoberInstaller.php',
    223    'JUVO_MailEditor\Dependencies\Composer\Installers\LanManagementSystemInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/LanManagementSystemInstaller.php',
    224    'JUVO_MailEditor\Dependencies\Composer\Installers\ChefInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/ChefInstaller.php',
    225    'JUVO_MailEditor\Dependencies\Composer\Installers\LithiumInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/LithiumInstaller.php',
    226    'JUVO_MailEditor\Dependencies\Composer\Installers\HuradInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/HuradInstaller.php',
    227    'JUVO_MailEditor\Dependencies\Composer\Installers\ShopwareInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/ShopwareInstaller.php',
    228    'JUVO_MailEditor\Dependencies\Composer\Installers\Plugin' => $strauss_src . '/composer/installers/src/Composer/Installers/Plugin.php',
    229    'JUVO_MailEditor\Dependencies\Composer\Installers\DrupalInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/DrupalInstaller.php',
    230    'JUVO_MailEditor\Dependencies\Composer\Installers\DolibarrInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/DolibarrInstaller.php',
    231    'JUVO_MailEditor\Dependencies\Composer\Installers\KodiCMSInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/KodiCMSInstaller.php',
    232    'JUVO_MailEditor\Dependencies\Composer\Installers\SyDESInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/SyDESInstaller.php',
    233    'JUVO_MailEditor\Dependencies\Composer\Installers\EliasisInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/EliasisInstaller.php',
    234    'JUVO_MailEditor\Dependencies\Composer\Installers\TaoInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/TaoInstaller.php',
    235    'JUVO_MailEditor\Dependencies\Composer\Installers\KohanaInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/KohanaInstaller.php',
    236    'JUVO_MailEditor\Dependencies\Composer\Installers\ImageCMSInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/ImageCMSInstaller.php',
    237    'JUVO_MailEditor\Dependencies\Composer\Installers\FuelInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/FuelInstaller.php',
    238    'JUVO_MailEditor\Dependencies\Composer\Installers\VanillaInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/VanillaInstaller.php',
    239    'JUVO_MailEditor\Dependencies\Composer\Installers\MakoInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/MakoInstaller.php',
    240    'JUVO_MailEditor\Dependencies\Composer\Installers\WinterInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/WinterInstaller.php',
    241    'JUVO_MailEditor\Dependencies\Composer\Installers\LaravelInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/LaravelInstaller.php',
    242    'JUVO_MailEditor\Dependencies\Composer\Installers\MantisBTInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/MantisBTInstaller.php',
    243    'JUVO_MailEditor\Dependencies\Composer\Installers\CiviCrmInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/CiviCrmInstaller.php',
    244    'JUVO_MailEditor\Dependencies\Composer\Installers\UserFrostingInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/UserFrostingInstaller.php',
    245    'JUVO_MailEditor\Dependencies\Composer\Installers\AkauntingInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/AkauntingInstaller.php',
    246    'JUVO_MailEditor\Dependencies\Composer\Installers\KnownInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/KnownInstaller.php',
    247    'JUVO_MailEditor\Dependencies\Composer\Installers\VgmcpInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/VgmcpInstaller.php',
    248    'JUVO_MailEditor\Dependencies\Composer\Installers\SilverStripeInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/SilverStripeInstaller.php',
    249    'JUVO_MailEditor\Dependencies\Composer\Installers\LavaLiteInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/LavaLiteInstaller.php',
    250    'JUVO_MailEditor\Dependencies\Composer\Installers\ProcessWireInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/ProcessWireInstaller.php',
    251    'JUVO_MailEditor\Dependencies\Composer\Installers\KanboardInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/KanboardInstaller.php',
    252    'JUVO_MailEditor\Dependencies\Composer\Installers\CakePHPInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/CakePHPInstaller.php',
    253    'JUVO_MailEditor\Dependencies\Composer\Installers\DecibelInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/DecibelInstaller.php',
    254    'JUVO_MailEditor\Dependencies\Composer\Installers\OxidInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/OxidInstaller.php',
    255    'JUVO_MailEditor\Dependencies\Composer\Installers\TheliaInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/TheliaInstaller.php',
    256    'JUVO_MailEditor\Dependencies\Composer\Installers\MODXEvoInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/MODXEvoInstaller.php',
    257    'JUVO_MailEditor\Dependencies\Composer\Installers\SyliusInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/SyliusInstaller.php',
    258    'JUVO_MailEditor\Dependencies\Composer\Installers\PrestashopInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/PrestashopInstaller.php',
    259    'JUVO_MailEditor\Dependencies\Composer\Installers\PPIInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/PPIInstaller.php',
    260    'JUVO_MailEditor\Dependencies\Composer\Installers\CodeIgniterInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/CodeIgniterInstaller.php',
    261    'JUVO_MailEditor\Dependencies\Composer\Installers\ItopInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/ItopInstaller.php',
    262    'JUVO_MailEditor\Dependencies\Composer\Installers\RadPHPInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/RadPHPInstaller.php',
    263    'JUVO_MailEditor\Dependencies\Composer\Installers\GravInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/GravInstaller.php',
    264    'JUVO_MailEditor\Dependencies\Composer\Installers\PhiftyInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/PhiftyInstaller.php',
    265    'JUVO_MailEditor\Dependencies\Composer\Installers\TuskInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/TuskInstaller.php',
    266    'JUVO_MailEditor\Dependencies\Composer\Installers\AsgardInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/AsgardInstaller.php',
    267    'JUVO_MailEditor\Dependencies\Composer\Installers\PxcmsInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/PxcmsInstaller.php',
    268    'JUVO_MailEditor\Dependencies\Composer\Installers\ExpressionEngineInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/ExpressionEngineInstaller.php',
    269    'JUVO_MailEditor\Dependencies\Composer\Installers\WordPressInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/WordPressInstaller.php',
    270    'JUVO_MailEditor\Dependencies\Composer\Installers\MauticInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/MauticInstaller.php',
    271    'JUVO_MailEditor\Dependencies\Composer\Installers\BitrixInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/BitrixInstaller.php',
    272    'JUVO_MailEditor\Dependencies\Composer\Installers\YawikInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/YawikInstaller.php',
    273    'JUVO_MailEditor\Dependencies\Composer\Installers\Redaxo5Installer' => $strauss_src . '/composer/installers/src/Composer/Installers/Redaxo5Installer.php',
    274    'JUVO_MailEditor\Dependencies\Composer\Installers\ReIndexInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/ReIndexInstaller.php',
    275    'JUVO_MailEditor\Dependencies\Composer\Installers\AnnotateCmsInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/AnnotateCmsInstaller.php',
    276    'JUVO_MailEditor\Dependencies\Composer\Installers\MoodleInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/MoodleInstaller.php',
    277    'JUVO_MailEditor\Dependencies\Composer\Installers\MatomoInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/MatomoInstaller.php',
    278    'JUVO_MailEditor\Dependencies\Composer\Installers\PortoInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/PortoInstaller.php',
    279    'JUVO_MailEditor\Dependencies\Composer\Installers\BaseInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/BaseInstaller.php',
    280    'JUVO_MailEditor\Dependencies\Composer\Installers\PuppetInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/PuppetInstaller.php',
    281    'JUVO_MailEditor\Dependencies\Composer\Installers\PiwikInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/PiwikInstaller.php',
    282    'JUVO_MailEditor\Dependencies\Composer\Installers\RedaxoInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/RedaxoInstaller.php',
    283    'JUVO_MailEditor\Dependencies\Composer\Installers\PhpBBInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/PhpBBInstaller.php',
    284    'JUVO_MailEditor\Dependencies\Composer\Installers\Concrete5Installer' => $strauss_src . '/composer/installers/src/Composer/Installers/Concrete5Installer.php',
    285    'JUVO_MailEditor\Dependencies\Composer\Installers\MicroweberInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/MicroweberInstaller.php',
    286    'JUVO_MailEditor\Dependencies\Composer\Installers\ElggInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/ElggInstaller.php',
    287    'JUVO_MailEditor\Dependencies\Composer\Installers\AglInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/AglInstaller.php',
    288    'JUVO_MailEditor\Dependencies\Composer\Installers\SMFInstaller' => $strauss_src . '/composer/installers/src/Composer/Installers/SMFInstaller.php',
    289    'Timber\Image' => $strauss_src . '/timber/timber/src/Image.php',
    290    'Timber\Comment' => $strauss_src . '/timber/timber/src/Comment.php',
    291    'Timber\PostArrayObject' => $strauss_src . '/timber/timber/src/PostArrayObject.php',
    292    'Timber\Archives' => $strauss_src . '/timber/timber/src/Archives.php',
    293    'Timber\CommentThread' => $strauss_src . '/timber/timber/src/CommentThread.php',
    294    'Timber\CoreEntityInterface' => $strauss_src . '/timber/timber/src/CoreEntityInterface.php',
    295    'Timber\CoreEntity' => $strauss_src . '/timber/timber/src/CoreEntity.php',
    296    'Timber\CoreInterface' => $strauss_src . '/timber/timber/src/CoreInterface.php',
    297    'Timber\Image\Operation\ToWebp' => $strauss_src . '/timber/timber/src/Image/Operation/ToWebp.php',
    298    'Timber\Image\Operation\Letterbox' => $strauss_src . '/timber/timber/src/Image/Operation/Letterbox.php',
    299    'Timber\Image\Operation\ToJpg' => $strauss_src . '/timber/timber/src/Image/Operation/ToJpg.php',
    300    'Timber\Image\Operation\Retina' => $strauss_src . '/timber/timber/src/Image/Operation/Retina.php',
    301    'Timber\Image\Operation\Resize' => $strauss_src . '/timber/timber/src/Image/Operation/Resize.php',
    302    'Timber\Image\Operation' => $strauss_src . '/timber/timber/src/Image/Operation.php',
    303    'Timber\LocationManager' => $strauss_src . '/timber/timber/src/LocationManager.php',
    304    'Timber\PathHelper' => $strauss_src . '/timber/timber/src/PathHelper.php',
    305    'Timber\URLHelper' => $strauss_src . '/timber/timber/src/URLHelper.php',
    306    'Timber\MenuItem' => $strauss_src . '/timber/timber/src/MenuItem.php',
    307    'Timber\Loader' => $strauss_src . '/timber/timber/src/Loader.php',
    308    'Timber\Timber' => $strauss_src . '/timber/timber/src/Timber.php',
    309    'Timber\Site' => $strauss_src . '/timber/timber/src/Site.php',
    310    'Timber\DatedInterface' => $strauss_src . '/timber/timber/src/DatedInterface.php',
    311    'Timber\Cache\Cleaner' => $strauss_src . '/timber/timber/src/Cache/Cleaner.php',
    312    'Timber\Cache\KeyGenerator' => $strauss_src . '/timber/timber/src/Cache/KeyGenerator.php',
    313    'Timber\Cache\WPObjectCacheAdapter' => $strauss_src . '/timber/timber/src/Cache/WPObjectCacheAdapter.php',
    314    'Timber\Cache\TimberKeyGeneratorInterface' => $strauss_src . '/timber/timber/src/Cache/TimberKeyGeneratorInterface.php',
    315    'Timber\DateTimeHelper' => $strauss_src . '/timber/timber/src/DateTimeHelper.php',
    316    'Timber\ImageDimensions' => $strauss_src . '/timber/timber/src/ImageDimensions.php',
    317    'Timber\ImageInterface' => $strauss_src . '/timber/timber/src/ImageInterface.php',
    318    'Timber\Core' => $strauss_src . '/timber/timber/src/Core.php',
    319    'Timber\Admin' => $strauss_src . '/timber/timber/src/Admin.php',
    320    'Timber\PostType' => $strauss_src . '/timber/timber/src/PostType.php',
    321    'Timber\Attachment' => $strauss_src . '/timber/timber/src/Attachment.php',
    322    'Timber\Integration\CoAuthorsPlus\CoAuthorsPlusUser' => $strauss_src . '/timber/timber/src/Integration/CoAuthorsPlus/CoAuthorsPlusUser.php',
    323    'Timber\Integration\CLI\TimberCommand' => $strauss_src . '/timber/timber/src/Integration/CLI/TimberCommand.php',
    324    'Timber\Integration\AcfIntegration' => $strauss_src . '/timber/timber/src/Integration/AcfIntegration.php',
    325    'Timber\Integration\CoAuthorsPlusIntegration' => $strauss_src . '/timber/timber/src/Integration/CoAuthorsPlusIntegration.php',
    326    'Timber\Integration\WpCliIntegration' => $strauss_src . '/timber/timber/src/Integration/WpCliIntegration.php',
    327    'Timber\Integration\WpmlIntegration' => $strauss_src . '/timber/timber/src/Integration/WpmlIntegration.php',
    328    'Timber\Integration\IntegrationInterface' => $strauss_src . '/timber/timber/src/Integration/IntegrationInterface.php',
    329    'Timber\PagesMenu' => $strauss_src . '/timber/timber/src/PagesMenu.php',
    330    'Timber\Factory\TermFactory' => $strauss_src . '/timber/timber/src/Factory/TermFactory.php',
    331    'Timber\Factory\MenuFactory' => $strauss_src . '/timber/timber/src/Factory/MenuFactory.php',
    332    'Timber\Factory\PostFactory' => $strauss_src . '/timber/timber/src/Factory/PostFactory.php',
    333    'Timber\Factory\UserFactory' => $strauss_src . '/timber/timber/src/Factory/UserFactory.php',
    334    'Timber\Factory\CommentFactory' => $strauss_src . '/timber/timber/src/Factory/CommentFactory.php',
    335    'Timber\Factory\PagesMenuFactory' => $strauss_src . '/timber/timber/src/Factory/PagesMenuFactory.php',
    336    'Timber\Factory\MenuItemFactory' => $strauss_src . '/timber/timber/src/Factory/MenuItemFactory.php',
    337    'Timber\MetaInterface' => $strauss_src . '/timber/timber/src/MetaInterface.php',
    338    'Timber\PostExcerpt' => $strauss_src . '/timber/timber/src/PostExcerpt.php',
    339    'Timber\Helper' => $strauss_src . '/timber/timber/src/Helper.php',
    340    'Timber\PostsIterator' => $strauss_src . '/timber/timber/src/PostsIterator.php',
    341    'Timber\Pagination' => $strauss_src . '/timber/timber/src/Pagination.php',
    342    'Timber\User' => $strauss_src . '/timber/timber/src/User.php',
    343    'Timber\AccessesPostsLazily' => $strauss_src . '/timber/timber/src/AccessesPostsLazily.php',
    344    'Timber\Setupable' => $strauss_src . '/timber/timber/src/Setupable.php',
    345    'Timber\Post' => $strauss_src . '/timber/timber/src/Post.php',
    346    'Timber\Twig' => $strauss_src . '/timber/timber/src/Twig.php',
    347    'Timber\Term' => $strauss_src . '/timber/timber/src/Term.php',
    348    'Timber\Menu' => $strauss_src . '/timber/timber/src/Menu.php',
    349    'Timber\Theme' => $strauss_src . '/timber/timber/src/Theme.php',
    350    'Timber\PostQuery' => $strauss_src . '/timber/timber/src/PostQuery.php',
    351    'Timber\FunctionWrapper' => $strauss_src . '/timber/timber/src/FunctionWrapper.php',
    352    'Timber\ImageHelper' => $strauss_src . '/timber/timber/src/ImageHelper.php',
    353    'Timber\TextHelper' => $strauss_src . '/timber/timber/src/TextHelper.php',
    354    'Timber\PostCollectionInterface' => $strauss_src . '/timber/timber/src/PostCollectionInterface.php',
    355    'Timber\ExternalImage' => $strauss_src . '/timber/timber/src/ExternalImage.php',
    3568);
Note: See TracChangeset for help on using the changeset viewer.