Plugin Directory

Changeset 3318767


Ignore:
Timestamp:
06/27/2025 12:16:48 PM (6 months ago)
Author:
modulards
Message:

v2.1.1

Location:
modular-connector/trunk
Files:
2 added
19 edited

Legend:

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

    r3316585 r3318767  
    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: 2.1.0
     6 * Version: 2.1.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', '2.1.0');
     23define('MODULAR_CONNECTOR_VERSION', '2.1.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

    r3316585 r3318767  
    44Requires at least: 5.6
    55Tested up to: 6.8
    6 Stable tag: 2.1.0
     6Stable tag: 2.1.1
    77Requires PHP: 7.4
    88License: GPLv3
     
    127127
    128128== Changelog ==
     129= v2.1.1 =
     130Release date: 2025-06-27
     131
     132* Allow connection of websites under HTTP Basic Authentication
     133* Option to disable custom loopback requests
     134* Improved loopback requests
     135
    129136= v2.1.0 =
    130137Release date: 2025-06-24
    131138
    132 * Clean cache after any manager action
    133 * FIXED: Improved loopback requests
     139* Clear cache after any manager action
     140* Improved loopback requests
    134141* FIXED: Cleaning up orphaned jobs in database
    135142
  • modular-connector/trunk/src/app/Http/Controllers/ServerController.php

    r3316585 r3318767  
    88use Modular\Connector\Jobs\Health\ManagerHealthDataJob;
    99use Modular\Connector\Optimizer\Jobs\ManagerOptimizationInformationUpdateJob;
    10 use Modular\ConnectorDependencies\Ares\Framework\Foundation\Auth\JWT;
    1110use Modular\ConnectorDependencies\Illuminate\Http\Request;
    1211use Modular\ConnectorDependencies\Illuminate\Routing\Controller;
     
    106105        $action = app()->getScheduleHook();
    107106
    108         if ($request->hasHeader('Authentication')) {
    109             $authHeader = $request->header('Authentication', '');
    110 
    111             if (!JWT::verify($authHeader, $action)) {
    112                 Log::debug('Invalid JWT for schedule hook', [
    113                     'hook' => $action,
    114                     'header' => $authHeader,
    115                 ]);
    116 
    117                 return Response::json(['error' => sprintf('Invalid JWT for %s', $action)], 403);
    118             }
    119         } else {
    120             $isValid = check_ajax_referer($action, 'nonce', false);
    121 
    122             if (!$isValid) {
    123                 Log::debug('Invalid nonce for schedule hook', [
    124                     'hook' => $action,
    125                     'nonce' => $request->input('nonce'),
    126                 ]);
    127 
    128                 return Response::json(['error' => sprintf('Invalid nonce for %s', $action)], 403);
    129             }
    130         }
    131 
    132107        dispatch(function () use ($action) {
    133108            Log::debug('Running schedule hook', ['hook' => $action]);
  • modular-connector/trunk/src/app/Http/Kernel.php

    r3291455 r3318767  
    88use Modular\ConnectorDependencies\Ares\Framework\Foundation\Http\Kernel as HttpKernel;
    99use Modular\ConnectorDependencies\Ares\Framework\Foundation\Queue\WorkCommand;
     10use Modular\ConnectorDependencies\Illuminate\Support\Facades\Log;
    1011use Modular\ConnectorDependencies\Illuminate\Support\Facades\Queue;
    1112
     
    3940    protected function schedule(Schedule $schedule)
    4041    {
     42        Log::debug('Scheduling commands for Modular Connector');
     43
    4144        $schedule->command(WorkCommand::class, [
    4245            '--connection' => 'wordpress',
  • modular-connector/trunk/src/app/Providers/ModularConnectorServiceProvider.php

    r3316585 r3318767  
    1111use Modular\Connector\Services\ManagerWhiteLabel;
    1212use Modular\Connector\Services\ServiceDatabase;
     13use Modular\ConnectorDependencies\Ares\Framework\Foundation\Auth\JWT;
    1314use Modular\ConnectorDependencies\Illuminate\Support\Facades\Cache;
    1415use Modular\ConnectorDependencies\Illuminate\Support\Facades\Config;
     
    4243    {
    4344        add_filter('plugin_action_links', function ($links = null, $plugin = null) {
    44 
    4545            $isEnabled = WhiteLabel::isEnabled();
    4646
     
    6565
    6666    /**
     67     * Many sites have problems with the WP Cron system, so we need to force the schedule run.
     68     * This method will be called when the application is terminating and will force
     69     * the schedule run by calling an AJAX action.
     70     *
     71     * @return void
     72     */
     73    public function registerForceCallSchedule()
     74    {
     75        $this->app->afterTerminating(function () {
     76            // If the loopback is disabled, we don't need to force the schedule run.
     77            if (!$this->app->make('config')->get('app.loopback')) {
     78                Log::debug('Loopback is disabled, skipping force dispatch schedule run.');
     79
     80                return;
     81            }
     82
     83            $forceDispatch = $this->app->forceDispatchScheduleRun || Cache::driver('array')->get('ares.forceDispatchScheduleRun', false);
     84
     85            $dontForceDispatch = Cache::driver('array')->get('ares.dontDispatchScheduleRun', false);
     86
     87            if (!$forceDispatch || $dontForceDispatch) {
     88                return;
     89            }
     90
     91            $debugSchedule = $this->app->make('config')->get('app.debug_schedule', false);
     92
     93            $hook = $this->app->getScheduleHook();
     94            $url = apply_filters(sprintf('%s_query_url', $hook), site_url('wp-load.php'));
     95
     96            $query = apply_filters(
     97                sprintf('%s_query_args', $hook),
     98                [
     99                    'origin' => 'mo',
     100                    'type' => 'lb',
     101                    'nonce' => wp_create_nonce($hook),
     102                ]
     103            );
     104
     105            $url = add_query_arg($query, $url);
     106
     107            $args = [
     108                'timeout' => 10, // In some websites, the default value of 5 seconds is too short.
     109                'sslverify' => false,
     110                'blocking' => $debugSchedule,
     111                'headers' => [],
     112            ];
     113
     114            try {
     115                $token = JWT::generate($hook);
     116                $args['headers']['Authentication'] = 'Bearer ' . $token;
     117            } catch (\Throwable $e) {
     118                // Silence is golden
     119            }
     120
     121            if (Cache::driver('wordpress')->has('header.authorization')) {
     122                $args['headers']['Authorization'] = Cache::driver('wordpress')->get('header.authorization');
     123            }
     124
     125            $args = apply_filters(sprintf('%s_post_args', $hook), $args);
     126            $response = wp_remote_get(esc_url_raw($url), $args);
     127
     128            if ($debugSchedule) {
     129                $context = [
     130                    'url' => $url,
     131                    'args' => $args,
     132                    'response' => $response,
     133                    'request' => $this->app->make('request')->all(),
     134                ];
     135
     136                $this->app->make('log')
     137                    ->debug('Force dispatch queue', $context);
     138            } else {
     139                unset($response);
     140            }
     141        });
     142    }
     143
     144    /**
    67145     * Register services.
    68146     *
     
    73151        $this->registerFacades();
    74152        $this->registerActionLinks();
     153        $this->registerForceCallSchedule();
    75154    }
    76155
  • modular-connector/trunk/src/app/Providers/RouteServiceProvider.php

    r3316585 r3318767  
    125125        }
    126126
     127        if ($request->hasHeader('authorization')) {
     128            $authorization = $request->header('Authorization');
     129
     130            Cache::driver('wordpress')->forever('header.authorization', $authorization);
     131        } elseif (Cache::driver('wordpress')->has('header.authorization')) {
     132            Cache::driver('wordpress')->forget('header.authorization');
     133        }
     134
    127135        return $route;
    128136    }
  • modular-connector/trunk/src/app/Services/ManagerServer.php

    r3269968 r3318767  
    399399
    400400            'MODULAR_CONNECTOR_ENV' => defined('MODULAR_CONNECTOR_ENV') ? MODULAR_CONNECTOR_ENV : null,
     401            'MODULAR_CONNECTOR_LOOPBACK' => defined('MODULAR_CONNECTOR_LOOPBACK') ? MODULAR_CONNECTOR_LOOPBACK : null,
    401402            'MODULAR_CONNECTOR_DEBUG' => defined('MODULAR_CONNECTOR_DEBUG') ? MODULAR_CONNECTOR_DEBUG : null,
    402403            'MODULAR_CONNECTOR_DEBUG_SCHEDULE' => defined('MODULAR_CONNECTOR_DEBUG_SCHEDULE') ? MODULAR_CONNECTOR_DEBUG_SCHEDULE : null,
  • modular-connector/trunk/src/config/app.php

    r3286865 r3318767  
    4040
    4141    /*
     42     * --------------------------------------------------------------------------
     43     * Loopback Requests
     44     * --------------------------------------------------------------------------
     45     *
     46     * This option determines whether the application should allow loopback
     47     * requests. Loopback requests are used by the application to
     48     * simulate HTTP requests to itself.
     49     */
     50
     51    'loopback' => defined('MODULAR_CONNECTOR_LOOPBACK') ? MODULAR_CONNECTOR_LOOPBACK : true,
     52
     53    /*
    4254    |--------------------------------------------------------------------------
    4355    | Application Timezone
  • modular-connector/trunk/src/routes/api.php

    r3316585 r3318767  
    88use Modular\Connector\Http\Controllers\ServerController;
    99use Modular\Connector\Http\Controllers\WooCommerceController;
     10use Modular\Connector\Http\Middleware\AuthenticateLoopback;
    1011use Modular\ConnectorDependencies\Illuminate\Support\Facades\Route;
    1112
     
    1415
    1516Route::get('/schedule/run', [ServerController::class, 'getLoopback'])
     17    ->middleware(AuthenticateLoopback::class)
    1618    ->name('schedule.run');
    1719
  • modular-connector/trunk/vendor/ares/framework/src/Foundation/Application.php

    r3286865 r3318767  
    2222     */
    2323    public bool $forceDispatchScheduleRun = \false;
     24    /**
     25     * The array of terminating callbacks.
     26     *
     27     * @var callable[]
     28     */
     29    public array $afterTerminatingCallbacks = [];
    2430    /**
    2531     * @return string
     
    5258    }
    5359    /**
     60     * Register a after terminating callback with the application.
     61     *
     62     * @param callable|string $callback
     63     * @return $this
     64     */
     65    public function afterTerminating($callback)
     66    {
     67        $this->afterTerminatingCallbacks[] = $callback;
     68        return $this;
     69    }
     70    /**
    5471     * Terminate the application.
    5572     *
     
    5875    public function terminate()
    5976    {
     77        parent::terminate();
    6078        $index = 0;
    61         while ($index < count($this->terminatingCallbacks)) {
    62             $this->call($this->terminatingCallbacks[$index]);
     79        while ($index < count($this->afterTerminatingCallbacks)) {
     80            $this->call($this->afterTerminatingCallbacks[$index]);
    6381            $index++;
    6482        }
     
    113131        return sprintf('%s %s %s', 'php', ConsoleApplication::artisanBinary(), $string);
    114132    }
     133    /**
     134     * Flush the container of all bindings and resolved instances.
     135     *
     136     * @return void
     137     */
     138    public function flush()
     139    {
     140        parent::flush();
     141        $this->afterTerminatingCallbacks = [];
     142    }
    115143}
  • modular-connector/trunk/vendor/ares/framework/src/Foundation/Http/Kernel.php

    r3316585 r3318767  
    7171        $hook = $this->app->getScheduleHook();
    7272        add_action($hook, function () {
     73            \Modular\ConnectorDependencies\app()->make('log')->debug('Running scheduled tasks with hook...');
    7374            $schedule = \Modular\ConnectorDependencies\app()->make(Schedule::class);
    7475            $dispatcher = \Modular\ConnectorDependencies\app()->make('events');
  • modular-connector/trunk/vendor/ares/framework/src/Foundation/Providers/FoundationServiceProvider.php

    r3316585 r3318767  
    33namespace Modular\ConnectorDependencies\Ares\Framework\Foundation\Providers;
    44
    5 use Modular\ConnectorDependencies\Ares\Framework\Foundation\Auth\JWT;
    65use Modular\ConnectorDependencies\Illuminate\Console\Scheduling\Schedule;
    76use Modular\ConnectorDependencies\Illuminate\Contracts\Http\Kernel;
    8 use Modular\ConnectorDependencies\Illuminate\Support\Facades\Cache;
    97use Modular\ConnectorDependencies\Illuminate\Support\ServiceProvider;
    108class FoundationServiceProvider extends ServiceProvider
     
    1917        parent::register();
    2018        $this->registerConsoleSchedule();
    21         $this->registerForceCallSchedule();
    2219    }
    2320    /**
     
    3229        });
    3330    }
    34     /**
    35      * Many sites have problems with the WP Cron system, so we need to force the schedule run.
    36      * This method will be called when the application is terminating and will force
    37      * the schedule run by calling an AJAX action.
    38      *
    39      * @return void
    40      */
    41     public function registerForceCallSchedule()
    42     {
    43         $this->app->terminating(function () {
    44             $forceDispatch = $this->app->forceDispatchScheduleRun || Cache::driver('array')->get('ares.forceDispatchScheduleRun', \false);
    45             $dontForceDispatch = Cache::driver('array')->get('ares.dontDispatchScheduleRun', \false);
    46             if (!$forceDispatch || $dontForceDispatch) {
    47                 return;
    48             }
    49             $debugSchedule = $this->app->make('config')->get('app.debug_schedule', \false);
    50             $hook = $this->app->getScheduleHook();
    51             $url = apply_filters(sprintf('%s_query_url', $hook), site_url('wp-load.php'));
    52             $query = apply_filters(sprintf('%s_query_args', $hook), ['origin' => 'mo', 'type' => 'lb', 'nonce' => wp_create_nonce($hook)]);
    53             $url = add_query_arg($query, $url);
    54             $args = [
    55                 'timeout' => 10,
    56                 // In some websites, the default value of 5 seconds is too short.
    57                 'sslverify' => \false,
    58                 'blocking' => $debugSchedule,
    59             ];
    60             try {
    61                 $token = JWT::generate($hook);
    62                 $args['headers'] = ['Authentication' => 'Bearer ' . $token];
    63             } catch (\Throwable $e) {
    64                 // Silence is golden
    65             }
    66             $args = apply_filters(sprintf('%s_post_args', $hook), $args);
    67             $response = wp_remote_get(esc_url_raw($url), $args);
    68             if ($debugSchedule) {
    69                 $context = ['url' => $url, 'args' => $args, 'response' => $response, 'request' => $this->app->make('request')->all()];
    70                 $this->app->make('log')->debug('Force dispatch queue', $context);
    71             } else {
    72                 unset($response);
    73             }
    74         });
    75     }
    7631}
  • modular-connector/trunk/vendor/autoload.php

    r3316585 r3318767  
    2020require_once __DIR__ . '/composer/autoload_real.php';
    2121
    22 return ComposerAutoloaderInit3f089fcf4d3c64c6ae12d32c25327b4a::getLoader();
     22return ComposerAutoloaderInitc0caee64b6f350780a2215818537da6e::getLoader();
  • modular-connector/trunk/vendor/composer/autoload_files.php

    r3316585 r3318767  
    77
    88return array(
    9     '2a7ae82a0fa055d0c359db0567f8045b' => $vendorDir . '/symfony/polyfill-php80/bootstrap.php',
    10     '2bd03b7320d3d954b4a6106b944dedcd' => $vendorDir . '/symfony/polyfill-mbstring/bootstrap.php',
    11     '8ad58f98ab3728e912b1aa646bcd6f5d' => $vendorDir . '/symfony/deprecation-contracts/function.php',
    12     '05b6843b0f719280f2b7ca96bf073bce' => $vendorDir . '/illuminate/collections/helpers.php',
    13     '0ac09c85f1386b383e2d770eddc4a8ba' => $vendorDir . '/symfony/translation/Resources/functions.php',
    14     'f476c0f9d269513aeb59fe39926292f2' => $vendorDir . '/illuminate/support/helpers.php',
    15     '4ca979599649fb802a3460ef76a5868c' => $vendorDir . '/symfony/polyfill-ctype/bootstrap.php',
    16     'a16160c5ae5bfcf58020972907145891' => $vendorDir . '/symfony/polyfill-php73/bootstrap.php',
    17     '803cf3746f46f25833f45ab2bec4de03' => $vendorDir . '/symfony/polyfill-intl-normalizer/bootstrap.php',
    18     '78c4d8dc2c65d79cf80e9f4b509696a4' => $vendorDir . '/symfony/var-dumper/Resources/functions/dump.php',
    19     '5ea2b0ebb02fc8e7fae2fbae0244fa04' => $vendorDir . '/symfony/polyfill-intl-grapheme/bootstrap.php',
    20     '172e7c58c3b184b7c154dad6866932cb' => $vendorDir . '/symfony/string/Resources/functions.php',
    21     '83ab369dc6a854aa26fbf1237e38cbed' => $vendorDir . '/symfony/polyfill-intl-idn/bootstrap.php',
    22     '6cedf4cf4c1f6c2a22ef8862997a86d1' => $vendorDir . '/symfony/polyfill-php81/bootstrap.php',
    23     'a871684b1e03bc971f75eb85d9754541' => $vendorDir . '/illuminate/events/functions.php',
    24     'aeedc8cb7ffe72a4d8cc74f4574b7622' => $vendorDir . '/opis/closure/functions.php',
    25     'c4bb2579b93aaba645ce203d4ad6559d' => $vendorDir . '/ralouphie/getallheaders/src/getallheaders.php',
    26     '4d26d21f6bf69d36a06a9c49d9af439e' => $vendorDir . '/ramsey/uuid/src/functions.php',
    27     '40954e2053dad20852460f0240b2b4fb' => $vendorDir . '/ares/framework/src/helpers.php',
    28     'd4b489ead93017b5e3a43e185e0129c9' => $vendorDir . '/ares/framework/illuminate/Foundation/helpers.php',
    29     '73af85160eb142caf628c1945c41f948' => $vendorDir . '/guzzlehttp/guzzle/src/functions_include.php',
     9    'b9df13004b30b4d9ae5df1f6f78ee644' => $vendorDir . '/symfony/polyfill-php80/bootstrap.php',
     10    'b212b9b0545adc5c76fd9d70db102ac8' => $vendorDir . '/symfony/polyfill-mbstring/bootstrap.php',
     11    '0345cb3886a2ea6f0c1a781d6df9dc68' => $vendorDir . '/symfony/deprecation-contracts/function.php',
     12    '9e587edc21076ad6f88faed5e7fc04f1' => $vendorDir . '/illuminate/collections/helpers.php',
     13    '3d8150d6e4655f3f753575eef28de469' => $vendorDir . '/symfony/translation/Resources/functions.php',
     14    '9cc250ce24551b2dfefec0fcb9cedeb6' => $vendorDir . '/illuminate/support/helpers.php',
     15    'c7b65616595913a9bfb326bf01a1a2e5' => $vendorDir . '/symfony/polyfill-ctype/bootstrap.php',
     16    '151d26e4de166529e74428590b3aa598' => $vendorDir . '/symfony/polyfill-php73/bootstrap.php',
     17    '4fd4996f8f6813a0c88a9ebe158e4f71' => $vendorDir . '/symfony/polyfill-intl-normalizer/bootstrap.php',
     18    '127e40495c32c5be02c34230f8c9ed83' => $vendorDir . '/symfony/var-dumper/Resources/functions/dump.php',
     19    'b60699d9bf83b250ac958839bc810898' => $vendorDir . '/symfony/polyfill-intl-grapheme/bootstrap.php',
     20    '4c67895d5d889cd7878806b7f0f67942' => $vendorDir . '/symfony/string/Resources/functions.php',
     21    '99bccbfbb17732d5a492bc145dba8d4f' => $vendorDir . '/symfony/polyfill-intl-idn/bootstrap.php',
     22    'a1f0f93f79545d2d61da462814fb31c6' => $vendorDir . '/symfony/polyfill-php81/bootstrap.php',
     23    '14fd7cd8f6bb4c8edebc40dd83385fee' => $vendorDir . '/illuminate/events/functions.php',
     24    '0898389483f72999abc40b08d38d845f' => $vendorDir . '/opis/closure/functions.php',
     25    '46e629ed03ce09a444a8f712b5a664af' => $vendorDir . '/ralouphie/getallheaders/src/getallheaders.php',
     26    '720917aa7bcb70ce85b913d42bc0a583' => $vendorDir . '/ramsey/uuid/src/functions.php',
     27    'a7d7816943673a283d1e2d5da377af5c' => $vendorDir . '/ares/framework/src/helpers.php',
     28    'ebc87c0a9c6606368f3eec07f88c9a27' => $vendorDir . '/ares/framework/illuminate/Foundation/helpers.php',
     29    '6cc8d355a8f32caec38631ef9480c40b' => $vendorDir . '/guzzlehttp/guzzle/src/functions_include.php',
    3030);
  • modular-connector/trunk/vendor/composer/autoload_real.php

    r3316585 r3318767  
    33// autoload_real.php @generated by Composer
    44
    5 class ComposerAutoloaderInit3f089fcf4d3c64c6ae12d32c25327b4a
     5class ComposerAutoloaderInitc0caee64b6f350780a2215818537da6e
    66{
    77    private static $loader;
     
    2323        }
    2424
    25         spl_autoload_register(array('ComposerAutoloaderInit3f089fcf4d3c64c6ae12d32c25327b4a', 'loadClassLoader'), true, true);
     25        spl_autoload_register(array('ComposerAutoloaderInitc0caee64b6f350780a2215818537da6e', 'loadClassLoader'), true, true);
    2626        self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
    27         spl_autoload_unregister(array('ComposerAutoloaderInit3f089fcf4d3c64c6ae12d32c25327b4a', 'loadClassLoader'));
     27        spl_autoload_unregister(array('ComposerAutoloaderInitc0caee64b6f350780a2215818537da6e', 'loadClassLoader'));
    2828
    2929        require __DIR__ . '/autoload_static.php';
    30         call_user_func(\Composer\Autoload\ComposerStaticInit3f089fcf4d3c64c6ae12d32c25327b4a::getInitializer($loader));
     30        call_user_func(\Composer\Autoload\ComposerStaticInitc0caee64b6f350780a2215818537da6e::getInitializer($loader));
    3131
    3232        $loader->register(true);
    3333
    34         $filesToLoad = \Composer\Autoload\ComposerStaticInit3f089fcf4d3c64c6ae12d32c25327b4a::$files;
     34        $filesToLoad = \Composer\Autoload\ComposerStaticInitc0caee64b6f350780a2215818537da6e::$files;
    3535        $requireFile = \Closure::bind(static function ($fileIdentifier, $file) {
    3636            if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
  • modular-connector/trunk/vendor/composer/autoload_static.php

    r3316585 r3318767  
    55namespace Composer\Autoload;
    66
    7 class ComposerStaticInit3f089fcf4d3c64c6ae12d32c25327b4a
     7class ComposerStaticInitc0caee64b6f350780a2215818537da6e
    88{
    99    public static $files = array (
    10         '2a7ae82a0fa055d0c359db0567f8045b' => __DIR__ . '/..' . '/symfony/polyfill-php80/bootstrap.php',
    11         '2bd03b7320d3d954b4a6106b944dedcd' => __DIR__ . '/..' . '/symfony/polyfill-mbstring/bootstrap.php',
    12         '8ad58f98ab3728e912b1aa646bcd6f5d' => __DIR__ . '/..' . '/symfony/deprecation-contracts/function.php',
    13         '05b6843b0f719280f2b7ca96bf073bce' => __DIR__ . '/..' . '/illuminate/collections/helpers.php',
    14         '0ac09c85f1386b383e2d770eddc4a8ba' => __DIR__ . '/..' . '/symfony/translation/Resources/functions.php',
    15         'f476c0f9d269513aeb59fe39926292f2' => __DIR__ . '/..' . '/illuminate/support/helpers.php',
    16         '4ca979599649fb802a3460ef76a5868c' => __DIR__ . '/..' . '/symfony/polyfill-ctype/bootstrap.php',
    17         'a16160c5ae5bfcf58020972907145891' => __DIR__ . '/..' . '/symfony/polyfill-php73/bootstrap.php',
    18         '803cf3746f46f25833f45ab2bec4de03' => __DIR__ . '/..' . '/symfony/polyfill-intl-normalizer/bootstrap.php',
    19         '78c4d8dc2c65d79cf80e9f4b509696a4' => __DIR__ . '/..' . '/symfony/var-dumper/Resources/functions/dump.php',
    20         '5ea2b0ebb02fc8e7fae2fbae0244fa04' => __DIR__ . '/..' . '/symfony/polyfill-intl-grapheme/bootstrap.php',
    21         '172e7c58c3b184b7c154dad6866932cb' => __DIR__ . '/..' . '/symfony/string/Resources/functions.php',
    22         '83ab369dc6a854aa26fbf1237e38cbed' => __DIR__ . '/..' . '/symfony/polyfill-intl-idn/bootstrap.php',
    23         '6cedf4cf4c1f6c2a22ef8862997a86d1' => __DIR__ . '/..' . '/symfony/polyfill-php81/bootstrap.php',
    24         'a871684b1e03bc971f75eb85d9754541' => __DIR__ . '/..' . '/illuminate/events/functions.php',
    25         'aeedc8cb7ffe72a4d8cc74f4574b7622' => __DIR__ . '/..' . '/opis/closure/functions.php',
    26         'c4bb2579b93aaba645ce203d4ad6559d' => __DIR__ . '/..' . '/ralouphie/getallheaders/src/getallheaders.php',
    27         '4d26d21f6bf69d36a06a9c49d9af439e' => __DIR__ . '/..' . '/ramsey/uuid/src/functions.php',
    28         '40954e2053dad20852460f0240b2b4fb' => __DIR__ . '/..' . '/ares/framework/src/helpers.php',
    29         'd4b489ead93017b5e3a43e185e0129c9' => __DIR__ . '/..' . '/ares/framework/illuminate/Foundation/helpers.php',
    30         '73af85160eb142caf628c1945c41f948' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/functions_include.php',
     10        'b9df13004b30b4d9ae5df1f6f78ee644' => __DIR__ . '/..' . '/symfony/polyfill-php80/bootstrap.php',
     11        'b212b9b0545adc5c76fd9d70db102ac8' => __DIR__ . '/..' . '/symfony/polyfill-mbstring/bootstrap.php',
     12        '0345cb3886a2ea6f0c1a781d6df9dc68' => __DIR__ . '/..' . '/symfony/deprecation-contracts/function.php',
     13        '9e587edc21076ad6f88faed5e7fc04f1' => __DIR__ . '/..' . '/illuminate/collections/helpers.php',
     14        '3d8150d6e4655f3f753575eef28de469' => __DIR__ . '/..' . '/symfony/translation/Resources/functions.php',
     15        '9cc250ce24551b2dfefec0fcb9cedeb6' => __DIR__ . '/..' . '/illuminate/support/helpers.php',
     16        'c7b65616595913a9bfb326bf01a1a2e5' => __DIR__ . '/..' . '/symfony/polyfill-ctype/bootstrap.php',
     17        '151d26e4de166529e74428590b3aa598' => __DIR__ . '/..' . '/symfony/polyfill-php73/bootstrap.php',
     18        '4fd4996f8f6813a0c88a9ebe158e4f71' => __DIR__ . '/..' . '/symfony/polyfill-intl-normalizer/bootstrap.php',
     19        '127e40495c32c5be02c34230f8c9ed83' => __DIR__ . '/..' . '/symfony/var-dumper/Resources/functions/dump.php',
     20        'b60699d9bf83b250ac958839bc810898' => __DIR__ . '/..' . '/symfony/polyfill-intl-grapheme/bootstrap.php',
     21        '4c67895d5d889cd7878806b7f0f67942' => __DIR__ . '/..' . '/symfony/string/Resources/functions.php',
     22        '99bccbfbb17732d5a492bc145dba8d4f' => __DIR__ . '/..' . '/symfony/polyfill-intl-idn/bootstrap.php',
     23        'a1f0f93f79545d2d61da462814fb31c6' => __DIR__ . '/..' . '/symfony/polyfill-php81/bootstrap.php',
     24        '14fd7cd8f6bb4c8edebc40dd83385fee' => __DIR__ . '/..' . '/illuminate/events/functions.php',
     25        '0898389483f72999abc40b08d38d845f' => __DIR__ . '/..' . '/opis/closure/functions.php',
     26        '46e629ed03ce09a444a8f712b5a664af' => __DIR__ . '/..' . '/ralouphie/getallheaders/src/getallheaders.php',
     27        '720917aa7bcb70ce85b913d42bc0a583' => __DIR__ . '/..' . '/ramsey/uuid/src/functions.php',
     28        'a7d7816943673a283d1e2d5da377af5c' => __DIR__ . '/..' . '/ares/framework/src/helpers.php',
     29        'ebc87c0a9c6606368f3eec07f88c9a27' => __DIR__ . '/..' . '/ares/framework/illuminate/Foundation/helpers.php',
     30        '6cc8d355a8f32caec38631ef9480c40b' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/functions_include.php',
    3131    );
    3232
     
    26352635    {
    26362636        return \Closure::bind(function () use ($loader) {
    2637             $loader->prefixLengthsPsr4 = ComposerStaticInit3f089fcf4d3c64c6ae12d32c25327b4a::$prefixLengthsPsr4;
    2638             $loader->prefixDirsPsr4 = ComposerStaticInit3f089fcf4d3c64c6ae12d32c25327b4a::$prefixDirsPsr4;
    2639             $loader->classMap = ComposerStaticInit3f089fcf4d3c64c6ae12d32c25327b4a::$classMap;
     2637            $loader->prefixLengthsPsr4 = ComposerStaticInitc0caee64b6f350780a2215818537da6e::$prefixLengthsPsr4;
     2638            $loader->prefixDirsPsr4 = ComposerStaticInitc0caee64b6f350780a2215818537da6e::$prefixDirsPsr4;
     2639            $loader->classMap = ComposerStaticInitc0caee64b6f350780a2215818537da6e::$classMap;
    26402640
    26412641        }, null, ClassLoader::class);
  • modular-connector/trunk/vendor/composer/installed.json

    r3316585 r3318767  
    33        {
    44            "name": "ares\/framework",
    5             "version": "3.6.0",
    6             "version_normalized": "3.6.0.0",
     5            "version": "dev-master",
     6            "version_normalized": "dev-master",
    77            "source": {
    88                "type": "git",
    99                "url": "[email protected]:modular\/connector\/ares.git",
    10                 "reference": "5d94033a910ea680362b9aeee1b12af0d0ffea87"
    11             },
    12             "dist": {
    13                 "type": "zip",
    14                 "url": "https:\/\/gitlab.modulards.com\/api\/v4\/projects\/modular%2Fconnector%2Fares\/repository\/archive.zip?sha=5d94033a910ea680362b9aeee1b12af0d0ffea87",
    15                 "reference": "5d94033a910ea680362b9aeee1b12af0d0ffea87",
     10                "reference": "374ee9e78475a4a8206f81c4a3219d51f437e115"
     11            },
     12            "dist": {
     13                "type": "zip",
     14                "url": "https:\/\/gitlab.modulards.com\/api\/v4\/projects\/modular%2Fconnector%2Fares\/repository\/archive.zip?sha=374ee9e78475a4a8206f81c4a3219d51f437e115",
     15                "reference": "374ee9e78475a4a8206f81c4a3219d51f437e115",
    1616                "shasum": ""
    1717            },
     
    4242                "filp\/whoops": "^2.12"
    4343            },
    44             "time": "2025-06-23T17:03:37+02:00",
     44            "time": "2025-06-26T18:59:33+02:00",
     45            "default-branch": true,
    4546            "type": "library",
    4647            "installation-source": "dist",
     
    6970            ],
    7071            "support": {
    71                 "source": "https:\/\/gitlab.modulards.com\/modular\/connector\/ares\/-\/tree\/3.6.0",
     72                "source": "https:\/\/gitlab.modulards.com\/modular\/connector\/ares\/-\/tree\/master",
    7273                "issues": "https:\/\/gitlab.modulards.com\/modular\/connector\/ares\/-\/issues"
    7374            },
  • modular-connector/trunk/vendor/composer/installed.php

    r3316585 r3318767  
    33namespace Modular\ConnectorDependencies;
    44
    5 return array('root' => array('name' => 'modular/connector', 'pretty_version' => 'dev-master', 'version' => 'dev-master', 'reference' => '81f2b9527017c8942e4110b8634b2bef1c6c85af', 'type' => 'wordpres-plugin', 'install_path' => __DIR__ . '/../../', 'aliases' => array(), 'dev' => \true), 'versions' => array('ares/framework' => array('pretty_version' => '3.6.0', 'version' => '3.6.0.0', 'reference' => '5d94033a910ea680362b9aeee1b12af0d0ffea87', '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' => '81f2b9527017c8942e4110b8634b2bef1c6c85af', '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.0 || 2.0.0 || 3.0.0', 1 => '1.0|2.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.8.1', 'version' => '6.8.1.0', 'reference' => 'c2c18f89a9aa2d7ef1998d233b9ed00d0deff5dd', '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.32.0', 'version' => '1.32.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.32.0', 'version' => '1.32.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.32.0', 'version' => '1.32.0.0', 'reference' => '9614ac4d8061dc257ecc64cba1b140873dce8ad3', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/polyfill-intl-idn', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/polyfill-intl-normalizer' => array('pretty_version' => 'v1.32.0', 'version' => '1.32.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.32.0', 'version' => '1.32.0.0', 'reference' => '6d857f4d76bd4b343eac26d6b539585d2bc56493', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/polyfill-mbstring', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/polyfill-php73' => array('pretty_version' => 'v1.32.0', 'version' => '1.32.0.0', 'reference' => '0f68c03565dcaaf25a890667542e8bd75fe7e5bb', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/polyfill-php73', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/polyfill-php80' => array('pretty_version' => 'v1.32.0', 'version' => '1.32.0.0', 'reference' => '0cc9dd0f17f61d8131e7df6b84bd344899fe2608', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/polyfill-php80', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/polyfill-php81' => array('pretty_version' => 'v1.32.0', 'version' => '1.32.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.2', 'version' => '5.6.2.0', 'reference' => '24ac4c74f91ee2c193fa1aaa5c249cb0822809af', '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' => '850cea592ad265e69a07d902ff871b4923c698d2', 'type' => 'wordpres-plugin', 'install_path' => __DIR__ . '/../../', 'aliases' => array(), 'dev' => \true), 'versions' => array('ares/framework' => array('pretty_version' => 'dev-master', 'version' => 'dev-master', 'reference' => '374ee9e78475a4a8206f81c4a3219d51f437e115', 'type' => 'library', 'install_path' => __DIR__ . '/../ares/framework', 'aliases' => array(0 => '9999999-dev'), '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' => '850cea592ad265e69a07d902ff871b4923c698d2', '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.0 || 2.0.0 || 3.0.0', 1 => '1.0|2.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.8.1', 'version' => '6.8.1.0', 'reference' => 'c2c18f89a9aa2d7ef1998d233b9ed00d0deff5dd', '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.32.0', 'version' => '1.32.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.32.0', 'version' => '1.32.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.32.0', 'version' => '1.32.0.0', 'reference' => '9614ac4d8061dc257ecc64cba1b140873dce8ad3', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/polyfill-intl-idn', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/polyfill-intl-normalizer' => array('pretty_version' => 'v1.32.0', 'version' => '1.32.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.32.0', 'version' => '1.32.0.0', 'reference' => '6d857f4d76bd4b343eac26d6b539585d2bc56493', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/polyfill-mbstring', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/polyfill-php73' => array('pretty_version' => 'v1.32.0', 'version' => '1.32.0.0', 'reference' => '0f68c03565dcaaf25a890667542e8bd75fe7e5bb', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/polyfill-php73', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/polyfill-php80' => array('pretty_version' => 'v1.32.0', 'version' => '1.32.0.0', 'reference' => '0cc9dd0f17f61d8131e7df6b84bd344899fe2608', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/polyfill-php80', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/polyfill-php81' => array('pretty_version' => 'v1.32.0', 'version' => '1.32.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.2', 'version' => '5.6.2.0', 'reference' => '24ac4c74f91ee2c193fa1aaa5c249cb0822809af', '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

    r3316585 r3318767  
    1515    $GLOBALS['__composer_autoload_files'] = \array_merge(
    1616        $existingComposerAutoloadFiles,
    17         \array_fill_keys(['4ca979599649fb802a3460ef76a5868c', '9eaa6b0f3f04e58e17ae5ecb754ea313', '5ea2b0ebb02fc8e7fae2fbae0244fa04', 'acbe0d033c55cd0a032b415e08d14f4c', '83ab369dc6a854aa26fbf1237e38cbed', 'b48cbeb76a71e226a23fa64ac2b94dc6', '803cf3746f46f25833f45ab2bec4de03', '36dfd6ed9dd74e8062aa61f09caf8554', '2bd03b7320d3d954b4a6106b944dedcd', '5928a00fa978807cf85d90ec3f4b0147', 'a16160c5ae5bfcf58020972907145891', '2a7ae82a0fa055d0c359db0567f8045b', '6cedf4cf4c1f6c2a22ef8862997a86d1', '28099935d0ea91a1b5e09408e356eacb', '99b27172349c9ec3abea78f62e2938bb', '9250916e8af80e0d1bb31401fd2e15a7', '674e404d8857dd99db32bc218bb5643a', 'b178954ba4692b8876c08a4a97e6ce23', 'c5e5dfa7f2077b89dbc43523332b50aa', '83cc8b953df9a6f7e51f674d84d57730', 'a875add15ea9a7df1a6c0c26cc9e4590', '1cbb53d50065225a14c2360be2ccbf6f', '54b9ab13bc86d8251a04a939888e357e', 'a89966141ddd51b9b7e868bc3b2f9bb0', '7edcabe1b67fbb38f4972a722bbbb429', 'f49032536fdd06afd9df7191c3f21453', '51421aa3e5e8003b70a289762d146a2a', '7bdb062931f6e7102434c3ad28423eb6', '18e965175c6bcd96deba6bc791a44373', '7b0b5d7b98f96ad751222ae5cc98cfcb', 'd1fb64fd99fc22e28e29a95cc0ea533a'], true)
     17        \array_fill_keys(['9eaa6b0f3f04e58e17ae5ecb754ea313', 'c7b65616595913a9bfb326bf01a1a2e5', 'acbe0d033c55cd0a032b415e08d14f4c', 'b60699d9bf83b250ac958839bc810898', 'b48cbeb76a71e226a23fa64ac2b94dc6', '99bccbfbb17732d5a492bc145dba8d4f', '36dfd6ed9dd74e8062aa61f09caf8554', '4fd4996f8f6813a0c88a9ebe158e4f71', '5928a00fa978807cf85d90ec3f4b0147', 'b212b9b0545adc5c76fd9d70db102ac8', '151d26e4de166529e74428590b3aa598', 'b9df13004b30b4d9ae5df1f6f78ee644', 'a1f0f93f79545d2d61da462814fb31c6', 'a875add15ea9a7df1a6c0c26cc9e4590', 'c5e5dfa7f2077b89dbc43523332b50aa', '99b27172349c9ec3abea78f62e2938bb', '674e404d8857dd99db32bc218bb5643a', 'b178954ba4692b8876c08a4a97e6ce23', '9250916e8af80e0d1bb31401fd2e15a7', '83cc8b953df9a6f7e51f674d84d57730', '28099935d0ea91a1b5e09408e356eacb', '1cbb53d50065225a14c2360be2ccbf6f', '54b9ab13bc86d8251a04a939888e357e', 'a89966141ddd51b9b7e868bc3b2f9bb0', '7edcabe1b67fbb38f4972a722bbbb429', '18e965175c6bcd96deba6bc791a44373', 'f49032536fdd06afd9df7191c3f21453', '51421aa3e5e8003b70a289762d146a2a', '7bdb062931f6e7102434c3ad28423eb6', '7b0b5d7b98f96ad751222ae5cc98cfcb', 'd1fb64fd99fc22e28e29a95cc0ea533a'], true)
    1818    );
    1919
     
    3030    }
    3131}
     32humbug_phpscoper_expose_class('JsonException', 'Modular\ConnectorDependencies\JsonException');
    3233humbug_phpscoper_expose_class('Normalizer', 'Modular\ConnectorDependencies\Normalizer');
    3334humbug_phpscoper_expose_class('CURLStringFile', 'Modular\ConnectorDependencies\CURLStringFile');
    3435humbug_phpscoper_expose_class('ReturnTypeWillChange', 'Modular\ConnectorDependencies\ReturnTypeWillChange');
    3536humbug_phpscoper_expose_class('UnhandledMatchError', 'Modular\ConnectorDependencies\UnhandledMatchError');
     37humbug_phpscoper_expose_class('Attribute', 'Modular\ConnectorDependencies\Attribute');
    3638humbug_phpscoper_expose_class('ValueError', 'Modular\ConnectorDependencies\ValueError');
    3739humbug_phpscoper_expose_class('PhpToken', 'Modular\ConnectorDependencies\PhpToken');
    3840humbug_phpscoper_expose_class('Stringable', 'Modular\ConnectorDependencies\Stringable');
    39 humbug_phpscoper_expose_class('Attribute', 'Modular\ConnectorDependencies\Attribute');
    40 humbug_phpscoper_expose_class('JsonException', 'Modular\ConnectorDependencies\JsonException');
    4141
    4242// Function aliases. For more information see:
Note: See TracChangeset for help on using the changeset viewer.