Plugin Directory

Changeset 3251053


Ignore:
Timestamp:
03/05/2025 11:24:02 AM (9 months ago)
Author:
modulards
Message:

v1.12.2

Location:
modular-connector/trunk
Files:
1 added
1 deleted
19 edited

Legend:

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

    r3250373 r3251053  
    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.12.1
     6 * Version: 1.12.2
    77 * License: GPL v3.0
    88 * License URI: https://www.gnu.org/licenses/gpl.html
     
    1919}
    2020
    21 define('MODULAR_CONNECTOR_BASENAME', plugin_basename(__FILE__));
    22 define('MODULAR_CONNECTOR_VERSION', '1.12.1');
     21define('MODULAR_CONNECTOR_BASENAME', sprintf('%s/%s', basename(dirname(__FILE__)), basename(__FILE__)));
     22define('MODULAR_CONNECTOR_MU_BASENAME', sprintf('0-%s.php', dirname(MODULAR_CONNECTOR_BASENAME)));
     23define('MODULAR_CONNECTOR_VERSION', '1.12.2');
    2324define('MODULAR_ARES_CACHE_PREFIX', 'modular_connector_cache_');
    2425define('MODULAR_ARES_SCHEDULE_HOOK', 'modular_connector_run_schedule');
     
    3132
    3233require_once __DIR__ . '/src/bootstrap/autoload.php';
    33 
    34 add_action('plugins_loaded', function () {
    35     load_plugin_textdomain('modular-connector', false, dirname(MODULAR_CONNECTOR_BASENAME) . '/languages');
    36 });
    3734
    3835if (function_exists('register_deactivation_hook')) {
  • modular-connector/trunk/readme.txt

    r3250373 r3251053  
    44Requires at least: 5.6
    55Tested up to: 6.7
    6 Stable tag: 1.12.1
     6Stable tag: 1.12.2
    77Requires PHP: 7.4
    88License: GPLv3
     
    106106
    107107== Changelog ==
     108= v1.12.2 =
     109Release date: 2025-03-05
     110
     111* FIXED: Conflict with different plugins
     112
    108113= v1.12.1 =
    109114Release date: 2025-03-04
  • modular-connector/trunk/src/app/Services/Manager.php

    r3249268 r3251053  
    5656        return $response;
    5757    }
    58    
    5958
    6059    /**
     
    9594        $this->clearQueue();
    9695        $this->clearQueue('backups');
     96
     97        try {
     98            Storage::disk('mu_plugins')->delete(MODULAR_CONNECTOR_MU_BASENAME);
     99        } catch (\Throwable $e) {
     100            // Silence is golden
     101        }
    97102    }
    98103
  • modular-connector/trunk/src/app/Services/ManagerServer.php

    r3249268 r3251053  
    77use Imagick;
    88use Modular\Connector\Facades\Manager;
     9use Modular\ConnectorDependencies\Ares\Framework\Foundation\Http\HttpUtils;
    910use Modular\ConnectorDependencies\Illuminate\Support\Facades\Storage;
    1011use Modular\ConnectorDependencies\Illuminate\Support\Str;
    1112use Modular\ConnectorDependencies\Symfony\Component\Console\SignalRegistry\SignalRegistry;
    12 use function Modular\ConnectorDependencies\data_get;
    1313
    1414/**
     
    402402            'MODULAR_CONNECTOR_TIMEZONE' => defined('MODULAR_CONNECTOR_TIMEZONE') ? MODULAR_CONNECTOR_TIMEZONE : null,
    403403            'MODULAR_CONNECTOR_BASENAME' => defined('MODULAR_CONNECTOR_BASENAME') ? MODULAR_CONNECTOR_BASENAME : null,
     404            'MODULAR_CONNECTOR_MU_BASENAME' => defined('MODULAR_CONNECTOR_MU_BASENAME') ? MODULAR_CONNECTOR_MU_BASENAME : null,
    404405            'MODULAR_CONNECTOR_VERSION' => defined('MODULAR_CONNECTOR_VERSION') ? MODULAR_CONNECTOR_VERSION : null,
    405406            'MODULAR_ARES_SCHEDULE_HOOK' => defined('MODULAR_ARES_SCHEDULE_HOOK') ? MODULAR_ARES_SCHEDULE_HOOK : null,
     
    475476                'is_public' => $this->isPublic(),
    476477                'user_count' => count_users(), // TODO admin_user_count
     478                'is_mu_plugin' => HttpUtils::isMuPlugin(),
    477479            ],
    478480            'server' => [
  • modular-connector/trunk/src/bootstrap/autoload.php

    r3219845 r3251053  
    2323use Modular\ConnectorDependencies\Illuminate\Contracts\Debug\ExceptionHandler as IlluminateExceptionHandler;
    2424use Modular\ConnectorDependencies\Illuminate\Contracts\Http\Kernel as IlluminateHttpKernel;
     25use Modular\ConnectorDependencies\Illuminate\Support\Facades\Log;
     26use Modular\ConnectorDependencies\Illuminate\Support\Facades\Storage;
    2527
    2628require __DIR__ . '/../../vendor/scoper-autoload.php';
     
    3133$bootloader = Bootloader::getInstance();
    3234
     35function modular_connector_register_storage(Application $app)
     36{
     37    try {
     38        $storagePath = MODULAR_CONNECTOR_STORAGE_PATH;
     39
     40        if (!file_exists($storagePath)) {
     41            $created = @mkdir($storagePath, 0755, true);
     42
     43            if (!$created) {
     44                return; // If the storage path could not be created, we can't continue
     45            }
     46        }
     47
     48        $subFolders = ['views', 'logs'];
     49
     50        foreach ($subFolders as $subFolder) {
     51            $subPath = $storagePath . DIRECTORY_SEPARATOR . $subFolder;
     52
     53            if (!file_exists($subPath)) {
     54                $created = @mkdir($subPath, 0775, true);
     55
     56                if (!$created) {
     57                    @rmdir($storagePath . DIRECTORY_SEPARATOR . 'views'); // Remove the storage path
     58                    @rmdir($storagePath . DIRECTORY_SEPARATOR . 'logs'); // Remove the storage path
     59                    @rmdir($storagePath); // Remove the storage path
     60
     61                    return;
     62                }
     63            }
     64
     65            // Create index.php, index.html and .htaccess files
     66            $indexPhp = $subPath . DIRECTORY_SEPARATOR . 'index.php';
     67            $indexHtml = $subPath . DIRECTORY_SEPARATOR . 'index.html';
     68            $htaccess = $subPath . DIRECTORY_SEPARATOR . '.htaccess';
     69
     70            if (!file_exists($indexPhp)) {
     71                @file_put_contents($indexPhp, '<?php // Silence is golden.');
     72            }
     73
     74            if (!file_exists($indexHtml)) {
     75                @file_put_contents($indexHtml, '');
     76            }
     77
     78            if (!file_exists($htaccess)) {
     79                @file_put_contents($htaccess, 'deny from all');
     80            }
     81        }
     82
     83        // If the storage path was created, we can set it as the storage path for the application
     84        $app->useStoragePath($storagePath);
     85    } catch (\Throwable $e) {
     86        // Silence is golden
     87    }
     88}
     89
     90function modular_connector_register_must_use_content($basename)
     91{
     92    return <<<EOF
     93<?php
     94
     95/**
     96 * Plugin Name: Modular Connector Loader
     97 * Plugin URI: https://modulards.com/herramienta-gestion-webs/
     98 * Description: Automatically generated by the Modular Connector. Do not remove. It is automatically disabled when disabling the main plugin.
     99 * Version: 1.0.0
     100 * License: GPL v3.0
     101 * Author: Modular DS
     102 * Author URI: https://modulards.com/
     103 * Network: true
     104 */
     105
     106if (!function_exists('untrailingslashit') || !defined('WP_PLUGIN_DIR')) {
     107    return;
     108}
     109
     110if (!file_exists(untrailingslashit(WP_PLUGIN_DIR) . '/$basename')) {
     111    return;
     112}
     113
     114if (
     115    in_array('$basename', (array)get_option('active_plugins')) ||
     116    function_exists('get_site_option') && array_key_exists('$basename', (array)get_site_option('active_sitewide_plugins'))
     117) {
     118    \$GLOBALS['modular_is_mu_plugin'] = true;
     119   
     120    include_once untrailingslashit(WP_PLUGIN_DIR) . '/$basename';
     121}
     122EOF;
     123}
     124
     125function modular_connector_register_must_use(string $name)
     126{
     127    try {
     128        $disk = Storage::disk('mu_plugins');
     129
     130        $path = $disk->path($name);
     131        $content = modular_connector_register_must_use_content(MODULAR_CONNECTOR_BASENAME);
     132
     133        if ($disk->exists($name) && sha1($content) === sha1_file($path)) {
     134            return;
     135        }
     136
     137        $disk->put($name, $content);
     138    } catch (\Throwable $e) {
     139        // Silence is golden
     140        Log::debug($e->getMessage(), [
     141            'file' => $e->getFile(),
     142            'line' => $e->getLine(),
     143        ]);
     144    }
     145}
     146
    33147$bootloader->boot(
    34148    dirname(__DIR__),
     
    37151        $app->singleton(IlluminateExceptionHandler::class, ExceptionHandler::class);
    38152
    39         try {
    40             $storagePath = MODULAR_CONNECTOR_STORAGE_PATH;
     153        modular_connector_register_storage($app);
    41154
    42             if (!file_exists($storagePath)) {
    43                 $created = @mkdir($storagePath, 0755, true);
    44 
    45                 if (!$created) {
    46                     return; // If the storage path could not be created, we can't continue
    47                 }
    48             }
    49 
    50             $subFolders = ['views', 'logs'];
    51 
    52             foreach ($subFolders as $subFolder) {
    53                 $subPath = $storagePath . DIRECTORY_SEPARATOR . $subFolder;
    54 
    55                 if (!file_exists($subPath)) {
    56                     $created = @mkdir($subPath, 0775, true);
    57 
    58                     if (!$created) {
    59                         @rmdir($storagePath . DIRECTORY_SEPARATOR . 'views'); // Remove the storage path
    60                         @rmdir($storagePath . DIRECTORY_SEPARATOR . 'logs'); // Remove the storage path
    61                         @rmdir($storagePath); // Remove the storage path
    62 
    63                         return;
    64                     }
    65                 }
    66 
    67                 // Create index.php, index.html and .htaccess files
    68                 $indexPhp = $subPath . DIRECTORY_SEPARATOR . 'index.php';
    69                 $indexHtml = $subPath . DIRECTORY_SEPARATOR . 'index.html';
    70                 $htaccess = $subPath . DIRECTORY_SEPARATOR . '.htaccess';
    71 
    72                 if (!file_exists($indexPhp)) {
    73                     @file_put_contents($indexPhp, '<?php // Silence is golden.');
    74                 }
    75 
    76                 if (!file_exists($indexHtml)) {
    77                     @file_put_contents($indexHtml, '');
    78                 }
    79 
    80                 if (!file_exists($htaccess)) {
    81                     @file_put_contents($htaccess, 'deny from all');
    82                 }
    83             }
    84 
    85             // If the storage path was created, we can set it as the storage path for the application
    86             $app->useStoragePath($storagePath);
    87         } catch (\Throwable $e) {
    88             // Silence is golden
    89         }
     155        $app->booted(function (Application $app) {
     156            modular_connector_register_must_use(MODULAR_CONNECTOR_MU_BASENAME);
     157        });
    90158    }
    91159);
  • modular-connector/trunk/vendor/ares/framework/config/queue.php

    r3250373 r3251053  
    2727    |
    2828    */
    29     'connections' => ['sync' => ['driver' => 'sync'], 'modular' => ['prefix' => 'modular', 'driver' => 'database', 'table' => 'options', 'queue' => 'default', 'retry_after' => 10 * 60], 'names' => ['default', 'backups']],
     29    'connections' => ['sync' => ['driver' => 'sync'], 'modular' => ['prefix' => 'modular', 'driver' => 'database', 'table' => 'options', 'queue' => 'default', 'retry_after' => 10 * 60]],
    3030];
  • modular-connector/trunk/vendor/ares/framework/src/Foundation/Application.php

    r3250373 r3251053  
    1515     */
    1616    public const VERSION = 'Ares 3.x (Laravel ' . parent::VERSION . ')';
     17    /**
     18     * Many sites have problems with the WP Cron system, so we need to force the schedule run.
     19     *
     20     * @var bool
     21     */
     22    public bool $forceDispatchScheduleRun = \false;
    1723    /**
    1824     * @return string
     
    6773    }
    6874    /**
     75     * Determine if we need to force the schedule run.
     76     *
     77     * This method will be called when any job is dispatched to the queue.
     78     *
     79     * @param bool $force
     80     * @return $this
     81     */
     82    public function forceDispatchScheduleRun(bool $force = \true)
     83    {
     84        $this->forceDispatchScheduleRun = $force;
     85        return $this;
     86    }
     87    /**
    6988     * Format the given command as a fully-qualified executable command.
    7089     *
  • modular-connector/trunk/vendor/ares/framework/src/Foundation/Compatibilities/Compatibilities.php

    r3250373 r3251053  
    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];
     9        return [WPForms::class, AllInOneSecurity::class, WpSimpleFirewall::class, DuoFactor::class, ShieldUserManagementICWP::class, SidekickPlugin::class, SpamShield::class, WPO365Login::class, JetPlugins::class, WPEngine::class];
    1010    }
    1111}
  • modular-connector/trunk/vendor/ares/framework/src/Foundation/Http/HttpUtils.php

    r3249268 r3251053  
    101101    }
    102102    /**
     103     * @return bool
     104     */
     105    public static function isMuPlugin()
     106    {
     107        return \Modular\ConnectorDependencies\data_get($GLOBALS, 'modular_is_mu_plugin', \false);
     108    }
     109    /**
    103110     * @return void
    104111     */
  • modular-connector/trunk/vendor/ares/framework/src/Foundation/Providers/FoundationServiceProvider.php

    r3250373 r3251053  
    44
    55use Modular\ConnectorDependencies\Ares\Framework\Foundation\Auth\JWT;
    6 use Modular\ConnectorDependencies\Ares\Framework\Foundation\Http\HttpUtils;
    76use Modular\ConnectorDependencies\Illuminate\Console\Scheduling\Schedule;
    87use Modular\ConnectorDependencies\Illuminate\Contracts\Http\Kernel;
    9 use Modular\ConnectorDependencies\Illuminate\Support\Collection;
    10 use Modular\ConnectorDependencies\Illuminate\Support\Facades\Log;
    118use Modular\ConnectorDependencies\Illuminate\Support\ServiceProvider;
    129class FoundationServiceProvider extends ServiceProvider
     
    4441    {
    4542        $this->app->terminating(function () {
    46             $queues = Collection::make($this->app->make('config')->get('queue.names', []));
    47             $debugSchedule = $this->app->make('config')->get('app.debug_schedule', \false);
    48             // We force the schedule run only if there are pending jobs in the queues or if it's a direct request.
    49             $hasPendingJobs = HttpUtils::isDirectRequest() || $queues->some(function ($queue) use ($debugSchedule) {
    50                 $size = $this->app->make('queue')->size($queue);
    51                 if ($debugSchedule) {
    52                     Log::debug('Checking queue', ['queue' => $queue, 'size' => $size]);
    53                 }
    54                 return $size > 0;
    55             });
    56             if (!$hasPendingJobs) {
     43            if (!$this->app->forceDispatchScheduleRun) {
    5744                return;
    5845            }
     46            $debugSchedule = $this->app->make('config')->get('app.debug_schedule', \false);
    5947            $hook = $this->app->getScheduleHook();
    6048            $url = apply_filters(sprintf('%s_query_url', $hook), admin_url('admin-ajax.php'));
  • modular-connector/trunk/vendor/ares/framework/src/Foundation/Queue/DatabaseQueue.php

    r3250373 r3251053  
    117117    public function push($job, $data = '', $queue = null)
    118118    {
     119        // Force to dispatch the schedule
     120        \Modular\ConnectorDependencies\app()->forceDispatchScheduleRun();
    119121        $queue = $this->getQueue($queue);
    120122        return $this->enqueueUsing($job, $this->createPayload($job, $queue, $data), $queue, null, fn($payload, $queue) => $this->pushToDatabase($queue, $payload));
  • modular-connector/trunk/vendor/ares/framework/src/Foundation/Queue/Worker.php

    r3250373 r3251053  
    5050                Log::debug('Worker memory exceeded');
    5151            }
     52            \Modular\ConnectorDependencies\app()->forceDispatchScheduleRun();
    5253            return static::EXIT_MEMORY_LIMIT;
    5354        } elseif ($this->queueShouldRestart($lastRestart)) {
     
    5556                Log::debug('Worker queue should restart');
    5657            }
     58            \Modular\ConnectorDependencies\app()->forceDispatchScheduleRun();
    5759            return static::EXIT_SUCCESS;
    5860        } elseif ($options->stopWhenEmpty && is_null($job)) {
     
    6567                Log::debug('Worker max time exceeded');
    6668            }
     69            \Modular\ConnectorDependencies\app()->forceDispatchScheduleRun();
    6770            return static::EXIT_SUCCESS;
    6871        } elseif ($options->maxJobs && $jobsProcessed >= $options->maxJobs) {
     
    7073                Log::debug('Worker max jobs exceeded');
    7174            }
     75            \Modular\ConnectorDependencies\app()->forceDispatchScheduleRun();
    7276            return static::EXIT_SUCCESS;
    7377        }
  • modular-connector/trunk/vendor/ares/framework/src/Foundation/ScreenSimulation.php

    r3250373 r3251053  
    55use Modular\ConnectorDependencies\Ares\Framework\Foundation\Compatibilities\Compatibilities;
    66use Modular\ConnectorDependencies\Ares\Framework\Foundation\Http\HttpUtils;
    7 use Modular\ConnectorDependencies\Symfony\Component\HttpFoundation\Cookie;
    87class ScreenSimulation
    98{
     
    8685            require_once \ABSPATH . 'wp-admin/includes/template.php';
    8786        }
    88         $this->loadAdmin();
    89         $this->loadLogin();
     87        if (!isset($GLOBALS['hook_suffix'])) {
     88            $GLOBALS['hook_suffix'] = '';
     89        }
     90        if (HttpUtils::isMuPlugin()) {
     91            $this->loadAdmin();
     92        }
    9093        $this->forceCompability();
    9194        $this->includeUpgrader();
    92         // Force login as admin.
    93         ServerSetup::loginAs();
    9495        \Modular\ConnectorDependencies\app()->terminating(function () {
    9596            ServerSetup::logout();
     
    166167    private function loadAdmin()
    167168    {
     169        #region Simulate admin mode
     170        /**
     171         * Only we want to simulate the admin if we are in a MU Plugin.
     172         */
    168173        if (!defined('WP_ADMIN')) {
    169174            define('WP_ADMIN', \true);
     
    172177            define('WP_NETWORK_ADMIN', HttpUtils::isMultisite());
    173178        }
     179        if (!defined('WP_BLOG_ADMIN')) {
     180            define('WP_BLOG_ADMIN', \true);
     181        }
    174182        if (!defined('WP_USER_ADMIN')) {
    175183            define('WP_USER_ADMIN', \false);
    176184        }
    177         if (!defined('WP_BLOG_ADMIN')) {
    178             define('WP_BLOG_ADMIN', \true);
    179         }
    180         if (!isset($GLOBALS['hook_suffix'])) {
    181             $GLOBALS['hook_suffix'] = '';
    182         }
     185        #endregion
    183186        add_action('wp_loaded', function () {
    184187            // When we're in Direct Request (wp-load.php) or wp-cron.php, we need to load the main admin files.
     
    191194                @ob_end_clean();
    192195            }
     196            // Force login as admin.
     197            ServerSetup::loginAs();
    193198            set_current_screen();
    194199            do_action('load-update-core.php');
    195200        }, \PHP_INT_MAX);
    196     }
    197     /**
    198      * @return void
    199      */
    200     private function loadLogin()
    201     {
    202         add_filter('ares/login/match', function ($cookies, $userId, $isSecure) {
    203             if (defined('WPE_APIKEY')) {
    204                 $value = hash('sha256', 'wpe_auth_salty_dog|' . \WPE_APIKEY);
    205                 $expires = 0;
    206                 // 0 means the cookie will expire when the browser is closed.
    207                 $cookies[] = new Cookie('wpe-auth', $value, $expires, '/', '', $isSecure, \true);
    208             }
    209             return $cookies;
    210         }, 10, 3);
    211201    }
    212202    /**
  • modular-connector/trunk/vendor/composer/autoload_classmap.php

    r3250373 r3251053  
    2929    'Modular\\ConnectorDependencies\\Ares\\Framework\\Foundation\\Compatibilities\\SidekickPlugin' => $vendorDir . '/ares/framework/src/Foundation/Compatibilities/SidekickPlugin.php',
    3030    'Modular\\ConnectorDependencies\\Ares\\Framework\\Foundation\\Compatibilities\\SpamShield' => $vendorDir . '/ares/framework/src/Foundation/Compatibilities/SpamShield.php',
     31    'Modular\\ConnectorDependencies\\Ares\\Framework\\Foundation\\Compatibilities\\WPEngine' => $vendorDir . '/ares/framework/src/Foundation/Compatibilities/WPEngine.php',
    3132    'Modular\\ConnectorDependencies\\Ares\\Framework\\Foundation\\Compatibilities\\WPForms' => $vendorDir . '/ares/framework/src/Foundation/Compatibilities/WPForms.php',
    3233    'Modular\\ConnectorDependencies\\Ares\\Framework\\Foundation\\Compatibilities\\WPO365Login' => $vendorDir . '/ares/framework/src/Foundation/Compatibilities/WPO365Login.php',
  • modular-connector/trunk/vendor/composer/autoload_files.php

    r3250373 r3251053  
    77
    88return array(
    9     'f6f76cfcaf0f7aa8b914a650a148c3b3' => $vendorDir . '/symfony/polyfill-php80/bootstrap.php',
    10     '6f9548f1e967cbf85b75c7e267096016' => $vendorDir . '/symfony/polyfill-mbstring/bootstrap.php',
    11     'd5d373490fb8c92e8bad95ad3fdb6440' => $vendorDir . '/symfony/deprecation-contracts/function.php',
    12     '6a1e00b9fe6d7677317bafd1aac15ade' => $vendorDir . '/illuminate/collections/helpers.php',
    13     'bfee8ecba51a6620f3b39c4a50d78fbd' => $vendorDir . '/symfony/translation/Resources/functions.php',
    14     'd45f64ac5fb79cdf3a6ff2f0db3a6680' => $vendorDir . '/illuminate/support/helpers.php',
    15     '7ef4939a9f37e013107fb0f81a548bb6' => $vendorDir . '/symfony/polyfill-ctype/bootstrap.php',
    16     '22e65bd9490c260724574430b4f9866a' => $vendorDir . '/symfony/polyfill-php73/bootstrap.php',
    17     'b2d476fcf847a806830b6288d5cc9328' => $vendorDir . '/symfony/polyfill-intl-normalizer/bootstrap.php',
    18     '637034f97eb6388603bffd1c778ffff6' => $vendorDir . '/symfony/var-dumper/Resources/functions/dump.php',
    19     'f3dc0ff539ccc9e69da526dcb770cc71' => $vendorDir . '/symfony/polyfill-intl-grapheme/bootstrap.php',
    20     'd6ff47a701929bfba2fc09340d8eb349' => $vendorDir . '/symfony/string/Resources/functions.php',
    21     'c5a5512b7784ba985de2cdcb7b58544a' => $vendorDir . '/symfony/polyfill-intl-idn/bootstrap.php',
    22     'ae9c2c561fbd6861f972e2830c18c173' => $vendorDir . '/symfony/polyfill-php81/bootstrap.php',
    23     '65ab2613b5d97ef9161040326a8be561' => $vendorDir . '/illuminate/events/functions.php',
    24     '6a7aa20a9400c60f484ed3d17db149a0' => $vendorDir . '/opis/closure/functions.php',
    25     'e14c87cbbff865a9ba2fe809ccb3f94c' => $vendorDir . '/ralouphie/getallheaders/src/getallheaders.php',
    26     '1621985b237d177ed340530fa8add5b1' => $vendorDir . '/ramsey/uuid/src/functions.php',
    27     'a0f79844e19e517d67f53ed7fb9caff6' => $vendorDir . '/ares/framework/src/helpers.php',
    28     '27f8ed58c620530211ec4d9f1748ce28' => $vendorDir . '/ares/framework/illuminate/Foundation/helpers.php',
    29     '649c624901d96df490a19e0c32b643df' => $vendorDir . '/guzzlehttp/guzzle/src/functions_include.php',
     9    '8dff155d398c4daa09ed9270ad3a2be4' => $vendorDir . '/symfony/polyfill-php80/bootstrap.php',
     10    '8f6bf01264e109b03cdfeec826442daa' => $vendorDir . '/symfony/polyfill-mbstring/bootstrap.php',
     11    '6a75c1d30a793d02e6221abaee5dd7d9' => $vendorDir . '/symfony/deprecation-contracts/function.php',
     12    'cf486d092ad6a6b43eb0407ca7d68e05' => $vendorDir . '/illuminate/collections/helpers.php',
     13    'f0bcb0950af14e90ac17b0ffed45dc03' => $vendorDir . '/symfony/translation/Resources/functions.php',
     14    '747e63357e38eae92ce68d89eb453c42' => $vendorDir . '/illuminate/support/helpers.php',
     15    'd04dc7784562f69e5bbd231a66f9266e' => $vendorDir . '/symfony/polyfill-ctype/bootstrap.php',
     16    '1d42b9256a026fe8510f37b6d8f0fa47' => $vendorDir . '/symfony/polyfill-php73/bootstrap.php',
     17    '6269f2960495ee69cde44a6af019429b' => $vendorDir . '/symfony/polyfill-intl-normalizer/bootstrap.php',
     18    'ca6c4c4c2807a6a397ae5faf569b5c83' => $vendorDir . '/symfony/var-dumper/Resources/functions/dump.php',
     19    'c41d25d4aae9af692dfa7bff6e8a5209' => $vendorDir . '/symfony/polyfill-intl-grapheme/bootstrap.php',
     20    'e0c221805b348f70b58770cd91e70a66' => $vendorDir . '/symfony/string/Resources/functions.php',
     21    '33b57ce9075e42df5a467284862c0ced' => $vendorDir . '/symfony/polyfill-intl-idn/bootstrap.php',
     22    'ece7255e2f7d40f5617c04cc46c64110' => $vendorDir . '/symfony/polyfill-php81/bootstrap.php',
     23    'd7548a27de6e174004838087b28ed952' => $vendorDir . '/illuminate/events/functions.php',
     24    '843625cca0301a9f5e4cfa9e43c154b8' => $vendorDir . '/opis/closure/functions.php',
     25    '7533c677aa1054aa3a6dfb4b5c5f1652' => $vendorDir . '/ralouphie/getallheaders/src/getallheaders.php',
     26    '10971fbba4d1dcf7d4e5d9db1982d5b3' => $vendorDir . '/ramsey/uuid/src/functions.php',
     27    'f8a696a901c53fe85fc6ccd411f01939' => $vendorDir . '/ares/framework/src/helpers.php',
     28    '315b66755b1fad85e9e1efb82095be7e' => $vendorDir . '/ares/framework/illuminate/Foundation/helpers.php',
     29    '3a402c39fbd58abd1cc8b72d519701cd' => $vendorDir . '/guzzlehttp/guzzle/src/functions_include.php',
    3030);
  • modular-connector/trunk/vendor/composer/autoload_static.php

    r3250373 r3251053  
    88{
    99    public static $files = array (
    10         'f6f76cfcaf0f7aa8b914a650a148c3b3' => __DIR__ . '/..' . '/symfony/polyfill-php80/bootstrap.php',
    11         '6f9548f1e967cbf85b75c7e267096016' => __DIR__ . '/..' . '/symfony/polyfill-mbstring/bootstrap.php',
    12         'd5d373490fb8c92e8bad95ad3fdb6440' => __DIR__ . '/..' . '/symfony/deprecation-contracts/function.php',
    13         '6a1e00b9fe6d7677317bafd1aac15ade' => __DIR__ . '/..' . '/illuminate/collections/helpers.php',
    14         'bfee8ecba51a6620f3b39c4a50d78fbd' => __DIR__ . '/..' . '/symfony/translation/Resources/functions.php',
    15         'd45f64ac5fb79cdf3a6ff2f0db3a6680' => __DIR__ . '/..' . '/illuminate/support/helpers.php',
    16         '7ef4939a9f37e013107fb0f81a548bb6' => __DIR__ . '/..' . '/symfony/polyfill-ctype/bootstrap.php',
    17         '22e65bd9490c260724574430b4f9866a' => __DIR__ . '/..' . '/symfony/polyfill-php73/bootstrap.php',
    18         'b2d476fcf847a806830b6288d5cc9328' => __DIR__ . '/..' . '/symfony/polyfill-intl-normalizer/bootstrap.php',
    19         '637034f97eb6388603bffd1c778ffff6' => __DIR__ . '/..' . '/symfony/var-dumper/Resources/functions/dump.php',
    20         'f3dc0ff539ccc9e69da526dcb770cc71' => __DIR__ . '/..' . '/symfony/polyfill-intl-grapheme/bootstrap.php',
    21         'd6ff47a701929bfba2fc09340d8eb349' => __DIR__ . '/..' . '/symfony/string/Resources/functions.php',
    22         'c5a5512b7784ba985de2cdcb7b58544a' => __DIR__ . '/..' . '/symfony/polyfill-intl-idn/bootstrap.php',
    23         'ae9c2c561fbd6861f972e2830c18c173' => __DIR__ . '/..' . '/symfony/polyfill-php81/bootstrap.php',
    24         '65ab2613b5d97ef9161040326a8be561' => __DIR__ . '/..' . '/illuminate/events/functions.php',
    25         '6a7aa20a9400c60f484ed3d17db149a0' => __DIR__ . '/..' . '/opis/closure/functions.php',
    26         'e14c87cbbff865a9ba2fe809ccb3f94c' => __DIR__ . '/..' . '/ralouphie/getallheaders/src/getallheaders.php',
    27         '1621985b237d177ed340530fa8add5b1' => __DIR__ . '/..' . '/ramsey/uuid/src/functions.php',
    28         'a0f79844e19e517d67f53ed7fb9caff6' => __DIR__ . '/..' . '/ares/framework/src/helpers.php',
    29         '27f8ed58c620530211ec4d9f1748ce28' => __DIR__ . '/..' . '/ares/framework/illuminate/Foundation/helpers.php',
    30         '649c624901d96df490a19e0c32b643df' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/functions_include.php',
     10        '8dff155d398c4daa09ed9270ad3a2be4' => __DIR__ . '/..' . '/symfony/polyfill-php80/bootstrap.php',
     11        '8f6bf01264e109b03cdfeec826442daa' => __DIR__ . '/..' . '/symfony/polyfill-mbstring/bootstrap.php',
     12        '6a75c1d30a793d02e6221abaee5dd7d9' => __DIR__ . '/..' . '/symfony/deprecation-contracts/function.php',
     13        'cf486d092ad6a6b43eb0407ca7d68e05' => __DIR__ . '/..' . '/illuminate/collections/helpers.php',
     14        'f0bcb0950af14e90ac17b0ffed45dc03' => __DIR__ . '/..' . '/symfony/translation/Resources/functions.php',
     15        '747e63357e38eae92ce68d89eb453c42' => __DIR__ . '/..' . '/illuminate/support/helpers.php',
     16        'd04dc7784562f69e5bbd231a66f9266e' => __DIR__ . '/..' . '/symfony/polyfill-ctype/bootstrap.php',
     17        '1d42b9256a026fe8510f37b6d8f0fa47' => __DIR__ . '/..' . '/symfony/polyfill-php73/bootstrap.php',
     18        '6269f2960495ee69cde44a6af019429b' => __DIR__ . '/..' . '/symfony/polyfill-intl-normalizer/bootstrap.php',
     19        'ca6c4c4c2807a6a397ae5faf569b5c83' => __DIR__ . '/..' . '/symfony/var-dumper/Resources/functions/dump.php',
     20        'c41d25d4aae9af692dfa7bff6e8a5209' => __DIR__ . '/..' . '/symfony/polyfill-intl-grapheme/bootstrap.php',
     21        'e0c221805b348f70b58770cd91e70a66' => __DIR__ . '/..' . '/symfony/string/Resources/functions.php',
     22        '33b57ce9075e42df5a467284862c0ced' => __DIR__ . '/..' . '/symfony/polyfill-intl-idn/bootstrap.php',
     23        'ece7255e2f7d40f5617c04cc46c64110' => __DIR__ . '/..' . '/symfony/polyfill-php81/bootstrap.php',
     24        'd7548a27de6e174004838087b28ed952' => __DIR__ . '/..' . '/illuminate/events/functions.php',
     25        '843625cca0301a9f5e4cfa9e43c154b8' => __DIR__ . '/..' . '/opis/closure/functions.php',
     26        '7533c677aa1054aa3a6dfb4b5c5f1652' => __DIR__ . '/..' . '/ralouphie/getallheaders/src/getallheaders.php',
     27        '10971fbba4d1dcf7d4e5d9db1982d5b3' => __DIR__ . '/..' . '/ramsey/uuid/src/functions.php',
     28        'f8a696a901c53fe85fc6ccd411f01939' => __DIR__ . '/..' . '/ares/framework/src/helpers.php',
     29        '315b66755b1fad85e9e1efb82095be7e' => __DIR__ . '/..' . '/ares/framework/illuminate/Foundation/helpers.php',
     30        '3a402c39fbd58abd1cc8b72d519701cd' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/functions_include.php',
    3131    );
    3232
     
    434434        'Modular\\ConnectorDependencies\\Ares\\Framework\\Foundation\\Compatibilities\\SidekickPlugin' => __DIR__ . '/..' . '/ares/framework/src/Foundation/Compatibilities/SidekickPlugin.php',
    435435        'Modular\\ConnectorDependencies\\Ares\\Framework\\Foundation\\Compatibilities\\SpamShield' => __DIR__ . '/..' . '/ares/framework/src/Foundation/Compatibilities/SpamShield.php',
     436        'Modular\\ConnectorDependencies\\Ares\\Framework\\Foundation\\Compatibilities\\WPEngine' => __DIR__ . '/..' . '/ares/framework/src/Foundation/Compatibilities/WPEngine.php',
    436437        'Modular\\ConnectorDependencies\\Ares\\Framework\\Foundation\\Compatibilities\\WPForms' => __DIR__ . '/..' . '/ares/framework/src/Foundation/Compatibilities/WPForms.php',
    437438        'Modular\\ConnectorDependencies\\Ares\\Framework\\Foundation\\Compatibilities\\WPO365Login' => __DIR__ . '/..' . '/ares/framework/src/Foundation/Compatibilities/WPO365Login.php',
  • modular-connector/trunk/vendor/composer/installed.json

    r3250373 r3251053  
    33        {
    44            "name": "ares\/framework",
    5             "version": "3.3.0",
    6             "version_normalized": "3.3.0.0",
     5            "version": "3.3.2",
     6            "version_normalized": "3.3.2.0",
    77            "source": {
    88                "type": "git",
    99                "url": "[email protected]:modular\/connector\/ares.git",
    10                 "reference": "8a7e535c50c13916caa015df3913ff3d1cb1283e"
    11             },
    12             "dist": {
    13                 "type": "zip",
    14                 "url": "https:\/\/gitlab.modulards.com\/api\/v4\/projects\/modular%2Fconnector%2Fares\/repository\/archive.zip?sha=8a7e535c50c13916caa015df3913ff3d1cb1283e",
    15                 "reference": "8a7e535c50c13916caa015df3913ff3d1cb1283e",
     10                "reference": "3641d918650793f927e8c2907eee074ca711a127"
     11            },
     12            "dist": {
     13                "type": "zip",
     14                "url": "https:\/\/gitlab.modulards.com\/api\/v4\/projects\/modular%2Fconnector%2Fares\/repository\/archive.zip?sha=3641d918650793f927e8c2907eee074ca711a127",
     15                "reference": "3641d918650793f927e8c2907eee074ca711a127",
    1616                "shasum": ""
    1717            },
     
    4242                "filp\/whoops": "^2.12"
    4343            },
    44             "time": "2025-03-04T12:41:35+01:00",
     44            "time": "2025-03-05T11:49:24+01:00",
    4545            "type": "library",
    4646            "installation-source": "dist",
     
    6969            ],
    7070            "support": {
    71                 "source": "https:\/\/gitlab.modulards.com\/modular\/connector\/ares\/-\/tree\/3.3.0",
     71                "source": "https:\/\/gitlab.modulards.com\/modular\/connector\/ares\/-\/tree\/3.3.2",
    7272                "issues": "https:\/\/gitlab.modulards.com\/modular\/connector\/ares\/-\/issues"
    7373            },
  • modular-connector/trunk/vendor/composer/installed.php

    r3250373 r3251053  
    33namespace Modular\ConnectorDependencies;
    44
    5 return array('root' => array('name' => 'modular/connector', 'pretty_version' => 'dev-master', 'version' => 'dev-master', 'reference' => 'b04c294c58d64d513b0fa8faed0f129b12a345c0', 'type' => 'wordpres-plugin', 'install_path' => __DIR__ . '/../../', 'aliases' => array(), 'dev' => \true), 'versions' => array('ares/framework' => array('pretty_version' => '3.3.0', 'version' => '3.3.0.0', 'reference' => '8a7e535c50c13916caa015df3913ff3d1cb1283e', '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.2', 'version' => '7.9.2.0', 'reference' => 'd281ed313b989f213357e3be1a179f02196ac99b', 'type' => 'library', 'install_path' => __DIR__ . '/../guzzlehttp/guzzle', 'aliases' => array(), 'dev_requirement' => \false), 'guzzlehttp/promises' => array('pretty_version' => '2.0.4', 'version' => '2.0.4.0', 'reference' => 'f9c436286ab2892c7db7be8c8da4ef61ccf7b455', 'type' => 'library', 'install_path' => __DIR__ . '/../guzzlehttp/promises', 'aliases' => array(), 'dev_requirement' => \false), 'guzzlehttp/psr7' => array('pretty_version' => '2.7.0', 'version' => '2.7.0.0', 'reference' => 'a70f5c95fb43bc83f07c9c948baa0dc1829bf201', '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' => 'b04c294c58d64d513b0fa8faed0f129b12a345c0', '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' => '338bf1ca45d66ab7e47d85b314512f194a711726', 'type' => 'wordpres-plugin', 'install_path' => __DIR__ . '/../../', 'aliases' => array(), 'dev' => \true), 'versions' => array('ares/framework' => array('pretty_version' => '3.3.2', 'version' => '3.3.2.0', 'reference' => '3641d918650793f927e8c2907eee074ca711a127', '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.2', 'version' => '7.9.2.0', 'reference' => 'd281ed313b989f213357e3be1a179f02196ac99b', 'type' => 'library', 'install_path' => __DIR__ . '/../guzzlehttp/guzzle', 'aliases' => array(), 'dev_requirement' => \false), 'guzzlehttp/promises' => array('pretty_version' => '2.0.4', 'version' => '2.0.4.0', 'reference' => 'f9c436286ab2892c7db7be8c8da4ef61ccf7b455', 'type' => 'library', 'install_path' => __DIR__ . '/../guzzlehttp/promises', 'aliases' => array(), 'dev_requirement' => \false), 'guzzlehttp/psr7' => array('pretty_version' => '2.7.0', 'version' => '2.7.0.0', 'reference' => 'a70f5c95fb43bc83f07c9c948baa0dc1829bf201', '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' => '338bf1ca45d66ab7e47d85b314512f194a711726', '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

    r3250373 r3251053  
    1515    $GLOBALS['__composer_autoload_files'] = \array_merge(
    1616        $existingComposerAutoloadFiles,
    17         \array_fill_keys(['7ef4939a9f37e013107fb0f81a548bb6', '9eaa6b0f3f04e58e17ae5ecb754ea313', 'f3dc0ff539ccc9e69da526dcb770cc71', 'acbe0d033c55cd0a032b415e08d14f4c', 'c5a5512b7784ba985de2cdcb7b58544a', 'b48cbeb76a71e226a23fa64ac2b94dc6', 'b2d476fcf847a806830b6288d5cc9328', '36dfd6ed9dd74e8062aa61f09caf8554', '6f9548f1e967cbf85b75c7e267096016', '5928a00fa978807cf85d90ec3f4b0147', '22e65bd9490c260724574430b4f9866a', 'f6f76cfcaf0f7aa8b914a650a148c3b3', 'ae9c2c561fbd6861f972e2830c18c173', '28099935d0ea91a1b5e09408e356eacb', '99b27172349c9ec3abea78f62e2938bb', '9250916e8af80e0d1bb31401fd2e15a7', '674e404d8857dd99db32bc218bb5643a', 'b178954ba4692b8876c08a4a97e6ce23', 'c5e5dfa7f2077b89dbc43523332b50aa', '83cc8b953df9a6f7e51f674d84d57730', 'a875add15ea9a7df1a6c0c26cc9e4590', '1cbb53d50065225a14c2360be2ccbf6f', '54b9ab13bc86d8251a04a939888e357e', 'a89966141ddd51b9b7e868bc3b2f9bb0', '7edcabe1b67fbb38f4972a722bbbb429', 'f49032536fdd06afd9df7191c3f21453', '51421aa3e5e8003b70a289762d146a2a', '7bdb062931f6e7102434c3ad28423eb6', '18e965175c6bcd96deba6bc791a44373', '7b0b5d7b98f96ad751222ae5cc98cfcb', 'd1fb64fd99fc22e28e29a95cc0ea533a'], true)
     17        \array_fill_keys(['d04dc7784562f69e5bbd231a66f9266e', '9eaa6b0f3f04e58e17ae5ecb754ea313', 'c41d25d4aae9af692dfa7bff6e8a5209', 'acbe0d033c55cd0a032b415e08d14f4c', '33b57ce9075e42df5a467284862c0ced', 'b48cbeb76a71e226a23fa64ac2b94dc6', '6269f2960495ee69cde44a6af019429b', '36dfd6ed9dd74e8062aa61f09caf8554', '8f6bf01264e109b03cdfeec826442daa', '5928a00fa978807cf85d90ec3f4b0147', '1d42b9256a026fe8510f37b6d8f0fa47', '8dff155d398c4daa09ed9270ad3a2be4', 'ece7255e2f7d40f5617c04cc46c64110', '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.