Plugin Directory

Changeset 3272667


Ignore:
Timestamp:
04/14/2025 04:49:50 PM (8 months ago)
Author:
modulards
Message:

v1.15.1

Location:
modular-connector/trunk
Files:
1 added
24 edited

Legend:

Unmodified
Added
Removed
  • modular-connector/trunk/init.php

    r3269968 r3272667  
    44 * Plugin URI: https://modulards.com/herramienta-gestion-webs/
    55 * Description: Connect and manage all your WordPress websites in an easier and more efficient way. Backups, bulk updates, Uptime Monitor, statistics, security, performance, client reports and much more.
    6  * Version: 1.15.0
     6 * Version: 1.15.1
    77 * License: GPL v3.0
    88 * License URI: https://www.gnu.org/licenses/gpl.html
     
    2121define('MODULAR_CONNECTOR_BASENAME', sprintf('%s/%s', basename(dirname(__FILE__)), basename(__FILE__)));
    2222define('MODULAR_CONNECTOR_MU_BASENAME', sprintf('0-%s.php', dirname(MODULAR_CONNECTOR_BASENAME)));
    23 define('MODULAR_CONNECTOR_VERSION', '1.15.0');
     23define('MODULAR_CONNECTOR_VERSION', '1.15.1');
    2424define('MODULAR_ARES_SCHEDULE_HOOK', 'modular_connector_run_schedule');
    2525define('MODULAR_CONNECTOR_STORAGE_PATH', untrailingslashit(WP_CONTENT_DIR) . DIRECTORY_SEPARATOR . 'modular_storage');
  • modular-connector/trunk/readme.txt

    r3269968 r3272667  
    44Requires at least: 5.6
    55Tested up to: 6.8
    6 Stable tag: 1.15.0
     6Stable tag: 1.15.1
    77Requires PHP: 7.4
    88License: GPLv3
     
    106106
    107107== Changelog ==
     108= v1.15.1 =
     109Release date: 2025-04-14
     110
     111* FIXED: Database connection error when WordPress can't provide the collation or charset
     112* FIXED: Method to validate database connection
     113* FIXED: Method to check if core upgrade was successful
     114* FIXED: Conflict with different plugins
     115* FIXED: Minor bugs
     116
    108117= v1.15.0 =
    109118Release date: 2025-04-09
  • modular-connector/trunk/src/app/Backups/BackupManager.php

    r3249268 r3272667  
    1919    public function getDefaultDriver()
    2020    {
    21         return Cache::get('backup.driver') ?: $this->config->get('backup.default');
     21        return Cache::driver('wordpress')->get('backup.driver') ?: $this->config->get('backup.default');
    2222    }
    2323
  • modular-connector/trunk/src/app/Http/Controllers/BackupController.php

    r3266504 r3272667  
    7676        $driver = $payload->driver ?? Config::get('backup.default');
    7777
    78         Cache::forever('backup.driver', $driver);
     78        Cache::driver('wordpress')->forever('backup.driver', $driver);
    7979
    8080        dispatch(fn() => Backup::options($requestId, $payload)->make())
  • modular-connector/trunk/src/app/Providers/ModularConnectorServiceProvider.php

    r3266504 r3272667  
    1313use Modular\ConnectorDependencies\Illuminate\Support\Facades\Config;
    1414use Modular\ConnectorDependencies\Illuminate\Support\Facades\Log;
     15use Modular\ConnectorDependencies\Illuminate\Support\Facades\Queue;
    1516use Modular\ConnectorDependencies\Illuminate\Support\ServiceProvider;
    1617use function Modular\ConnectorDependencies\base_path;
     
    9091                }
    9192
     93                if ($driver !== 'file') {
     94                    Cache::driver($driver)->has('test');
     95                }
     96
    9297                Config::set('cache.default', $driver);
    9398            } catch (\Throwable $e) {
     
    104109                }
    105110
     111                if ($driver !== 'wordpress') {
     112                    Queue::connection($driver)->size('default');
     113                }
     114
    106115                Config::set('queue.default', $driver);
    107116            } catch (\Throwable $e) {
  • modular-connector/trunk/src/app/Services/Manager.php

    r3269968 r3272667  
    9999
    100100        // 3. Clean all pending jobs
    101         $this->clearQueue('default');
    102         $this->clearQueue('backups');
     101        try {
     102            $this->clearQueue('default');
     103        } catch (\Throwable $e) {
     104            // Silence is golden
     105            error_log(sprintf('Error clearing queue: %s', $e->getMessage()));
     106        }
     107
     108        try {
     109            $this->clearQueue('backups');
     110        } catch (\Throwable $e) {
     111            // Silence is golden
     112            error_log(sprintf('Error clearing queue: %s', $e->getMessage()));
     113        }
    103114
    104115        try {
  • modular-connector/trunk/src/app/Services/Manager/AbstractManager.php

    r3233987 r3272667  
    4242    {
    4343        if (!in_array($item, ['core', 'translations'])) {
    44             $isSuccess = !is_wp_error($result) && !($result instanceof \Throwable);
     44            $isSuccess = !is_wp_error($result) && !$result instanceof \Throwable;
    4545
    4646            if ($action === 'upgrade') {
     
    6161            }
    6262        } else {
    63             $isSuccess = !is_wp_error($result) || $result instanceof \Throwable || $result === true;
     63            $isSuccess = !is_wp_error($result) && !$result instanceof \Throwable || $result === true;
    6464        }
    6565
  • modular-connector/trunk/src/app/Services/Manager/ManagerPlugin.php

    r3269968 r3272667  
    33namespace Modular\Connector\Services\Manager;
    44
    5 use Modular\Connector\Facades\Server;
    65use Modular\Connector\WordPress\ModularPluginUpgrader;
    76use Modular\ConnectorDependencies\Ares\Framework\Foundation\ScreenSimulation;
     
    227226
    228227            $response = $upgrader->bulk_upgrade($items);
    229 
     228        } catch (\Throwable $e) {
     229            $response = Collection::make($items)
     230                ->mapWithKeys(function ($item) use ($e) {
     231                    return [
     232                        $item => $e,
     233                    ];
     234                })
     235                ->toArray();
    230236        } finally {
    231237            ServerSetup::clean();
  • modular-connector/trunk/src/app/Services/ManagerWhiteLabel.php

    r3233987 r3272667  
    3636    public function getWhiteLabeledData()
    3737    {
    38         $client = OauthClient::getClient();
     38        try {
     39            $client = OauthClient::getClient();
     40        } catch (\Throwable $e) {
     41            return [
     42                'status' => 'disabled',
     43            ];
     44        }
    3945
    4046        if (empty($client->getUsedAt())) {
  • modular-connector/trunk/src/app/WordPress/Admin.php

    r3269968 r3272667  
    4949        $connection = OauthClient::getClient();
    5050
    51         if (empty($connection->getClientId())) {
     51        if ((!is_multisite() || is_main_site()) && empty($connection->getClientId())) {
    5252            echo View::make('notices.disconnected');
    53         } elseif (empty($connection->getConnectedAt())) {
     53        } elseif (!empty($connection->getClientId()) && empty($connection->getConnectedAt())) {
    5454            echo View::make('notices.pending');
    5555        }
  • modular-connector/trunk/src/app/WordPress/Settings.php

    r3269968 r3272667  
    272272            }
    273273        } elseif ($request->get('action') === 'cache') {
    274             Cache::driver('file')->flush();
    275             Cache::driver('database')->flush();
     274            try {
     275                Cache::driver('file')->flush();
     276            } catch (\Throwable $e) {
     277                // Silence is golden
     278            }
     279
     280            try {
     281                Cache::driver('database')->flush();
     282            } catch (\Throwable $e) {
     283                // Silence is golden
     284            }
    276285
    277286            $this->clearCompiledViews();
  • modular-connector/trunk/src/config/database.php

    r3269968 r3272667  
    88    [$host, $port, $socket, $isIpv6] = $wpdb->parse_db_host(DB_HOST);
    99}
     10
     11$charset = $wpdb->charset;
     12$collate = $wpdb->collate ?: sprintf('%s_general_ci', $charset);
    1013
    1114return [
     
    4952            'password' => defined('DB_PASSWORD') ? DB_PASSWORD : null,
    5053            'unix_socket' => $socket ?: null,
    51             'charset' => $wpdb->charset,
    52             'collation' => $wpdb->collate,
    53             'prefix' => !empty($wpdb->prefix) ? $wpdb->prefix : '',
     54            'charset' => 'utf8mb4',
     55            'collation' => 'utf8mb4_unicode_ci',
    5456            'prefix_indexes' => true,
    5557            'strict' => false,
     
    6567            'password' => defined('DB_PASSWORD') ? DB_PASSWORD : null,
    6668            'unix_socket' => $socket ?: null,
    67             'charset' => $wpdb->charset,
    68             'collation' => $wpdb->collate,
     69            'charset' => 'utf8mb4',
     70            'collation' => 'utf8mb4_unicode_ci',
    6971            'prefix' => (!empty($wpdb->prefix) ? $wpdb->prefix : '') . 'modular_',
    7072            'prefix_indexes' => true,
  • modular-connector/trunk/src/resources/css/index.css

    r3269968 r3272667  
    149149        z-index: 2;
    150150        padding: 0 24px 48px;
     151    }
     152
     153    .ds-box.ds-box-white {
     154        padding: 48px 24px;
    151155    }
    152156
  • modular-connector/trunk/src/resources/views/notices/disconnected.blade.php

    r3269968 r3272667  
    22
    33@section('content')
    4     <h2 class="notice-title">{{ esc_html__('Website not connected to Modular DS', 'modular-connector') }}</h2>
     4    <h2 class="notice-title">{{ esc_html__('Connect your website to Modular DS', 'modular-connector') }}</h2>
    55    <p>{!! sprintf(
    6         esc_html__('This website has lost connection with Modular DS. Learn how to connect it again %s.', 'modular-connector'),
     6        esc_html__('This website hasn\'t been connected to Modular DS yet or has lost connection. Learn how to connect it %s.', 'modular-connector'),
    77        sprintf(
    88            '<a href="%s" target="_blank">%s</a>',
     
    1212    ) !!}</p>
    1313    <p>
    14     {!! sprintf(
    15             '<a href="%s" id="modulards-connect" class="button button-primary">%s</a>',
    16             menu_page_url('modular-connector', false),
    17             esc_html__('Reconnect now', 'modular-connector')
    18         ) !!}
     14        {!! sprintf(
     15                '<a href="%s" id="modulards-connect" class="button button-primary">%s</a>',
     16                menu_page_url('modular-connector', false),
     17                esc_html__('Connect now', 'modular-connector')
     18            ) !!}
    1919    </p>
    2020@endsection
  • modular-connector/trunk/src/resources/views/notices/pending.blade.php

    r3269968 r3272667  
    22
    33@section('content')
    4     <h2 class="notice-title">{{ esc_html__('Connection pending', 'modular-connector') }}</h2>
    5     <p>{{ esc_html__('You have started the connection process with ModularDS but it is not complete yet.', 'modular-connector') }}</p>
     4    <h2 class="notice-title">{{ esc_html__('Connection to Modular DS pending', 'modular-connector') }}</h2>
     5
     6    <p>{!! sprintf(
     7        esc_html__('You have started the connection process with ModularDS but it is not complete yet. Learn how to connect it %s.', 'modular-connector'),
     8        sprintf(
     9            '<a href="%s" target="_blank">%s</a>',
     10            esc_html__('https://help.modulards.com/en/article/how-to-add-a-website-to-the-modular-panel-iso2mc/', 'modular-connector'),
     11            esc_html__('here', 'modular-connector')
     12        )
     13    ) !!}</p>
     14
    615    <p>
    716        {!! sprintf(
  • modular-connector/trunk/src/resources/views/settings/layout.blade.php

    r3269968 r3272667  
    1919            </div>
    2020        @endif
    21         <div class="ds-box">
     21        <div class="ds-box {{ $isWhiteLabelActive ? 'ds-box-white' : '' }}">
    2222            <div class="ds-left {{ $isWhiteLabelActive || $isConnected ? 'ds-left-flat' : '' }}">
    2323                @include('parts.form')
  • modular-connector/trunk/vendor/ares/framework/src/Foundation/Compatibilities/Compatibilities.php

    r3266504 r3272667  
    77    public static function getCompatibilityFixes()
    88    {
    9         return [WPForms::class, AllInOneSecurity::class, WpSimpleFirewall::class, DuoFactor::class, ShieldUserManagementICWP::class, SidekickPlugin::class, SpamShield::class, WPO365Login::class, JetPlugins::class, WPEngine::class, LoginLockdown::class, Office365forPostSMTPExtension::class];
     9        return [WPForms::class, AllInOneSecurity::class, WpSimpleFirewall::class, DuoFactor::class, ShieldUserManagementICWP::class, SidekickPlugin::class, SpamShield::class, WPO365Login::class, JetPlugins::class, WPEngine::class, LoginLockdown::class, Office365forPostSMTPExtension::class, ConstantContactForms::class];
     10    }
     11    /**
     12     * @param string $hookName
     13     * @param string $className
     14     * @param string $methodName
     15     * @param int $priority
     16     * @return false
     17     */
     18    public static function removeFilterByClassName(string $hookName, string $className, string $methodName, int $priority = 10)
     19    {
     20        global $wp_filter;
     21        if (empty($wp_filter[$hookName])) {
     22            return \false;
     23        }
     24        // Check if the hook is a WP_Hook object
     25        $isWpHook = is_a($wp_filter[$hookName], 'WP_Hook');
     26        // Extract the filters
     27        if ($isWpHook) {
     28            $hooks = $wp_filter[$hookName]->callbacks[$priority] ?? [];
     29        } else {
     30            $hooks = $wp_filter[$hookName][$priority] ?? [];
     31        }
     32        if (empty($hooks) || !is_array($hooks)) {
     33            return \false;
     34        }
     35        // Loop through the filters
     36        foreach ($hooks as $uniqueId => $filter) {
     37            if (!isset($filter['function']) || !is_array($filter['function'])) {
     38                continue;
     39            }
     40            // Extract the object and method
     41            $object = $filter['function'][0] ?? null;
     42            $method = $filter['function'][1] ?? null;
     43            if (!is_object($object) || get_class($object) !== $className || $method !== $methodName) {
     44                continue;
     45            }
     46            // Remove the filter
     47            if ($isWpHook) {
     48                unset($wp_filter[$hookName]->callbacks[$priority][$uniqueId]);
     49            } else {
     50                unset($wp_filter[$hookName][$priority][$uniqueId]);
     51            }
     52        }
     53        return \true;
    1054    }
    1155}
  • modular-connector/trunk/vendor/ares/framework/src/Foundation/Compatibilities/Office365forPostSMTPExtension.php

    r3266504 r3272667  
    1212            }
    1313            // Disabled "Authorization code should be in the "code" query param"
    14             self::removeFilterByClassName('post_smtp_handle_oauth', \Post_Smtp_Office365::class, 'handle_oauth');
    15             remove_action('post_smtp_handle_oauth', 'Post_Smtp_Office365::handle_oauth');
     14            Compatibilities::removeFilterByClassName('post_smtp_handle_oauth', \Post_Smtp_Office365::class, 'handle_oauth');
    1615        });
    1716    }
    18     /**
    19      * @param string $hookName
    20      * @param string $className
    21      * @param string $methodName
    22      * @param int $priority
    23      * @return false
    24      */
    25     protected static function removeFilterByClassName(string $hookName, string $className, string $methodName, int $priority = 10)
    26     {
    27         global $wp_filter;
    28         if (empty($wp_filter[$hookName])) {
    29             return \false;
    30         }
    31         // Check if the hook is a WP_Hook object
    32         $isWpHook = is_a($wp_filter[$hookName], 'WP_Hook');
    33         // Extract the filters
    34         if ($isWpHook) {
    35             $hooks = $wp_filter[$hookName]->callbacks[$priority] ?? [];
    36         } else {
    37             $hooks = $wp_filter[$hookName][$priority] ?? [];
    38         }
    39         if (empty($hooks) || !is_array($hooks)) {
    40             return \false;
    41         }
    42         // Loop through the filters
    43         foreach ($hooks as $uniqueId => $filter) {
    44             if (!isset($filter['function']) || !is_array($filter['function'])) {
    45                 continue;
    46             }
    47             // Extract the object and method
    48             $object = $filter['function'][0] ?? null;
    49             $method = $filter['function'][1] ?? null;
    50             if (!is_object($object) || get_class($object) !== $className || $method !== $methodName) {
    51                 continue;
    52             }
    53             // Remove the filter
    54             if ($isWpHook) {
    55                 unset($wp_filter[$hookName]->callbacks[$priority][$uniqueId]);
    56             } else {
    57                 unset($wp_filter[$hookName][$priority][$uniqueId]);
    58             }
    59         }
    60         return \true;
    61     }
    6217}
  • modular-connector/trunk/vendor/composer/autoload_classmap.php

    r3269968 r3272667  
    2424    'Modular\\ConnectorDependencies\\Ares\\Framework\\Foundation\\Compatibilities\\AllInOneSecurity' => $vendorDir . '/ares/framework/src/Foundation/Compatibilities/AllInOneSecurity.php',
    2525    'Modular\\ConnectorDependencies\\Ares\\Framework\\Foundation\\Compatibilities\\Compatibilities' => $vendorDir . '/ares/framework/src/Foundation/Compatibilities/Compatibilities.php',
     26    'Modular\\ConnectorDependencies\\Ares\\Framework\\Foundation\\Compatibilities\\ConstantContactForms' => $vendorDir . '/ares/framework/src/Foundation/Compatibilities/ConstantContactForms.php',
    2627    'Modular\\ConnectorDependencies\\Ares\\Framework\\Foundation\\Compatibilities\\DuoFactor' => $vendorDir . '/ares/framework/src/Foundation/Compatibilities/DuoFactor.php',
    2728    'Modular\\ConnectorDependencies\\Ares\\Framework\\Foundation\\Compatibilities\\JetPlugins' => $vendorDir . '/ares/framework/src/Foundation/Compatibilities/JetPlugins.php',
  • modular-connector/trunk/vendor/composer/autoload_files.php

    r3269968 r3272667  
    77
    88return array(
    9     '48f4d12c94b6e29269234574c5ea3c49' => $vendorDir . '/symfony/polyfill-php80/bootstrap.php',
    10     'e48eb9b0edf6d5c4ed4a58c022517365' => $vendorDir . '/symfony/polyfill-mbstring/bootstrap.php',
    11     '8c71a1f3df532e756b6cd0656de2489d' => $vendorDir . '/symfony/deprecation-contracts/function.php',
    12     '9c5ebe25673aa4836bb24832bfabfd4d' => $vendorDir . '/illuminate/collections/helpers.php',
    13     '1e75a60dcad5c43a781ec36d59c3a6c9' => $vendorDir . '/symfony/translation/Resources/functions.php',
    14     '9de21f9eecf91601d8f563131640b776' => $vendorDir . '/illuminate/support/helpers.php',
    15     'd124e3733613111a84b0acf896684d9b' => $vendorDir . '/symfony/polyfill-ctype/bootstrap.php',
    16     'f46f87ba72ee740c54d11df6bdc11a04' => $vendorDir . '/symfony/polyfill-php73/bootstrap.php',
    17     '2c209ae1618575d4ad3b54a5a8637caa' => $vendorDir . '/symfony/polyfill-intl-normalizer/bootstrap.php',
    18     'cafaf63eb43c8c6d23251c69a5a48810' => $vendorDir . '/symfony/var-dumper/Resources/functions/dump.php',
    19     'f55c14fbb13bfcd10625344d25dcb95e' => $vendorDir . '/symfony/polyfill-intl-grapheme/bootstrap.php',
    20     '5396529cd12b457fe9ba84e96ae40f30' => $vendorDir . '/symfony/string/Resources/functions.php',
    21     '96578ee85f03ce6fff60b50ff33620b7' => $vendorDir . '/symfony/polyfill-intl-idn/bootstrap.php',
    22     '9c7f0c9298b37bc40d60aa6f296eb4d4' => $vendorDir . '/symfony/polyfill-php81/bootstrap.php',
    23     '948ea06e8547e3732942ab258907ac48' => $vendorDir . '/illuminate/events/functions.php',
    24     '1572ed0ced6327519a8b822b739c4551' => $vendorDir . '/opis/closure/functions.php',
    25     'b0a104e81b1a8bd54d4ccbe408a837bf' => $vendorDir . '/ralouphie/getallheaders/src/getallheaders.php',
    26     '628365b7fa2150a3a638fcc1208f150b' => $vendorDir . '/ramsey/uuid/src/functions.php',
    27     '6c4ce5b23304bfe5833b57eeb989a90f' => $vendorDir . '/ares/framework/src/helpers.php',
    28     '16fe2f7bb555e140cab31a8914096a4d' => $vendorDir . '/ares/framework/illuminate/Foundation/helpers.php',
    29     '9911d5e4c3353e357d8f6faaf0159e1e' => $vendorDir . '/guzzlehttp/guzzle/src/functions_include.php',
     9    '406db8ad88b485bc86b89206d09d0a0e' => $vendorDir . '/symfony/polyfill-php80/bootstrap.php',
     10    '7fff9a4bcb11096ca9105e29812c27a9' => $vendorDir . '/symfony/polyfill-mbstring/bootstrap.php',
     11    'e149bbda44f14616ee35a627bc2606bb' => $vendorDir . '/symfony/deprecation-contracts/function.php',
     12    'b080f818a932389db687658d94a03ddb' => $vendorDir . '/illuminate/collections/helpers.php',
     13    'b522304e28e0c3252aa5cda4933c570f' => $vendorDir . '/symfony/translation/Resources/functions.php',
     14    'c7dbe839fa9de0b5765cdc6a093a7563' => $vendorDir . '/illuminate/support/helpers.php',
     15    '9cff181ce43de8202fb64ba83a10e1a4' => $vendorDir . '/symfony/polyfill-ctype/bootstrap.php',
     16    'a2f471dbf51d67e89ed617246a64c2c7' => $vendorDir . '/symfony/polyfill-php73/bootstrap.php',
     17    '72ea3d28770cf801d34cba7e917e37c4' => $vendorDir . '/symfony/polyfill-intl-normalizer/bootstrap.php',
     18    '0513a8a5149d6b56b51a8bf7d6715eca' => $vendorDir . '/symfony/var-dumper/Resources/functions/dump.php',
     19    'b418665abe0c017a90b4cc24cda75229' => $vendorDir . '/symfony/polyfill-intl-grapheme/bootstrap.php',
     20    'da018201875e55eea5b56f11b999e16d' => $vendorDir . '/symfony/string/Resources/functions.php',
     21    '06fbbffe5e8e79f8fc80aee90f91894e' => $vendorDir . '/symfony/polyfill-intl-idn/bootstrap.php',
     22    'e8849273884a25a6a0dc102622f331fa' => $vendorDir . '/symfony/polyfill-php81/bootstrap.php',
     23    '4679ed4be83787b31abee586ec9147bb' => $vendorDir . '/illuminate/events/functions.php',
     24    'e2cf331f99ccd8fbb272fe97d1f7a4e4' => $vendorDir . '/opis/closure/functions.php',
     25    'f487b6ef76688559b72dab08ee9e2d8d' => $vendorDir . '/ralouphie/getallheaders/src/getallheaders.php',
     26    'e10a08037444e58209f0d5cb3b587f41' => $vendorDir . '/ramsey/uuid/src/functions.php',
     27    '09f7c992d65297d37dc4833c07cb739c' => $vendorDir . '/ares/framework/src/helpers.php',
     28    'f44a784354d8c06729544f40915cd47c' => $vendorDir . '/ares/framework/illuminate/Foundation/helpers.php',
     29    '4e4028fbf1618b4bc84ec55ef1c2dfb9' => $vendorDir . '/guzzlehttp/guzzle/src/functions_include.php',
    3030);
  • modular-connector/trunk/vendor/composer/autoload_static.php

    r3269968 r3272667  
    88{
    99    public static $files = array (
    10         '48f4d12c94b6e29269234574c5ea3c49' => __DIR__ . '/..' . '/symfony/polyfill-php80/bootstrap.php',
    11         'e48eb9b0edf6d5c4ed4a58c022517365' => __DIR__ . '/..' . '/symfony/polyfill-mbstring/bootstrap.php',
    12         '8c71a1f3df532e756b6cd0656de2489d' => __DIR__ . '/..' . '/symfony/deprecation-contracts/function.php',
    13         '9c5ebe25673aa4836bb24832bfabfd4d' => __DIR__ . '/..' . '/illuminate/collections/helpers.php',
    14         '1e75a60dcad5c43a781ec36d59c3a6c9' => __DIR__ . '/..' . '/symfony/translation/Resources/functions.php',
    15         '9de21f9eecf91601d8f563131640b776' => __DIR__ . '/..' . '/illuminate/support/helpers.php',
    16         'd124e3733613111a84b0acf896684d9b' => __DIR__ . '/..' . '/symfony/polyfill-ctype/bootstrap.php',
    17         'f46f87ba72ee740c54d11df6bdc11a04' => __DIR__ . '/..' . '/symfony/polyfill-php73/bootstrap.php',
    18         '2c209ae1618575d4ad3b54a5a8637caa' => __DIR__ . '/..' . '/symfony/polyfill-intl-normalizer/bootstrap.php',
    19         'cafaf63eb43c8c6d23251c69a5a48810' => __DIR__ . '/..' . '/symfony/var-dumper/Resources/functions/dump.php',
    20         'f55c14fbb13bfcd10625344d25dcb95e' => __DIR__ . '/..' . '/symfony/polyfill-intl-grapheme/bootstrap.php',
    21         '5396529cd12b457fe9ba84e96ae40f30' => __DIR__ . '/..' . '/symfony/string/Resources/functions.php',
    22         '96578ee85f03ce6fff60b50ff33620b7' => __DIR__ . '/..' . '/symfony/polyfill-intl-idn/bootstrap.php',
    23         '9c7f0c9298b37bc40d60aa6f296eb4d4' => __DIR__ . '/..' . '/symfony/polyfill-php81/bootstrap.php',
    24         '948ea06e8547e3732942ab258907ac48' => __DIR__ . '/..' . '/illuminate/events/functions.php',
    25         '1572ed0ced6327519a8b822b739c4551' => __DIR__ . '/..' . '/opis/closure/functions.php',
    26         'b0a104e81b1a8bd54d4ccbe408a837bf' => __DIR__ . '/..' . '/ralouphie/getallheaders/src/getallheaders.php',
    27         '628365b7fa2150a3a638fcc1208f150b' => __DIR__ . '/..' . '/ramsey/uuid/src/functions.php',
    28         '6c4ce5b23304bfe5833b57eeb989a90f' => __DIR__ . '/..' . '/ares/framework/src/helpers.php',
    29         '16fe2f7bb555e140cab31a8914096a4d' => __DIR__ . '/..' . '/ares/framework/illuminate/Foundation/helpers.php',
    30         '9911d5e4c3353e357d8f6faaf0159e1e' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/functions_include.php',
     10        '406db8ad88b485bc86b89206d09d0a0e' => __DIR__ . '/..' . '/symfony/polyfill-php80/bootstrap.php',
     11        '7fff9a4bcb11096ca9105e29812c27a9' => __DIR__ . '/..' . '/symfony/polyfill-mbstring/bootstrap.php',
     12        'e149bbda44f14616ee35a627bc2606bb' => __DIR__ . '/..' . '/symfony/deprecation-contracts/function.php',
     13        'b080f818a932389db687658d94a03ddb' => __DIR__ . '/..' . '/illuminate/collections/helpers.php',
     14        'b522304e28e0c3252aa5cda4933c570f' => __DIR__ . '/..' . '/symfony/translation/Resources/functions.php',
     15        'c7dbe839fa9de0b5765cdc6a093a7563' => __DIR__ . '/..' . '/illuminate/support/helpers.php',
     16        '9cff181ce43de8202fb64ba83a10e1a4' => __DIR__ . '/..' . '/symfony/polyfill-ctype/bootstrap.php',
     17        'a2f471dbf51d67e89ed617246a64c2c7' => __DIR__ . '/..' . '/symfony/polyfill-php73/bootstrap.php',
     18        '72ea3d28770cf801d34cba7e917e37c4' => __DIR__ . '/..' . '/symfony/polyfill-intl-normalizer/bootstrap.php',
     19        '0513a8a5149d6b56b51a8bf7d6715eca' => __DIR__ . '/..' . '/symfony/var-dumper/Resources/functions/dump.php',
     20        'b418665abe0c017a90b4cc24cda75229' => __DIR__ . '/..' . '/symfony/polyfill-intl-grapheme/bootstrap.php',
     21        'da018201875e55eea5b56f11b999e16d' => __DIR__ . '/..' . '/symfony/string/Resources/functions.php',
     22        '06fbbffe5e8e79f8fc80aee90f91894e' => __DIR__ . '/..' . '/symfony/polyfill-intl-idn/bootstrap.php',
     23        'e8849273884a25a6a0dc102622f331fa' => __DIR__ . '/..' . '/symfony/polyfill-php81/bootstrap.php',
     24        '4679ed4be83787b31abee586ec9147bb' => __DIR__ . '/..' . '/illuminate/events/functions.php',
     25        'e2cf331f99ccd8fbb272fe97d1f7a4e4' => __DIR__ . '/..' . '/opis/closure/functions.php',
     26        'f487b6ef76688559b72dab08ee9e2d8d' => __DIR__ . '/..' . '/ralouphie/getallheaders/src/getallheaders.php',
     27        'e10a08037444e58209f0d5cb3b587f41' => __DIR__ . '/..' . '/ramsey/uuid/src/functions.php',
     28        '09f7c992d65297d37dc4833c07cb739c' => __DIR__ . '/..' . '/ares/framework/src/helpers.php',
     29        'f44a784354d8c06729544f40915cd47c' => __DIR__ . '/..' . '/ares/framework/illuminate/Foundation/helpers.php',
     30        '4e4028fbf1618b4bc84ec55ef1c2dfb9' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/functions_include.php',
    3131    );
    3232
     
    429429        'Modular\\ConnectorDependencies\\Ares\\Framework\\Foundation\\Compatibilities\\AllInOneSecurity' => __DIR__ . '/..' . '/ares/framework/src/Foundation/Compatibilities/AllInOneSecurity.php',
    430430        'Modular\\ConnectorDependencies\\Ares\\Framework\\Foundation\\Compatibilities\\Compatibilities' => __DIR__ . '/..' . '/ares/framework/src/Foundation/Compatibilities/Compatibilities.php',
     431        'Modular\\ConnectorDependencies\\Ares\\Framework\\Foundation\\Compatibilities\\ConstantContactForms' => __DIR__ . '/..' . '/ares/framework/src/Foundation/Compatibilities/ConstantContactForms.php',
    431432        'Modular\\ConnectorDependencies\\Ares\\Framework\\Foundation\\Compatibilities\\DuoFactor' => __DIR__ . '/..' . '/ares/framework/src/Foundation/Compatibilities/DuoFactor.php',
    432433        'Modular\\ConnectorDependencies\\Ares\\Framework\\Foundation\\Compatibilities\\JetPlugins' => __DIR__ . '/..' . '/ares/framework/src/Foundation/Compatibilities/JetPlugins.php',
  • modular-connector/trunk/vendor/composer/installed.json

    r3269968 r3272667  
    33        {
    44            "name": "ares\/framework",
    5             "version": "3.5.0",
    6             "version_normalized": "3.5.0.0",
     5            "version": "3.5.1",
     6            "version_normalized": "3.5.1.0",
    77            "source": {
    88                "type": "git",
    99                "url": "[email protected]:modular\/connector\/ares.git",
    10                 "reference": "927b7774775ebc6ca15f233308ecdf840c72f7fe"
    11             },
    12             "dist": {
    13                 "type": "zip",
    14                 "url": "https:\/\/gitlab.modulards.com\/api\/v4\/projects\/modular%2Fconnector%2Fares\/repository\/archive.zip?sha=927b7774775ebc6ca15f233308ecdf840c72f7fe",
    15                 "reference": "927b7774775ebc6ca15f233308ecdf840c72f7fe",
     10                "reference": "6d981e29b8fb651da89e73c2e60745a9fad62179"
     11            },
     12            "dist": {
     13                "type": "zip",
     14                "url": "https:\/\/gitlab.modulards.com\/api\/v4\/projects\/modular%2Fconnector%2Fares\/repository\/archive.zip?sha=6d981e29b8fb651da89e73c2e60745a9fad62179",
     15                "reference": "6d981e29b8fb651da89e73c2e60745a9fad62179",
    1616                "shasum": ""
    1717            },
     
    4242                "filp\/whoops": "^2.12"
    4343            },
    44             "time": "2025-04-09T11:15:45+02:00",
     44            "time": "2025-04-14T11:30:50+02:00",
    4545            "type": "library",
    4646            "installation-source": "dist",
     
    6969            ],
    7070            "support": {
    71                 "source": "https:\/\/gitlab.modulards.com\/modular\/connector\/ares\/-\/tree\/3.5.0",
     71                "source": "https:\/\/gitlab.modulards.com\/modular\/connector\/ares\/-\/tree\/3.5.1",
    7272                "issues": "https:\/\/gitlab.modulards.com\/modular\/connector\/ares\/-\/issues"
    7373            },
  • modular-connector/trunk/vendor/composer/installed.php

    r3269968 r3272667  
    33namespace Modular\ConnectorDependencies;
    44
    5 return array('root' => array('name' => 'modular/connector', 'pretty_version' => 'dev-master', 'version' => 'dev-master', 'reference' => '85181997afc4b78142d50b7a29f657d73ad57328', 'type' => 'wordpres-plugin', 'install_path' => __DIR__ . '/../../', 'aliases' => array(), 'dev' => \true), 'versions' => array('ares/framework' => array('pretty_version' => '3.5.0', 'version' => '3.5.0.0', 'reference' => '927b7774775ebc6ca15f233308ecdf840c72f7fe', 'type' => 'library', 'install_path' => __DIR__ . '/../ares/framework', 'aliases' => array(), 'dev_requirement' => \false), 'brick/math' => array('pretty_version' => '0.9.3', 'version' => '0.9.3.0', 'reference' => 'ca57d18f028f84f777b2168cd1911b0dee2343ae', 'type' => 'library', 'install_path' => __DIR__ . '/../brick/math', 'aliases' => array(), 'dev_requirement' => \false), 'carbonphp/carbon-doctrine-types' => array('pretty_version' => '2.1.0', 'version' => '2.1.0.0', 'reference' => '99f76ffa36cce3b70a4a6abce41dba15ca2e84cb', 'type' => 'library', 'install_path' => __DIR__ . '/../carbonphp/carbon-doctrine-types', 'aliases' => array(), 'dev_requirement' => \false), 'doctrine/inflector' => array('pretty_version' => '2.0.10', 'version' => '2.0.10.0', 'reference' => '5817d0659c5b50c9b950feb9af7b9668e2c436bc', 'type' => 'library', 'install_path' => __DIR__ . '/../doctrine/inflector', 'aliases' => array(), 'dev_requirement' => \false), 'dragonmantank/cron-expression' => array('pretty_version' => 'v3.4.0', 'version' => '3.4.0.0', 'reference' => '8c784d071debd117328803d86b2097615b457500', 'type' => 'library', 'install_path' => __DIR__ . '/../dragonmantank/cron-expression', 'aliases' => array(), 'dev_requirement' => \false), 'graham-campbell/result-type' => array('pretty_version' => 'v1.1.3', 'version' => '1.1.3.0', 'reference' => '3ba905c11371512af9d9bdd27d99b782216b6945', 'type' => 'library', 'install_path' => __DIR__ . '/../graham-campbell/result-type', 'aliases' => array(), 'dev_requirement' => \false), 'guzzlehttp/guzzle' => array('pretty_version' => '7.9.3', 'version' => '7.9.3.0', 'reference' => '7b2f29fe81dc4da0ca0ea7d42107a0845946ea77', 'type' => 'library', 'install_path' => __DIR__ . '/../guzzlehttp/guzzle', 'aliases' => array(), 'dev_requirement' => \false), 'guzzlehttp/promises' => array('pretty_version' => '2.2.0', 'version' => '2.2.0.0', 'reference' => '7c69f28996b0a6920945dd20b3857e499d9ca96c', 'type' => 'library', 'install_path' => __DIR__ . '/../guzzlehttp/promises', 'aliases' => array(), 'dev_requirement' => \false), 'guzzlehttp/psr7' => array('pretty_version' => '2.7.1', 'version' => '2.7.1.0', 'reference' => 'c2270caaabe631b3b44c85f99e5a04bbb8060d16', 'type' => 'library', 'install_path' => __DIR__ . '/../guzzlehttp/psr7', 'aliases' => array(), 'dev_requirement' => \false), 'ifsnop/mysqldump-php' => array('pretty_version' => 'v2.12', 'version' => '2.12.0.0', 'reference' => '2d3a43fc0c49f23bf7dee392b0dd1f8c799f89d3', 'type' => 'library', 'install_path' => __DIR__ . '/../ifsnop/mysqldump-php', 'aliases' => array(), 'dev_requirement' => \false), 'illuminate/bus' => array('pretty_version' => 'v8.83.27', 'version' => '8.83.27.0', 'reference' => 'd2a8ae4bfd881086e55455e470776358eab27eae', 'type' => 'library', 'install_path' => __DIR__ . '/../illuminate/bus', 'aliases' => array(), 'dev_requirement' => \false), 'illuminate/cache' => array('pretty_version' => 'v8.83.27', 'version' => '8.83.27.0', 'reference' => '7ae5b3661413dad7264b5c69037190d766bae50f', 'type' => 'library', 'install_path' => __DIR__ . '/../illuminate/cache', 'aliases' => array(), 'dev_requirement' => \false), 'illuminate/collections' => array('pretty_version' => 'v8.83.27', 'version' => '8.83.27.0', 'reference' => '705a4e1ef93cd492c45b9b3e7911cccc990a07f4', 'type' => 'library', 'install_path' => __DIR__ . '/../illuminate/collections', 'aliases' => array(), 'dev_requirement' => \false), 'illuminate/config' => array('pretty_version' => 'v8.83.27', 'version' => '8.83.27.0', 'reference' => 'feac56ab7a5c70cf2dc60dffe4323eb9851f51a8', 'type' => 'library', 'install_path' => __DIR__ . '/../illuminate/config', 'aliases' => array(), 'dev_requirement' => \false), 'illuminate/console' => array('pretty_version' => 'v8.83.27', 'version' => '8.83.27.0', 'reference' => '4aaa93223eb3bd8119157c95f58c022967826035', 'type' => 'library', 'install_path' => __DIR__ . '/../illuminate/console', 'aliases' => array(), 'dev_requirement' => \false), 'illuminate/container' => array('pretty_version' => 'v8.83.27', 'version' => '8.83.27.0', 'reference' => '14062628d05f75047c5a1360b9350028427d568e', 'type' => 'library', 'install_path' => __DIR__ . '/../illuminate/container', 'aliases' => array(), 'dev_requirement' => \false), 'illuminate/contracts' => array('pretty_version' => 'v8.83.27', 'version' => '8.83.27.0', 'reference' => '5e0fd287a1b22a6b346a9f7cd484d8cf0234585d', 'type' => 'library', 'install_path' => __DIR__ . '/../illuminate/contracts', 'aliases' => array(), 'dev_requirement' => \false), 'illuminate/database' => array('pretty_version' => 'v8.83.27', 'version' => '8.83.27.0', 'reference' => '1a5b0e4e6913415464fa2aab554a38b9e6fa44b1', 'type' => 'library', 'install_path' => __DIR__ . '/../illuminate/database', 'aliases' => array(), 'dev_requirement' => \false), 'illuminate/events' => array('pretty_version' => 'v8.83.27', 'version' => '8.83.27.0', 'reference' => 'b7f06cafb6c09581617f2ca05d69e9b159e5a35d', 'type' => 'library', 'install_path' => __DIR__ . '/../illuminate/events', 'aliases' => array(), 'dev_requirement' => \false), 'illuminate/filesystem' => array('pretty_version' => 'v8.83.27', 'version' => '8.83.27.0', 'reference' => '73db3e9a233ed587ba54f52ab8580f3c7bc872b2', 'type' => 'library', 'install_path' => __DIR__ . '/../illuminate/filesystem', 'aliases' => array(), 'dev_requirement' => \false), 'illuminate/http' => array('pretty_version' => 'v8.83.27', 'version' => '8.83.27.0', 'reference' => '38b8b0c8ca5d5231df9c515f3a3e7aac5f0da9f4', 'type' => 'library', 'install_path' => __DIR__ . '/../illuminate/http', 'aliases' => array(), 'dev_requirement' => \false), 'illuminate/log' => array('pretty_version' => 'v8.83.27', 'version' => '8.83.27.0', 'reference' => '1dbdc6aca24d1d2b5903f865bb206039d4b800b2', 'type' => 'library', 'install_path' => __DIR__ . '/../illuminate/log', 'aliases' => array(), 'dev_requirement' => \false), 'illuminate/macroable' => array('pretty_version' => 'v8.83.27', 'version' => '8.83.27.0', 'reference' => 'aed81891a6e046fdee72edd497f822190f61c162', 'type' => 'library', 'install_path' => __DIR__ . '/../illuminate/macroable', 'aliases' => array(), 'dev_requirement' => \false), 'illuminate/pipeline' => array('pretty_version' => 'v8.83.27', 'version' => '8.83.27.0', 'reference' => '23aeff5b26ae4aee3f370835c76bd0f4e93f71d2', 'type' => 'library', 'install_path' => __DIR__ . '/../illuminate/pipeline', 'aliases' => array(), 'dev_requirement' => \false), 'illuminate/queue' => array('pretty_version' => 'v8.83.27', 'version' => '8.83.27.0', 'reference' => '0023daabf67743f7a2bd8328ca2b5537d93e4ae7', 'type' => 'library', 'install_path' => __DIR__ . '/../illuminate/queue', 'aliases' => array(), 'dev_requirement' => \false), 'illuminate/routing' => array('pretty_version' => 'v8.83.27', 'version' => '8.83.27.0', 'reference' => 'bcef07a281ee4a616eef66b22d46fff7050e9b29', 'type' => 'library', 'install_path' => __DIR__ . '/../illuminate/routing', 'aliases' => array(), 'dev_requirement' => \false), 'illuminate/session' => array('pretty_version' => 'v8.83.27', 'version' => '8.83.27.0', 'reference' => '9c9988d7229d888c098eebbbb9fcb8c68580411c', 'type' => 'library', 'install_path' => __DIR__ . '/../illuminate/session', 'aliases' => array(), 'dev_requirement' => \false), 'illuminate/support' => array('pretty_version' => 'v8.83.27', 'version' => '8.83.27.0', 'reference' => '1c79242468d3bbd9a0f7477df34f9647dde2a09b', 'type' => 'library', 'install_path' => __DIR__ . '/../illuminate/support', 'aliases' => array(), 'dev_requirement' => \false), 'illuminate/view' => array('pretty_version' => 'v8.83.27', 'version' => '8.83.27.0', 'reference' => '5e73eef48d9242532f81fadc14c816a01bfb1388', 'type' => 'library', 'install_path' => __DIR__ . '/../illuminate/view', 'aliases' => array(), 'dev_requirement' => \false), 'laravel/serializable-closure' => array('pretty_version' => 'v1.3.7', 'version' => '1.3.7.0', 'reference' => '4f48ade902b94323ca3be7646db16209ec76be3d', 'type' => 'library', 'install_path' => __DIR__ . '/../laravel/serializable-closure', 'aliases' => array(), 'dev_requirement' => \false), 'league/flysystem' => array('pretty_version' => '1.1.10', 'version' => '1.1.10.0', 'reference' => '3239285c825c152bcc315fe0e87d6b55f5972ed1', 'type' => 'library', 'install_path' => __DIR__ . '/../league/flysystem', 'aliases' => array(), 'dev_requirement' => \false), 'league/mime-type-detection' => array('pretty_version' => '1.16.0', 'version' => '1.16.0.0', 'reference' => '2d6702ff215bf922936ccc1ad31007edc76451b9', 'type' => 'library', 'install_path' => __DIR__ . '/../league/mime-type-detection', 'aliases' => array(), 'dev_requirement' => \false), 'modular/connector' => array('pretty_version' => 'dev-master', 'version' => 'dev-master', 'reference' => '85181997afc4b78142d50b7a29f657d73ad57328', 'type' => 'wordpres-plugin', 'install_path' => __DIR__ . '/../../', 'aliases' => array(), 'dev_requirement' => \false), 'monolog/monolog' => array('pretty_version' => '2.10.0', 'version' => '2.10.0.0', 'reference' => '5cf826f2991858b54d5c3809bee745560a1042a7', 'type' => 'library', 'install_path' => __DIR__ . '/../monolog/monolog', 'aliases' => array(), 'dev_requirement' => \false), 'mtdowling/cron-expression' => array('dev_requirement' => \false, 'replaced' => array(0 => '^1.0')), 'nesbot/carbon' => array('pretty_version' => '2.73.0', 'version' => '2.73.0.0', 'reference' => '9228ce90e1035ff2f0db84b40ec2e023ed802075', 'type' => 'library', 'install_path' => __DIR__ . '/../nesbot/carbon', 'aliases' => array(), 'dev_requirement' => \false), 'opis/closure' => array('pretty_version' => '3.6.3', 'version' => '3.6.3.0', 'reference' => '3d81e4309d2a927abbe66df935f4bb60082805ad', 'type' => 'library', 'install_path' => __DIR__ . '/../opis/closure', 'aliases' => array(), 'dev_requirement' => \false), 'phpoption/phpoption' => array('pretty_version' => '1.9.3', 'version' => '1.9.3.0', 'reference' => 'e3fac8b24f56113f7cb96af14958c0dd16330f54', 'type' => 'library', 'install_path' => __DIR__ . '/../phpoption/phpoption', 'aliases' => array(), 'dev_requirement' => \false), 'psr/clock' => array('pretty_version' => '1.0.0', 'version' => '1.0.0.0', 'reference' => 'e41a24703d4560fd0acb709162f73b8adfc3aa0d', 'type' => 'library', 'install_path' => __DIR__ . '/../psr/clock', 'aliases' => array(), 'dev_requirement' => \false), 'psr/clock-implementation' => array('dev_requirement' => \false, 'provided' => array(0 => '1.0')), 'psr/container' => array('pretty_version' => '1.1.2', 'version' => '1.1.2.0', 'reference' => '513e0666f7216c7459170d56df27dfcefe1689ea', 'type' => 'library', 'install_path' => __DIR__ . '/../psr/container', 'aliases' => array(), 'dev_requirement' => \false), 'psr/container-implementation' => array('dev_requirement' => \false, 'provided' => array(0 => '1.0')), 'psr/event-dispatcher' => array('pretty_version' => '1.0.0', 'version' => '1.0.0.0', 'reference' => 'dbefd12671e8a14ec7f180cab83036ed26714bb0', 'type' => 'library', 'install_path' => __DIR__ . '/../psr/event-dispatcher', 'aliases' => array(), 'dev_requirement' => \false), 'psr/event-dispatcher-implementation' => array('dev_requirement' => \false, 'provided' => array(0 => '1.0')), 'psr/http-client' => array('pretty_version' => '1.0.3', 'version' => '1.0.3.0', 'reference' => 'bb5906edc1c324c9a05aa0873d40117941e5fa90', 'type' => 'library', 'install_path' => __DIR__ . '/../psr/http-client', 'aliases' => array(), 'dev_requirement' => \false), 'psr/http-client-implementation' => array('dev_requirement' => \false, 'provided' => array(0 => '1.0')), 'psr/http-factory' => array('pretty_version' => '1.1.0', 'version' => '1.1.0.0', 'reference' => '2b4765fddfe3b508ac62f829e852b1501d3f6e8a', 'type' => 'library', 'install_path' => __DIR__ . '/../psr/http-factory', 'aliases' => array(), 'dev_requirement' => \false), 'psr/http-factory-implementation' => array('dev_requirement' => \false, 'provided' => array(0 => '1.0')), 'psr/http-message' => array('pretty_version' => '2.0', 'version' => '2.0.0.0', 'reference' => '402d35bcb92c70c026d1a6a9883f06b2ead23d71', 'type' => 'library', 'install_path' => __DIR__ . '/../psr/http-message', 'aliases' => array(), 'dev_requirement' => \false), 'psr/http-message-implementation' => array('dev_requirement' => \false, 'provided' => array(0 => '1.0')), 'psr/log' => array('pretty_version' => '1.1.4', 'version' => '1.1.4.0', 'reference' => 'd49695b909c3b7628b6289db5479a1c204601f11', 'type' => 'library', 'install_path' => __DIR__ . '/../psr/log', 'aliases' => array(), 'dev_requirement' => \false), 'psr/log-implementation' => array('dev_requirement' => \false, 'provided' => array(0 => '1.0|2.0', 1 => '1.0.0 || 2.0.0 || 3.0.0')), 'psr/simple-cache' => array('pretty_version' => '1.0.1', 'version' => '1.0.1.0', 'reference' => '408d5eafb83c57f6365a3ca330ff23aa4a5fa39b', 'type' => 'library', 'install_path' => __DIR__ . '/../psr/simple-cache', 'aliases' => array(), 'dev_requirement' => \false), 'psr/simple-cache-implementation' => array('dev_requirement' => \false, 'provided' => array(0 => '1.0')), 'ralouphie/getallheaders' => array('pretty_version' => '3.0.3', 'version' => '3.0.3.0', 'reference' => '120b605dfeb996808c31b6477290a714d356e822', 'type' => 'library', 'install_path' => __DIR__ . '/../ralouphie/getallheaders', 'aliases' => array(), 'dev_requirement' => \false), 'ramsey/collection' => array('pretty_version' => '1.3.0', 'version' => '1.3.0.0', 'reference' => 'ad7475d1c9e70b190ecffc58f2d989416af339b4', 'type' => 'library', 'install_path' => __DIR__ . '/../ramsey/collection', 'aliases' => array(), 'dev_requirement' => \false), 'ramsey/uuid' => array('pretty_version' => '4.2.3', 'version' => '4.2.3.0', 'reference' => 'fc9bb7fb5388691fd7373cd44dcb4d63bbcf24df', 'type' => 'library', 'install_path' => __DIR__ . '/../ramsey/uuid', 'aliases' => array(), 'dev_requirement' => \false), 'rhumsaa/uuid' => array('dev_requirement' => \false, 'replaced' => array(0 => '4.2.3')), 'sniccowp/php-scoper-wordpress-excludes' => array('pretty_version' => '6.7.2', 'version' => '6.7.2.0', 'reference' => '1e65b207d6f4753904774430ccfc06cb6bfa486e', 'type' => 'library', 'install_path' => __DIR__ . '/../sniccowp/php-scoper-wordpress-excludes', 'aliases' => array(), 'dev_requirement' => \true), 'spatie/db-dumper' => array('pretty_version' => '2.21.1', 'version' => '2.21.1.0', 'reference' => '05e5955fb882008a8947c5a45146d86cfafa10d1', 'type' => 'library', 'install_path' => __DIR__ . '/../spatie/db-dumper', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/console' => array('pretty_version' => 'v5.4.47', 'version' => '5.4.47.0', 'reference' => 'c4ba980ca61a9eb18ee6bcc73f28e475852bb1ed', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/console', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/deprecation-contracts' => array('pretty_version' => 'v2.5.4', 'version' => '2.5.4.0', 'reference' => '605389f2a7e5625f273b53960dc46aeaf9c62918', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/deprecation-contracts', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/error-handler' => array('pretty_version' => 'v5.4.46', 'version' => '5.4.46.0', 'reference' => 'd19ede7a2cafb386be9486c580649d0f9e3d0363', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/error-handler', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/event-dispatcher' => array('pretty_version' => 'v5.4.45', 'version' => '5.4.45.0', 'reference' => '72982eb416f61003e9bb6e91f8b3213600dcf9e9', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/event-dispatcher', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/event-dispatcher-contracts' => array('pretty_version' => 'v2.5.4', 'version' => '2.5.4.0', 'reference' => 'e0fe3d79b516eb75126ac6fa4cbf19b79b08c99f', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/event-dispatcher-contracts', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/event-dispatcher-implementation' => array('dev_requirement' => \false, 'provided' => array(0 => '2.0')), 'symfony/finder' => array('pretty_version' => 'v5.4.45', 'version' => '5.4.45.0', 'reference' => '63741784cd7b9967975eec610b256eed3ede022b', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/finder', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/http-foundation' => array('pretty_version' => 'v5.4.48', 'version' => '5.4.48.0', 'reference' => '3f38b8af283b830e1363acd79e5bc3412d055341', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/http-foundation', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/http-kernel' => array('pretty_version' => 'v5.4.48', 'version' => '5.4.48.0', 'reference' => 'c2dbfc92b851404567160d1ecf3fb7d9b7bde9b0', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/http-kernel', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/mime' => array('pretty_version' => 'v5.4.45', 'version' => '5.4.45.0', 'reference' => '8c1b9b3e5b52981551fc6044539af1d974e39064', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/mime', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/polyfill-ctype' => array('pretty_version' => 'v1.31.0', 'version' => '1.31.0.0', 'reference' => 'a3cc8b044a6ea513310cbd48ef7333b384945638', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/polyfill-ctype', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/polyfill-intl-grapheme' => array('pretty_version' => 'v1.31.0', 'version' => '1.31.0.0', 'reference' => 'b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/polyfill-intl-grapheme', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/polyfill-intl-idn' => array('pretty_version' => 'v1.31.0', 'version' => '1.31.0.0', 'reference' => 'c36586dcf89a12315939e00ec9b4474adcb1d773', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/polyfill-intl-idn', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/polyfill-intl-normalizer' => array('pretty_version' => 'v1.31.0', 'version' => '1.31.0.0', 'reference' => '3833d7255cc303546435cb650316bff708a1c75c', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/polyfill-intl-normalizer', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/polyfill-mbstring' => array('pretty_version' => 'v1.31.0', 'version' => '1.31.0.0', 'reference' => '85181ba99b2345b0ef10ce42ecac37612d9fd341', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/polyfill-mbstring', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/polyfill-php73' => array('pretty_version' => 'v1.31.0', 'version' => '1.31.0.0', 'reference' => '0f68c03565dcaaf25a890667542e8bd75fe7e5bb', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/polyfill-php73', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/polyfill-php80' => array('pretty_version' => 'v1.31.0', 'version' => '1.31.0.0', 'reference' => '60328e362d4c2c802a54fcbf04f9d3fb892b4cf8', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/polyfill-php80', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/polyfill-php81' => array('pretty_version' => 'v1.31.0', 'version' => '1.31.0.0', 'reference' => '4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/polyfill-php81', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/process' => array('pretty_version' => 'v5.4.47', 'version' => '5.4.47.0', 'reference' => '5d1662fb32ebc94f17ddb8d635454a776066733d', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/process', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/routing' => array('pretty_version' => 'v5.4.48', 'version' => '5.4.48.0', 'reference' => 'dd08c19879a9b37ff14fd30dcbdf99a4cf045db1', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/routing', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/service-contracts' => array('pretty_version' => 'v2.5.4', 'version' => '2.5.4.0', 'reference' => 'f37b419f7aea2e9abf10abd261832cace12e3300', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/service-contracts', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/string' => array('pretty_version' => 'v5.4.47', 'version' => '5.4.47.0', 'reference' => '136ca7d72f72b599f2631aca474a4f8e26719799', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/string', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/translation' => array('pretty_version' => 'v5.4.45', 'version' => '5.4.45.0', 'reference' => '98f26acc99341ca4bab345fb14d7b1d7cb825bed', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/translation', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/translation-contracts' => array('pretty_version' => 'v2.5.4', 'version' => '2.5.4.0', 'reference' => '450d4172653f38818657022252f9d81be89ee9a8', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/translation-contracts', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/translation-implementation' => array('dev_requirement' => \false, 'provided' => array(0 => '2.3')), 'symfony/var-dumper' => array('pretty_version' => 'v5.4.48', 'version' => '5.4.48.0', 'reference' => '42f18f170aa86d612c3559cfb3bd11a375df32c8', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/var-dumper', 'aliases' => array(), 'dev_requirement' => \false), 'vlucas/phpdotenv' => array('pretty_version' => 'v5.6.1', 'version' => '5.6.1.0', 'reference' => 'a59a13791077fe3d44f90e7133eb68e7d22eaff2', 'type' => 'library', 'install_path' => __DIR__ . '/../vlucas/phpdotenv', 'aliases' => array(), 'dev_requirement' => \false), 'voku/portable-ascii' => array('pretty_version' => '1.6.1', 'version' => '1.6.1.0', 'reference' => '87337c91b9dfacee02452244ee14ab3c43bc485a', 'type' => 'library', 'install_path' => __DIR__ . '/../voku/portable-ascii', 'aliases' => array(), 'dev_requirement' => \false), 'webmozart/assert' => array('pretty_version' => '1.11.0', 'version' => '1.11.0.0', 'reference' => '11cb2199493b2f8a3b53e7f19068fc6aac760991', 'type' => 'library', 'install_path' => __DIR__ . '/../webmozart/assert', 'aliases' => array(), 'dev_requirement' => \false)));
     5return array('root' => array('name' => 'modular/connector', 'pretty_version' => 'dev-master', 'version' => 'dev-master', 'reference' => 'a64a94174ef1494d30a79403ce2c43dad3dc0bf3', 'type' => 'wordpres-plugin', 'install_path' => __DIR__ . '/../../', 'aliases' => array(), 'dev' => \true), 'versions' => array('ares/framework' => array('pretty_version' => '3.5.1', 'version' => '3.5.1.0', 'reference' => '6d981e29b8fb651da89e73c2e60745a9fad62179', 'type' => 'library', 'install_path' => __DIR__ . '/../ares/framework', 'aliases' => array(), 'dev_requirement' => \false), 'brick/math' => array('pretty_version' => '0.9.3', 'version' => '0.9.3.0', 'reference' => 'ca57d18f028f84f777b2168cd1911b0dee2343ae', 'type' => 'library', 'install_path' => __DIR__ . '/../brick/math', 'aliases' => array(), 'dev_requirement' => \false), 'carbonphp/carbon-doctrine-types' => array('pretty_version' => '2.1.0', 'version' => '2.1.0.0', 'reference' => '99f76ffa36cce3b70a4a6abce41dba15ca2e84cb', 'type' => 'library', 'install_path' => __DIR__ . '/../carbonphp/carbon-doctrine-types', 'aliases' => array(), 'dev_requirement' => \false), 'doctrine/inflector' => array('pretty_version' => '2.0.10', 'version' => '2.0.10.0', 'reference' => '5817d0659c5b50c9b950feb9af7b9668e2c436bc', 'type' => 'library', 'install_path' => __DIR__ . '/../doctrine/inflector', 'aliases' => array(), 'dev_requirement' => \false), 'dragonmantank/cron-expression' => array('pretty_version' => 'v3.4.0', 'version' => '3.4.0.0', 'reference' => '8c784d071debd117328803d86b2097615b457500', 'type' => 'library', 'install_path' => __DIR__ . '/../dragonmantank/cron-expression', 'aliases' => array(), 'dev_requirement' => \false), 'graham-campbell/result-type' => array('pretty_version' => 'v1.1.3', 'version' => '1.1.3.0', 'reference' => '3ba905c11371512af9d9bdd27d99b782216b6945', 'type' => 'library', 'install_path' => __DIR__ . '/../graham-campbell/result-type', 'aliases' => array(), 'dev_requirement' => \false), 'guzzlehttp/guzzle' => array('pretty_version' => '7.9.3', 'version' => '7.9.3.0', 'reference' => '7b2f29fe81dc4da0ca0ea7d42107a0845946ea77', 'type' => 'library', 'install_path' => __DIR__ . '/../guzzlehttp/guzzle', 'aliases' => array(), 'dev_requirement' => \false), 'guzzlehttp/promises' => array('pretty_version' => '2.2.0', 'version' => '2.2.0.0', 'reference' => '7c69f28996b0a6920945dd20b3857e499d9ca96c', 'type' => 'library', 'install_path' => __DIR__ . '/../guzzlehttp/promises', 'aliases' => array(), 'dev_requirement' => \false), 'guzzlehttp/psr7' => array('pretty_version' => '2.7.1', 'version' => '2.7.1.0', 'reference' => 'c2270caaabe631b3b44c85f99e5a04bbb8060d16', 'type' => 'library', 'install_path' => __DIR__ . '/../guzzlehttp/psr7', 'aliases' => array(), 'dev_requirement' => \false), 'ifsnop/mysqldump-php' => array('pretty_version' => 'v2.12', 'version' => '2.12.0.0', 'reference' => '2d3a43fc0c49f23bf7dee392b0dd1f8c799f89d3', 'type' => 'library', 'install_path' => __DIR__ . '/../ifsnop/mysqldump-php', 'aliases' => array(), 'dev_requirement' => \false), 'illuminate/bus' => array('pretty_version' => 'v8.83.27', 'version' => '8.83.27.0', 'reference' => 'd2a8ae4bfd881086e55455e470776358eab27eae', 'type' => 'library', 'install_path' => __DIR__ . '/../illuminate/bus', 'aliases' => array(), 'dev_requirement' => \false), 'illuminate/cache' => array('pretty_version' => 'v8.83.27', 'version' => '8.83.27.0', 'reference' => '7ae5b3661413dad7264b5c69037190d766bae50f', 'type' => 'library', 'install_path' => __DIR__ . '/../illuminate/cache', 'aliases' => array(), 'dev_requirement' => \false), 'illuminate/collections' => array('pretty_version' => 'v8.83.27', 'version' => '8.83.27.0', 'reference' => '705a4e1ef93cd492c45b9b3e7911cccc990a07f4', 'type' => 'library', 'install_path' => __DIR__ . '/../illuminate/collections', 'aliases' => array(), 'dev_requirement' => \false), 'illuminate/config' => array('pretty_version' => 'v8.83.27', 'version' => '8.83.27.0', 'reference' => 'feac56ab7a5c70cf2dc60dffe4323eb9851f51a8', 'type' => 'library', 'install_path' => __DIR__ . '/../illuminate/config', 'aliases' => array(), 'dev_requirement' => \false), 'illuminate/console' => array('pretty_version' => 'v8.83.27', 'version' => '8.83.27.0', 'reference' => '4aaa93223eb3bd8119157c95f58c022967826035', 'type' => 'library', 'install_path' => __DIR__ . '/../illuminate/console', 'aliases' => array(), 'dev_requirement' => \false), 'illuminate/container' => array('pretty_version' => 'v8.83.27', 'version' => '8.83.27.0', 'reference' => '14062628d05f75047c5a1360b9350028427d568e', 'type' => 'library', 'install_path' => __DIR__ . '/../illuminate/container', 'aliases' => array(), 'dev_requirement' => \false), 'illuminate/contracts' => array('pretty_version' => 'v8.83.27', 'version' => '8.83.27.0', 'reference' => '5e0fd287a1b22a6b346a9f7cd484d8cf0234585d', 'type' => 'library', 'install_path' => __DIR__ . '/../illuminate/contracts', 'aliases' => array(), 'dev_requirement' => \false), 'illuminate/database' => array('pretty_version' => 'v8.83.27', 'version' => '8.83.27.0', 'reference' => '1a5b0e4e6913415464fa2aab554a38b9e6fa44b1', 'type' => 'library', 'install_path' => __DIR__ . '/../illuminate/database', 'aliases' => array(), 'dev_requirement' => \false), 'illuminate/events' => array('pretty_version' => 'v8.83.27', 'version' => '8.83.27.0', 'reference' => 'b7f06cafb6c09581617f2ca05d69e9b159e5a35d', 'type' => 'library', 'install_path' => __DIR__ . '/../illuminate/events', 'aliases' => array(), 'dev_requirement' => \false), 'illuminate/filesystem' => array('pretty_version' => 'v8.83.27', 'version' => '8.83.27.0', 'reference' => '73db3e9a233ed587ba54f52ab8580f3c7bc872b2', 'type' => 'library', 'install_path' => __DIR__ . '/../illuminate/filesystem', 'aliases' => array(), 'dev_requirement' => \false), 'illuminate/http' => array('pretty_version' => 'v8.83.27', 'version' => '8.83.27.0', 'reference' => '38b8b0c8ca5d5231df9c515f3a3e7aac5f0da9f4', 'type' => 'library', 'install_path' => __DIR__ . '/../illuminate/http', 'aliases' => array(), 'dev_requirement' => \false), 'illuminate/log' => array('pretty_version' => 'v8.83.27', 'version' => '8.83.27.0', 'reference' => '1dbdc6aca24d1d2b5903f865bb206039d4b800b2', 'type' => 'library', 'install_path' => __DIR__ . '/../illuminate/log', 'aliases' => array(), 'dev_requirement' => \false), 'illuminate/macroable' => array('pretty_version' => 'v8.83.27', 'version' => '8.83.27.0', 'reference' => 'aed81891a6e046fdee72edd497f822190f61c162', 'type' => 'library', 'install_path' => __DIR__ . '/../illuminate/macroable', 'aliases' => array(), 'dev_requirement' => \false), 'illuminate/pipeline' => array('pretty_version' => 'v8.83.27', 'version' => '8.83.27.0', 'reference' => '23aeff5b26ae4aee3f370835c76bd0f4e93f71d2', 'type' => 'library', 'install_path' => __DIR__ . '/../illuminate/pipeline', 'aliases' => array(), 'dev_requirement' => \false), 'illuminate/queue' => array('pretty_version' => 'v8.83.27', 'version' => '8.83.27.0', 'reference' => '0023daabf67743f7a2bd8328ca2b5537d93e4ae7', 'type' => 'library', 'install_path' => __DIR__ . '/../illuminate/queue', 'aliases' => array(), 'dev_requirement' => \false), 'illuminate/routing' => array('pretty_version' => 'v8.83.27', 'version' => '8.83.27.0', 'reference' => 'bcef07a281ee4a616eef66b22d46fff7050e9b29', 'type' => 'library', 'install_path' => __DIR__ . '/../illuminate/routing', 'aliases' => array(), 'dev_requirement' => \false), 'illuminate/session' => array('pretty_version' => 'v8.83.27', 'version' => '8.83.27.0', 'reference' => '9c9988d7229d888c098eebbbb9fcb8c68580411c', 'type' => 'library', 'install_path' => __DIR__ . '/../illuminate/session', 'aliases' => array(), 'dev_requirement' => \false), 'illuminate/support' => array('pretty_version' => 'v8.83.27', 'version' => '8.83.27.0', 'reference' => '1c79242468d3bbd9a0f7477df34f9647dde2a09b', 'type' => 'library', 'install_path' => __DIR__ . '/../illuminate/support', 'aliases' => array(), 'dev_requirement' => \false), 'illuminate/view' => array('pretty_version' => 'v8.83.27', 'version' => '8.83.27.0', 'reference' => '5e73eef48d9242532f81fadc14c816a01bfb1388', 'type' => 'library', 'install_path' => __DIR__ . '/../illuminate/view', 'aliases' => array(), 'dev_requirement' => \false), 'laravel/serializable-closure' => array('pretty_version' => 'v1.3.7', 'version' => '1.3.7.0', 'reference' => '4f48ade902b94323ca3be7646db16209ec76be3d', 'type' => 'library', 'install_path' => __DIR__ . '/../laravel/serializable-closure', 'aliases' => array(), 'dev_requirement' => \false), 'league/flysystem' => array('pretty_version' => '1.1.10', 'version' => '1.1.10.0', 'reference' => '3239285c825c152bcc315fe0e87d6b55f5972ed1', 'type' => 'library', 'install_path' => __DIR__ . '/../league/flysystem', 'aliases' => array(), 'dev_requirement' => \false), 'league/mime-type-detection' => array('pretty_version' => '1.16.0', 'version' => '1.16.0.0', 'reference' => '2d6702ff215bf922936ccc1ad31007edc76451b9', 'type' => 'library', 'install_path' => __DIR__ . '/../league/mime-type-detection', 'aliases' => array(), 'dev_requirement' => \false), 'modular/connector' => array('pretty_version' => 'dev-master', 'version' => 'dev-master', 'reference' => 'a64a94174ef1494d30a79403ce2c43dad3dc0bf3', 'type' => 'wordpres-plugin', 'install_path' => __DIR__ . '/../../', 'aliases' => array(), 'dev_requirement' => \false), 'monolog/monolog' => array('pretty_version' => '2.10.0', 'version' => '2.10.0.0', 'reference' => '5cf826f2991858b54d5c3809bee745560a1042a7', 'type' => 'library', 'install_path' => __DIR__ . '/../monolog/monolog', 'aliases' => array(), 'dev_requirement' => \false), 'mtdowling/cron-expression' => array('dev_requirement' => \false, 'replaced' => array(0 => '^1.0')), 'nesbot/carbon' => array('pretty_version' => '2.73.0', 'version' => '2.73.0.0', 'reference' => '9228ce90e1035ff2f0db84b40ec2e023ed802075', 'type' => 'library', 'install_path' => __DIR__ . '/../nesbot/carbon', 'aliases' => array(), 'dev_requirement' => \false), 'opis/closure' => array('pretty_version' => '3.6.3', 'version' => '3.6.3.0', 'reference' => '3d81e4309d2a927abbe66df935f4bb60082805ad', 'type' => 'library', 'install_path' => __DIR__ . '/../opis/closure', 'aliases' => array(), 'dev_requirement' => \false), 'phpoption/phpoption' => array('pretty_version' => '1.9.3', 'version' => '1.9.3.0', 'reference' => 'e3fac8b24f56113f7cb96af14958c0dd16330f54', 'type' => 'library', 'install_path' => __DIR__ . '/../phpoption/phpoption', 'aliases' => array(), 'dev_requirement' => \false), 'psr/clock' => array('pretty_version' => '1.0.0', 'version' => '1.0.0.0', 'reference' => 'e41a24703d4560fd0acb709162f73b8adfc3aa0d', 'type' => 'library', 'install_path' => __DIR__ . '/../psr/clock', 'aliases' => array(), 'dev_requirement' => \false), 'psr/clock-implementation' => array('dev_requirement' => \false, 'provided' => array(0 => '1.0')), 'psr/container' => array('pretty_version' => '1.1.2', 'version' => '1.1.2.0', 'reference' => '513e0666f7216c7459170d56df27dfcefe1689ea', 'type' => 'library', 'install_path' => __DIR__ . '/../psr/container', 'aliases' => array(), 'dev_requirement' => \false), 'psr/container-implementation' => array('dev_requirement' => \false, 'provided' => array(0 => '1.0')), 'psr/event-dispatcher' => array('pretty_version' => '1.0.0', 'version' => '1.0.0.0', 'reference' => 'dbefd12671e8a14ec7f180cab83036ed26714bb0', 'type' => 'library', 'install_path' => __DIR__ . '/../psr/event-dispatcher', 'aliases' => array(), 'dev_requirement' => \false), 'psr/event-dispatcher-implementation' => array('dev_requirement' => \false, 'provided' => array(0 => '1.0')), 'psr/http-client' => array('pretty_version' => '1.0.3', 'version' => '1.0.3.0', 'reference' => 'bb5906edc1c324c9a05aa0873d40117941e5fa90', 'type' => 'library', 'install_path' => __DIR__ . '/../psr/http-client', 'aliases' => array(), 'dev_requirement' => \false), 'psr/http-client-implementation' => array('dev_requirement' => \false, 'provided' => array(0 => '1.0')), 'psr/http-factory' => array('pretty_version' => '1.1.0', 'version' => '1.1.0.0', 'reference' => '2b4765fddfe3b508ac62f829e852b1501d3f6e8a', 'type' => 'library', 'install_path' => __DIR__ . '/../psr/http-factory', 'aliases' => array(), 'dev_requirement' => \false), 'psr/http-factory-implementation' => array('dev_requirement' => \false, 'provided' => array(0 => '1.0')), 'psr/http-message' => array('pretty_version' => '2.0', 'version' => '2.0.0.0', 'reference' => '402d35bcb92c70c026d1a6a9883f06b2ead23d71', 'type' => 'library', 'install_path' => __DIR__ . '/../psr/http-message', 'aliases' => array(), 'dev_requirement' => \false), 'psr/http-message-implementation' => array('dev_requirement' => \false, 'provided' => array(0 => '1.0')), 'psr/log' => array('pretty_version' => '1.1.4', 'version' => '1.1.4.0', 'reference' => 'd49695b909c3b7628b6289db5479a1c204601f11', 'type' => 'library', 'install_path' => __DIR__ . '/../psr/log', 'aliases' => array(), 'dev_requirement' => \false), 'psr/log-implementation' => array('dev_requirement' => \false, 'provided' => array(0 => '1.0|2.0', 1 => '1.0.0 || 2.0.0 || 3.0.0')), 'psr/simple-cache' => array('pretty_version' => '1.0.1', 'version' => '1.0.1.0', 'reference' => '408d5eafb83c57f6365a3ca330ff23aa4a5fa39b', 'type' => 'library', 'install_path' => __DIR__ . '/../psr/simple-cache', 'aliases' => array(), 'dev_requirement' => \false), 'psr/simple-cache-implementation' => array('dev_requirement' => \false, 'provided' => array(0 => '1.0')), 'ralouphie/getallheaders' => array('pretty_version' => '3.0.3', 'version' => '3.0.3.0', 'reference' => '120b605dfeb996808c31b6477290a714d356e822', 'type' => 'library', 'install_path' => __DIR__ . '/../ralouphie/getallheaders', 'aliases' => array(), 'dev_requirement' => \false), 'ramsey/collection' => array('pretty_version' => '1.3.0', 'version' => '1.3.0.0', 'reference' => 'ad7475d1c9e70b190ecffc58f2d989416af339b4', 'type' => 'library', 'install_path' => __DIR__ . '/../ramsey/collection', 'aliases' => array(), 'dev_requirement' => \false), 'ramsey/uuid' => array('pretty_version' => '4.2.3', 'version' => '4.2.3.0', 'reference' => 'fc9bb7fb5388691fd7373cd44dcb4d63bbcf24df', 'type' => 'library', 'install_path' => __DIR__ . '/../ramsey/uuid', 'aliases' => array(), 'dev_requirement' => \false), 'rhumsaa/uuid' => array('dev_requirement' => \false, 'replaced' => array(0 => '4.2.3')), 'sniccowp/php-scoper-wordpress-excludes' => array('pretty_version' => '6.7.2', 'version' => '6.7.2.0', 'reference' => '1e65b207d6f4753904774430ccfc06cb6bfa486e', 'type' => 'library', 'install_path' => __DIR__ . '/../sniccowp/php-scoper-wordpress-excludes', 'aliases' => array(), 'dev_requirement' => \true), 'spatie/db-dumper' => array('pretty_version' => '2.21.1', 'version' => '2.21.1.0', 'reference' => '05e5955fb882008a8947c5a45146d86cfafa10d1', 'type' => 'library', 'install_path' => __DIR__ . '/../spatie/db-dumper', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/console' => array('pretty_version' => 'v5.4.47', 'version' => '5.4.47.0', 'reference' => 'c4ba980ca61a9eb18ee6bcc73f28e475852bb1ed', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/console', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/deprecation-contracts' => array('pretty_version' => 'v2.5.4', 'version' => '2.5.4.0', 'reference' => '605389f2a7e5625f273b53960dc46aeaf9c62918', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/deprecation-contracts', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/error-handler' => array('pretty_version' => 'v5.4.46', 'version' => '5.4.46.0', 'reference' => 'd19ede7a2cafb386be9486c580649d0f9e3d0363', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/error-handler', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/event-dispatcher' => array('pretty_version' => 'v5.4.45', 'version' => '5.4.45.0', 'reference' => '72982eb416f61003e9bb6e91f8b3213600dcf9e9', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/event-dispatcher', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/event-dispatcher-contracts' => array('pretty_version' => 'v2.5.4', 'version' => '2.5.4.0', 'reference' => 'e0fe3d79b516eb75126ac6fa4cbf19b79b08c99f', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/event-dispatcher-contracts', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/event-dispatcher-implementation' => array('dev_requirement' => \false, 'provided' => array(0 => '2.0')), 'symfony/finder' => array('pretty_version' => 'v5.4.45', 'version' => '5.4.45.0', 'reference' => '63741784cd7b9967975eec610b256eed3ede022b', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/finder', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/http-foundation' => array('pretty_version' => 'v5.4.48', 'version' => '5.4.48.0', 'reference' => '3f38b8af283b830e1363acd79e5bc3412d055341', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/http-foundation', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/http-kernel' => array('pretty_version' => 'v5.4.48', 'version' => '5.4.48.0', 'reference' => 'c2dbfc92b851404567160d1ecf3fb7d9b7bde9b0', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/http-kernel', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/mime' => array('pretty_version' => 'v5.4.45', 'version' => '5.4.45.0', 'reference' => '8c1b9b3e5b52981551fc6044539af1d974e39064', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/mime', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/polyfill-ctype' => array('pretty_version' => 'v1.31.0', 'version' => '1.31.0.0', 'reference' => 'a3cc8b044a6ea513310cbd48ef7333b384945638', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/polyfill-ctype', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/polyfill-intl-grapheme' => array('pretty_version' => 'v1.31.0', 'version' => '1.31.0.0', 'reference' => 'b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/polyfill-intl-grapheme', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/polyfill-intl-idn' => array('pretty_version' => 'v1.31.0', 'version' => '1.31.0.0', 'reference' => 'c36586dcf89a12315939e00ec9b4474adcb1d773', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/polyfill-intl-idn', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/polyfill-intl-normalizer' => array('pretty_version' => 'v1.31.0', 'version' => '1.31.0.0', 'reference' => '3833d7255cc303546435cb650316bff708a1c75c', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/polyfill-intl-normalizer', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/polyfill-mbstring' => array('pretty_version' => 'v1.31.0', 'version' => '1.31.0.0', 'reference' => '85181ba99b2345b0ef10ce42ecac37612d9fd341', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/polyfill-mbstring', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/polyfill-php73' => array('pretty_version' => 'v1.31.0', 'version' => '1.31.0.0', 'reference' => '0f68c03565dcaaf25a890667542e8bd75fe7e5bb', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/polyfill-php73', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/polyfill-php80' => array('pretty_version' => 'v1.31.0', 'version' => '1.31.0.0', 'reference' => '60328e362d4c2c802a54fcbf04f9d3fb892b4cf8', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/polyfill-php80', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/polyfill-php81' => array('pretty_version' => 'v1.31.0', 'version' => '1.31.0.0', 'reference' => '4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/polyfill-php81', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/process' => array('pretty_version' => 'v5.4.47', 'version' => '5.4.47.0', 'reference' => '5d1662fb32ebc94f17ddb8d635454a776066733d', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/process', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/routing' => array('pretty_version' => 'v5.4.48', 'version' => '5.4.48.0', 'reference' => 'dd08c19879a9b37ff14fd30dcbdf99a4cf045db1', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/routing', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/service-contracts' => array('pretty_version' => 'v2.5.4', 'version' => '2.5.4.0', 'reference' => 'f37b419f7aea2e9abf10abd261832cace12e3300', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/service-contracts', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/string' => array('pretty_version' => 'v5.4.47', 'version' => '5.4.47.0', 'reference' => '136ca7d72f72b599f2631aca474a4f8e26719799', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/string', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/translation' => array('pretty_version' => 'v5.4.45', 'version' => '5.4.45.0', 'reference' => '98f26acc99341ca4bab345fb14d7b1d7cb825bed', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/translation', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/translation-contracts' => array('pretty_version' => 'v2.5.4', 'version' => '2.5.4.0', 'reference' => '450d4172653f38818657022252f9d81be89ee9a8', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/translation-contracts', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/translation-implementation' => array('dev_requirement' => \false, 'provided' => array(0 => '2.3')), 'symfony/var-dumper' => array('pretty_version' => 'v5.4.48', 'version' => '5.4.48.0', 'reference' => '42f18f170aa86d612c3559cfb3bd11a375df32c8', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/var-dumper', 'aliases' => array(), 'dev_requirement' => \false), 'vlucas/phpdotenv' => array('pretty_version' => 'v5.6.1', 'version' => '5.6.1.0', 'reference' => 'a59a13791077fe3d44f90e7133eb68e7d22eaff2', 'type' => 'library', 'install_path' => __DIR__ . '/../vlucas/phpdotenv', 'aliases' => array(), 'dev_requirement' => \false), 'voku/portable-ascii' => array('pretty_version' => '1.6.1', 'version' => '1.6.1.0', 'reference' => '87337c91b9dfacee02452244ee14ab3c43bc485a', 'type' => 'library', 'install_path' => __DIR__ . '/../voku/portable-ascii', 'aliases' => array(), 'dev_requirement' => \false), 'webmozart/assert' => array('pretty_version' => '1.11.0', 'version' => '1.11.0.0', 'reference' => '11cb2199493b2f8a3b53e7f19068fc6aac760991', 'type' => 'library', 'install_path' => __DIR__ . '/../webmozart/assert', 'aliases' => array(), 'dev_requirement' => \false)));
  • modular-connector/trunk/vendor/scoper-autoload.php

    r3269968 r3272667  
    1515    $GLOBALS['__composer_autoload_files'] = \array_merge(
    1616        $existingComposerAutoloadFiles,
    17         \array_fill_keys(['d124e3733613111a84b0acf896684d9b', '9eaa6b0f3f04e58e17ae5ecb754ea313', 'f55c14fbb13bfcd10625344d25dcb95e', 'acbe0d033c55cd0a032b415e08d14f4c', '96578ee85f03ce6fff60b50ff33620b7', 'b48cbeb76a71e226a23fa64ac2b94dc6', '2c209ae1618575d4ad3b54a5a8637caa', '36dfd6ed9dd74e8062aa61f09caf8554', 'e48eb9b0edf6d5c4ed4a58c022517365', '5928a00fa978807cf85d90ec3f4b0147', 'f46f87ba72ee740c54d11df6bdc11a04', '48f4d12c94b6e29269234574c5ea3c49', '9c7f0c9298b37bc40d60aa6f296eb4d4', '28099935d0ea91a1b5e09408e356eacb', '99b27172349c9ec3abea78f62e2938bb', '9250916e8af80e0d1bb31401fd2e15a7', '674e404d8857dd99db32bc218bb5643a', 'b178954ba4692b8876c08a4a97e6ce23', 'c5e5dfa7f2077b89dbc43523332b50aa', '83cc8b953df9a6f7e51f674d84d57730', 'a875add15ea9a7df1a6c0c26cc9e4590', '1cbb53d50065225a14c2360be2ccbf6f', '54b9ab13bc86d8251a04a939888e357e', 'a89966141ddd51b9b7e868bc3b2f9bb0', '7edcabe1b67fbb38f4972a722bbbb429', 'f49032536fdd06afd9df7191c3f21453', '51421aa3e5e8003b70a289762d146a2a', '7bdb062931f6e7102434c3ad28423eb6', '18e965175c6bcd96deba6bc791a44373', '7b0b5d7b98f96ad751222ae5cc98cfcb', 'd1fb64fd99fc22e28e29a95cc0ea533a'], true)
     17        \array_fill_keys(['9cff181ce43de8202fb64ba83a10e1a4', '9eaa6b0f3f04e58e17ae5ecb754ea313', 'b418665abe0c017a90b4cc24cda75229', 'acbe0d033c55cd0a032b415e08d14f4c', '06fbbffe5e8e79f8fc80aee90f91894e', 'b48cbeb76a71e226a23fa64ac2b94dc6', '72ea3d28770cf801d34cba7e917e37c4', '36dfd6ed9dd74e8062aa61f09caf8554', '7fff9a4bcb11096ca9105e29812c27a9', '5928a00fa978807cf85d90ec3f4b0147', 'a2f471dbf51d67e89ed617246a64c2c7', '406db8ad88b485bc86b89206d09d0a0e', 'e8849273884a25a6a0dc102622f331fa', '28099935d0ea91a1b5e09408e356eacb', '99b27172349c9ec3abea78f62e2938bb', '9250916e8af80e0d1bb31401fd2e15a7', '674e404d8857dd99db32bc218bb5643a', 'b178954ba4692b8876c08a4a97e6ce23', 'c5e5dfa7f2077b89dbc43523332b50aa', '83cc8b953df9a6f7e51f674d84d57730', 'a875add15ea9a7df1a6c0c26cc9e4590', '1cbb53d50065225a14c2360be2ccbf6f', '54b9ab13bc86d8251a04a939888e357e', 'a89966141ddd51b9b7e868bc3b2f9bb0', '7edcabe1b67fbb38f4972a722bbbb429', 'f49032536fdd06afd9df7191c3f21453', '51421aa3e5e8003b70a289762d146a2a', '7bdb062931f6e7102434c3ad28423eb6', '18e965175c6bcd96deba6bc791a44373', '7b0b5d7b98f96ad751222ae5cc98cfcb', 'd1fb64fd99fc22e28e29a95cc0ea533a'], true)
    1818    );
    1919
Note: See TracChangeset for help on using the changeset viewer.