Plugin Directory

Changeset 3353645


Ignore:
Timestamp:
09/01/2025 06:18:26 AM (7 months ago)
Author:
gdatavaas
Message:

release 3.2.8

Location:
gdata-antivirus
Files:
16 edited
1 copied

Legend:

Unmodified
Added
Removed
  • gdata-antivirus/tags/3.2.8/Readme.txt

    r3352065 r3353645  
    55Tested up to: 6.8
    66Requires PHP: 8.1
    7 Stable tag: 3.2.7
     7Stable tag: 3.2.8
    88License: GNU General Public License v3.0
    99License URI: https://github.com/GDATASoftwareAG/vaas/blob/main/LICENSE
     
    5656
    5757== Changelog ==
     58
     59= 3.2.8 =
     60
     61* dependency updates
    5862
    5963= 3.2.7 =
  • gdata-antivirus/tags/3.2.8/composer.json

    r3352065 r3353645  
    11{
    22    "name": "gdatacyberdefenseag\/gdata-antivirus",
    3     "version": "3.2.7",
     3    "version": "3.2.8",
    44    "autoload": {
    55        "psr-4": {
  • gdata-antivirus/tags/3.2.8/composer.lock

    r3352065 r3353645  
    640640        {
    641641            "name": "amphp/parallel",
    642             "version": "v2.3.1",
     642            "version": "v2.3.2",
    643643            "source": {
    644644                "type": "git",
    645645                "url": "https://github.com/amphp/parallel.git",
    646                 "reference": "5113111de02796a782f5d90767455e7391cca190"
    647             },
    648             "dist": {
    649                 "type": "zip",
    650                 "url": "https://api.github.com/repos/amphp/parallel/zipball/5113111de02796a782f5d90767455e7391cca190",
    651                 "reference": "5113111de02796a782f5d90767455e7391cca190",
     646                "reference": "321b45ae771d9c33a068186b24117e3cd1c48dce"
     647            },
     648            "dist": {
     649                "type": "zip",
     650                "url": "https://api.github.com/repos/amphp/parallel/zipball/321b45ae771d9c33a068186b24117e3cd1c48dce",
     651                "reference": "321b45ae771d9c33a068186b24117e3cd1c48dce",
    652652                "shasum": ""
    653653            },
     
    712712            "support": {
    713713                "issues": "https://github.com/amphp/parallel/issues",
    714                 "source": "https://github.com/amphp/parallel/tree/v2.3.1"
     714                "source": "https://github.com/amphp/parallel/tree/v2.3.2"
    715715            },
    716716            "funding": [
     
    720720                }
    721721            ],
    722             "time": "2024-12-21T01:56:09+00:00"
     722            "time": "2025-08-27T21:55:40+00:00"
    723723        },
    724724        {
  • gdata-antivirus/tags/3.2.8/gdata-antivirus.php

    r3352065 r3353645  
    1212 * @wordpress-plugin
    1313 * Plugin Name: G DATA Antivirus
    14  * Version: 3.2.7
     14 * Version: 3.2.8
    1515 * Requires at least: 6.2
    1616 * Tested up to: 6.8
  • gdata-antivirus/tags/3.2.8/vendor/amphp/parallel/src/Worker/ContextWorkerPool.php

    r3181695 r3353645  
    171171    public function getWorker(): Worker
    172172    {
    173         return new Internal\PooledWorker($this->pull(), $this->push);
     173        $worker = $this->pull();
     174        return new Internal\PooledWorker($worker, $this->push);
    174175    }
    175176    /**
  • gdata-antivirus/tags/3.2.8/vendor/amphp/parallel/src/Worker/Internal/TaskSubmission.php

    r3169198 r3353645  
    1313    {
    1414        $this->task = $task;
    15         parent::__construct(self::$nextId++);
     15        $id = self::$nextId;
     16        \PHP_VERSION_ID >= 80300 ? self::$nextId = \str_increment(self::$nextId) : ++self::$nextId;
     17        parent::__construct($id);
    1618    }
    1719    public function getTask(): Task
  • gdata-antivirus/tags/3.2.8/vendor/composer/installed.json

    r3352065 r3353645  
    658658        {
    659659            "name": "amphp\/parallel",
    660             "version": "v2.3.1",
    661             "version_normalized": "2.3.1.0",
     660            "version": "v2.3.2",
     661            "version_normalized": "2.3.2.0",
    662662            "source": {
    663663                "type": "git",
    664664                "url": "https:\/\/github.com\/amphp\/parallel.git",
    665                 "reference": "5113111de02796a782f5d90767455e7391cca190"
    666             },
    667             "dist": {
    668                 "type": "zip",
    669                 "url": "https:\/\/api.github.com\/repos\/amphp\/parallel\/zipball\/5113111de02796a782f5d90767455e7391cca190",
    670                 "reference": "5113111de02796a782f5d90767455e7391cca190",
     665                "reference": "321b45ae771d9c33a068186b24117e3cd1c48dce"
     666            },
     667            "dist": {
     668                "type": "zip",
     669                "url": "https:\/\/api.github.com\/repos\/amphp\/parallel\/zipball\/321b45ae771d9c33a068186b24117e3cd1c48dce",
     670                "reference": "321b45ae771d9c33a068186b24117e3cd1c48dce",
    671671                "shasum": ""
    672672            },
     
    690690                "psalm\/phar": "^5.18"
    691691            },
    692             "time": "2024-12-21T01:56:09+00:00",
     692            "time": "2025-08-27T21:55:40+00:00",
    693693            "type": "library",
    694694            "installation-source": "dist",
     
    733733            "support": {
    734734                "issues": "https:\/\/github.com\/amphp\/parallel\/issues",
    735                 "source": "https:\/\/github.com\/amphp\/parallel\/tree\/v2.3.1"
     735                "source": "https:\/\/github.com\/amphp\/parallel\/tree\/v2.3.2"
    736736            },
    737737            "funding": [
  • gdata-antivirus/tags/3.2.8/vendor/composer/installed.php

    r3352065 r3353645  
    33namespace GDAVSCOPE;
    44
    5 return array('root' => array('name' => 'gdatacyberdefenseag/gdata-antivirus', 'pretty_version' => '1.2.3', 'version' => '1.2.3.0', 'reference' => null, 'type' => 'library', 'install_path' => __DIR__ . '/../../', 'aliases' => array(), 'dev' => \false), 'versions' => array('amphp/amp' => array('pretty_version' => 'v3.1.1', 'version' => '3.1.1.0', 'reference' => 'fa0ab33a6f47a82929c38d03ca47ebb71086a93f', 'type' => 'library', 'install_path' => __DIR__ . '/../amphp/amp', 'aliases' => array(), 'dev_requirement' => \false), 'amphp/byte-stream' => array('pretty_version' => 'v2.1.2', 'version' => '2.1.2.0', 'reference' => '55a6bd071aec26fa2a3e002618c20c35e3df1b46', 'type' => 'library', 'install_path' => __DIR__ . '/../amphp/byte-stream', 'aliases' => array(), 'dev_requirement' => \false), 'amphp/cache' => array('pretty_version' => 'v2.0.1', 'version' => '2.0.1.0', 'reference' => '46912e387e6aa94933b61ea1ead9cf7540b7797c', 'type' => 'library', 'install_path' => __DIR__ . '/../amphp/cache', 'aliases' => array(), 'dev_requirement' => \false), 'amphp/dns' => array('pretty_version' => 'v2.4.0', 'version' => '2.4.0.0', 'reference' => '78eb3db5fc69bf2fc0cb503c4fcba667bc223c71', 'type' => 'library', 'install_path' => __DIR__ . '/../amphp/dns', 'aliases' => array(), 'dev_requirement' => \false), 'amphp/file' => array('pretty_version' => 'v3.2.0', 'version' => '3.2.0.0', 'reference' => '28b38a805d2c235bb581d24415e78a42cd03aedc', 'type' => 'library', 'install_path' => __DIR__ . '/../amphp/file', 'aliases' => array(), 'dev_requirement' => \false), 'amphp/hpack' => array('pretty_version' => 'v3.2.1', 'version' => '3.2.1.0', 'reference' => '4f293064b15682a2b178b1367ddf0b8b5feb0239', 'type' => 'library', 'install_path' => __DIR__ . '/../amphp/hpack', 'aliases' => array(), 'dev_requirement' => \false), 'amphp/http' => array('pretty_version' => 'v2.1.2', 'version' => '2.1.2.0', 'reference' => '3680d80bd38b5d6f3c2cef2214ca6dd6cef26588', 'type' => 'library', 'install_path' => __DIR__ . '/../amphp/http', 'aliases' => array(), 'dev_requirement' => \false), 'amphp/http-client' => array('pretty_version' => 'v5.3.4', 'version' => '5.3.4.0', 'reference' => '75ad21574fd632594a2dd914496647816d5106bc', 'type' => 'library', 'install_path' => __DIR__ . '/../amphp/http-client', 'aliases' => array(), 'dev_requirement' => \false), 'amphp/parallel' => array('pretty_version' => 'v2.3.1', 'version' => '2.3.1.0', 'reference' => '5113111de02796a782f5d90767455e7391cca190', 'type' => 'library', 'install_path' => __DIR__ . '/../amphp/parallel', 'aliases' => array(), 'dev_requirement' => \false), 'amphp/parser' => array('pretty_version' => 'v1.1.1', 'version' => '1.1.1.0', 'reference' => '3cf1f8b32a0171d4b1bed93d25617637a77cded7', 'type' => 'library', 'install_path' => __DIR__ . '/../amphp/parser', 'aliases' => array(), 'dev_requirement' => \false), 'amphp/pipeline' => array('pretty_version' => 'v1.2.3', 'version' => '1.2.3.0', 'reference' => '7b52598c2e9105ebcddf247fc523161581930367', 'type' => 'library', 'install_path' => __DIR__ . '/../amphp/pipeline', 'aliases' => array(), 'dev_requirement' => \false), 'amphp/process' => array('pretty_version' => 'v2.0.3', 'version' => '2.0.3.0', 'reference' => '52e08c09dec7511d5fbc1fb00d3e4e79fc77d58d', 'type' => 'library', 'install_path' => __DIR__ . '/../amphp/process', 'aliases' => array(), 'dev_requirement' => \false), 'amphp/serialization' => array('pretty_version' => 'v1.0.0', 'version' => '1.0.0.0', 'reference' => '693e77b2fb0b266c3c7d622317f881de44ae94a1', 'type' => 'library', 'install_path' => __DIR__ . '/../amphp/serialization', 'aliases' => array(), 'dev_requirement' => \false), 'amphp/socket' => array('pretty_version' => 'v2.3.1', 'version' => '2.3.1.0', 'reference' => '58e0422221825b79681b72c50c47a930be7bf1e1', 'type' => 'library', 'install_path' => __DIR__ . '/../amphp/socket', 'aliases' => array(), 'dev_requirement' => \false), 'amphp/sync' => array('pretty_version' => 'v2.3.0', 'version' => '2.3.0.0', 'reference' => '217097b785130d77cfcc58ff583cf26cd1770bf1', 'type' => 'library', 'install_path' => __DIR__ . '/../amphp/sync', 'aliases' => array(), 'dev_requirement' => \false), 'daverandom/libdns' => array('pretty_version' => 'v2.1.0', 'version' => '2.1.0.0', 'reference' => 'b84c94e8fe6b7ee4aecfe121bfe3b6177d303c8a', 'type' => 'library', 'install_path' => __DIR__ . '/../daverandom/libdns', 'aliases' => array(), 'dev_requirement' => \false), 'gdata/vaas' => array('pretty_version' => '11.0.1', 'version' => '11.0.1.0', 'reference' => '32d6c8818479af4b93385277c78bda1262e6c18b', 'type' => 'library', 'install_path' => __DIR__ . '/../gdata/vaas', 'aliases' => array(), 'dev_requirement' => \false), 'gdatacyberdefenseag/gdata-antivirus' => array('pretty_version' => '1.2.3', 'version' => '1.2.3.0', 'reference' => null, 'type' => 'library', 'install_path' => __DIR__ . '/../../', 'aliases' => array(), 'dev_requirement' => \false), 'illuminate/container' => array('pretty_version' => 'v10.48.28', 'version' => '10.48.28.0', 'reference' => 'ed6253f7dd3a67d468b2cc7a69a657e1f14c7ba3', 'type' => 'library', 'install_path' => __DIR__ . '/../illuminate/container', 'aliases' => array(), 'dev_requirement' => \false), 'illuminate/contracts' => array('pretty_version' => 'v10.48.28', 'version' => '10.48.28.0', 'reference' => 'f90663a69f926105a70b78060a31f3c64e2d1c74', 'type' => 'library', 'install_path' => __DIR__ . '/../illuminate/contracts', 'aliases' => array(), 'dev_requirement' => \false), 'kelunik/certificate' => array('pretty_version' => 'v1.1.3', 'version' => '1.1.3.0', 'reference' => '7e00d498c264d5eb4f78c69f41c8bd6719c0199e', 'type' => 'library', 'install_path' => __DIR__ . '/../kelunik/certificate', 'aliases' => array(), 'dev_requirement' => \false), 'league/uri' => array('pretty_version' => '7.5.1', 'version' => '7.5.1.0', 'reference' => '81fb5145d2644324614cc532b28efd0215bda430', 'type' => 'library', 'install_path' => __DIR__ . '/../league/uri', 'aliases' => array(), 'dev_requirement' => \false), 'league/uri-components' => array('pretty_version' => '7.5.1', 'version' => '7.5.1.0', 'reference' => '4aabf0e2f2f9421ffcacab35be33e4fb5e63c44f', 'type' => 'library', 'install_path' => __DIR__ . '/../league/uri-components', 'aliases' => array(), 'dev_requirement' => \false), 'league/uri-interfaces' => array('pretty_version' => '7.5.0', 'version' => '7.5.0.0', 'reference' => '08cfc6c4f3d811584fb09c37e2849e6a7f9b0742', 'type' => 'library', 'install_path' => __DIR__ . '/../league/uri-interfaces', 'aliases' => array(), 'dev_requirement' => \false), 'psr/container' => array('pretty_version' => '2.0.2', 'version' => '2.0.2.0', 'reference' => 'c71ecc56dfe541dbd90c5360474fbc405f8d5963', 'type' => 'library', 'install_path' => __DIR__ . '/../psr/container', 'aliases' => array(), 'dev_requirement' => \false), 'psr/container-implementation' => array('dev_requirement' => \false, 'provided' => array(0 => '1.1|2.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-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/log' => array('pretty_version' => '3.0.2', 'version' => '3.0.2.0', 'reference' => 'f16e1d5863e37f8d8c2a01719f5b34baa2b714d3', 'type' => 'library', 'install_path' => __DIR__ . '/../psr/log', 'aliases' => array(), 'dev_requirement' => \false), 'psr/simple-cache' => array('pretty_version' => '3.0.0', 'version' => '3.0.0.0', 'reference' => '764e0b3939f5ca87cb904f570ef9be2d78a07865', 'type' => 'library', 'install_path' => __DIR__ . '/../psr/simple-cache', 'aliases' => array(), 'dev_requirement' => \false), 'revolt/event-loop' => array('pretty_version' => 'v1.0.7', 'version' => '1.0.7.0', 'reference' => '09bf1bf7f7f574453efe43044b06fafe12216eb3', 'type' => 'library', 'install_path' => __DIR__ . '/../revolt/event-loop', 'aliases' => array(), 'dev_requirement' => \false)));
     5return array('root' => array('name' => 'gdatacyberdefenseag/gdata-antivirus', 'pretty_version' => '1.2.3', 'version' => '1.2.3.0', 'reference' => null, 'type' => 'library', 'install_path' => __DIR__ . '/../../', 'aliases' => array(), 'dev' => \false), 'versions' => array('amphp/amp' => array('pretty_version' => 'v3.1.1', 'version' => '3.1.1.0', 'reference' => 'fa0ab33a6f47a82929c38d03ca47ebb71086a93f', 'type' => 'library', 'install_path' => __DIR__ . '/../amphp/amp', 'aliases' => array(), 'dev_requirement' => \false), 'amphp/byte-stream' => array('pretty_version' => 'v2.1.2', 'version' => '2.1.2.0', 'reference' => '55a6bd071aec26fa2a3e002618c20c35e3df1b46', 'type' => 'library', 'install_path' => __DIR__ . '/../amphp/byte-stream', 'aliases' => array(), 'dev_requirement' => \false), 'amphp/cache' => array('pretty_version' => 'v2.0.1', 'version' => '2.0.1.0', 'reference' => '46912e387e6aa94933b61ea1ead9cf7540b7797c', 'type' => 'library', 'install_path' => __DIR__ . '/../amphp/cache', 'aliases' => array(), 'dev_requirement' => \false), 'amphp/dns' => array('pretty_version' => 'v2.4.0', 'version' => '2.4.0.0', 'reference' => '78eb3db5fc69bf2fc0cb503c4fcba667bc223c71', 'type' => 'library', 'install_path' => __DIR__ . '/../amphp/dns', 'aliases' => array(), 'dev_requirement' => \false), 'amphp/file' => array('pretty_version' => 'v3.2.0', 'version' => '3.2.0.0', 'reference' => '28b38a805d2c235bb581d24415e78a42cd03aedc', 'type' => 'library', 'install_path' => __DIR__ . '/../amphp/file', 'aliases' => array(), 'dev_requirement' => \false), 'amphp/hpack' => array('pretty_version' => 'v3.2.1', 'version' => '3.2.1.0', 'reference' => '4f293064b15682a2b178b1367ddf0b8b5feb0239', 'type' => 'library', 'install_path' => __DIR__ . '/../amphp/hpack', 'aliases' => array(), 'dev_requirement' => \false), 'amphp/http' => array('pretty_version' => 'v2.1.2', 'version' => '2.1.2.0', 'reference' => '3680d80bd38b5d6f3c2cef2214ca6dd6cef26588', 'type' => 'library', 'install_path' => __DIR__ . '/../amphp/http', 'aliases' => array(), 'dev_requirement' => \false), 'amphp/http-client' => array('pretty_version' => 'v5.3.4', 'version' => '5.3.4.0', 'reference' => '75ad21574fd632594a2dd914496647816d5106bc', 'type' => 'library', 'install_path' => __DIR__ . '/../amphp/http-client', 'aliases' => array(), 'dev_requirement' => \false), 'amphp/parallel' => array('pretty_version' => 'v2.3.2', 'version' => '2.3.2.0', 'reference' => '321b45ae771d9c33a068186b24117e3cd1c48dce', 'type' => 'library', 'install_path' => __DIR__ . '/../amphp/parallel', 'aliases' => array(), 'dev_requirement' => \false), 'amphp/parser' => array('pretty_version' => 'v1.1.1', 'version' => '1.1.1.0', 'reference' => '3cf1f8b32a0171d4b1bed93d25617637a77cded7', 'type' => 'library', 'install_path' => __DIR__ . '/../amphp/parser', 'aliases' => array(), 'dev_requirement' => \false), 'amphp/pipeline' => array('pretty_version' => 'v1.2.3', 'version' => '1.2.3.0', 'reference' => '7b52598c2e9105ebcddf247fc523161581930367', 'type' => 'library', 'install_path' => __DIR__ . '/../amphp/pipeline', 'aliases' => array(), 'dev_requirement' => \false), 'amphp/process' => array('pretty_version' => 'v2.0.3', 'version' => '2.0.3.0', 'reference' => '52e08c09dec7511d5fbc1fb00d3e4e79fc77d58d', 'type' => 'library', 'install_path' => __DIR__ . '/../amphp/process', 'aliases' => array(), 'dev_requirement' => \false), 'amphp/serialization' => array('pretty_version' => 'v1.0.0', 'version' => '1.0.0.0', 'reference' => '693e77b2fb0b266c3c7d622317f881de44ae94a1', 'type' => 'library', 'install_path' => __DIR__ . '/../amphp/serialization', 'aliases' => array(), 'dev_requirement' => \false), 'amphp/socket' => array('pretty_version' => 'v2.3.1', 'version' => '2.3.1.0', 'reference' => '58e0422221825b79681b72c50c47a930be7bf1e1', 'type' => 'library', 'install_path' => __DIR__ . '/../amphp/socket', 'aliases' => array(), 'dev_requirement' => \false), 'amphp/sync' => array('pretty_version' => 'v2.3.0', 'version' => '2.3.0.0', 'reference' => '217097b785130d77cfcc58ff583cf26cd1770bf1', 'type' => 'library', 'install_path' => __DIR__ . '/../amphp/sync', 'aliases' => array(), 'dev_requirement' => \false), 'daverandom/libdns' => array('pretty_version' => 'v2.1.0', 'version' => '2.1.0.0', 'reference' => 'b84c94e8fe6b7ee4aecfe121bfe3b6177d303c8a', 'type' => 'library', 'install_path' => __DIR__ . '/../daverandom/libdns', 'aliases' => array(), 'dev_requirement' => \false), 'gdata/vaas' => array('pretty_version' => '11.0.1', 'version' => '11.0.1.0', 'reference' => '32d6c8818479af4b93385277c78bda1262e6c18b', 'type' => 'library', 'install_path' => __DIR__ . '/../gdata/vaas', 'aliases' => array(), 'dev_requirement' => \false), 'gdatacyberdefenseag/gdata-antivirus' => array('pretty_version' => '1.2.3', 'version' => '1.2.3.0', 'reference' => null, 'type' => 'library', 'install_path' => __DIR__ . '/../../', 'aliases' => array(), 'dev_requirement' => \false), 'illuminate/container' => array('pretty_version' => 'v10.48.28', 'version' => '10.48.28.0', 'reference' => 'ed6253f7dd3a67d468b2cc7a69a657e1f14c7ba3', 'type' => 'library', 'install_path' => __DIR__ . '/../illuminate/container', 'aliases' => array(), 'dev_requirement' => \false), 'illuminate/contracts' => array('pretty_version' => 'v10.48.28', 'version' => '10.48.28.0', 'reference' => 'f90663a69f926105a70b78060a31f3c64e2d1c74', 'type' => 'library', 'install_path' => __DIR__ . '/../illuminate/contracts', 'aliases' => array(), 'dev_requirement' => \false), 'kelunik/certificate' => array('pretty_version' => 'v1.1.3', 'version' => '1.1.3.0', 'reference' => '7e00d498c264d5eb4f78c69f41c8bd6719c0199e', 'type' => 'library', 'install_path' => __DIR__ . '/../kelunik/certificate', 'aliases' => array(), 'dev_requirement' => \false), 'league/uri' => array('pretty_version' => '7.5.1', 'version' => '7.5.1.0', 'reference' => '81fb5145d2644324614cc532b28efd0215bda430', 'type' => 'library', 'install_path' => __DIR__ . '/../league/uri', 'aliases' => array(), 'dev_requirement' => \false), 'league/uri-components' => array('pretty_version' => '7.5.1', 'version' => '7.5.1.0', 'reference' => '4aabf0e2f2f9421ffcacab35be33e4fb5e63c44f', 'type' => 'library', 'install_path' => __DIR__ . '/../league/uri-components', 'aliases' => array(), 'dev_requirement' => \false), 'league/uri-interfaces' => array('pretty_version' => '7.5.0', 'version' => '7.5.0.0', 'reference' => '08cfc6c4f3d811584fb09c37e2849e6a7f9b0742', 'type' => 'library', 'install_path' => __DIR__ . '/../league/uri-interfaces', 'aliases' => array(), 'dev_requirement' => \false), 'psr/container' => array('pretty_version' => '2.0.2', 'version' => '2.0.2.0', 'reference' => 'c71ecc56dfe541dbd90c5360474fbc405f8d5963', 'type' => 'library', 'install_path' => __DIR__ . '/../psr/container', 'aliases' => array(), 'dev_requirement' => \false), 'psr/container-implementation' => array('dev_requirement' => \false, 'provided' => array(0 => '1.1|2.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-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/log' => array('pretty_version' => '3.0.2', 'version' => '3.0.2.0', 'reference' => 'f16e1d5863e37f8d8c2a01719f5b34baa2b714d3', 'type' => 'library', 'install_path' => __DIR__ . '/../psr/log', 'aliases' => array(), 'dev_requirement' => \false), 'psr/simple-cache' => array('pretty_version' => '3.0.0', 'version' => '3.0.0.0', 'reference' => '764e0b3939f5ca87cb904f570ef9be2d78a07865', 'type' => 'library', 'install_path' => __DIR__ . '/../psr/simple-cache', 'aliases' => array(), 'dev_requirement' => \false), 'revolt/event-loop' => array('pretty_version' => 'v1.0.7', 'version' => '1.0.7.0', 'reference' => '09bf1bf7f7f574453efe43044b06fafe12216eb3', 'type' => 'library', 'install_path' => __DIR__ . '/../revolt/event-loop', 'aliases' => array(), 'dev_requirement' => \false)));
  • gdata-antivirus/trunk/Readme.txt

    r3352065 r3353645  
    55Tested up to: 6.8
    66Requires PHP: 8.1
    7 Stable tag: 3.2.7
     7Stable tag: 3.2.8
    88License: GNU General Public License v3.0
    99License URI: https://github.com/GDATASoftwareAG/vaas/blob/main/LICENSE
     
    5656
    5757== Changelog ==
     58
     59= 3.2.8 =
     60
     61* dependency updates
    5862
    5963= 3.2.7 =
  • gdata-antivirus/trunk/composer.json

    r3352065 r3353645  
    11{
    22    "name": "gdatacyberdefenseag\/gdata-antivirus",
    3     "version": "3.2.7",
     3    "version": "3.2.8",
    44    "autoload": {
    55        "psr-4": {
  • gdata-antivirus/trunk/composer.lock

    r3352065 r3353645  
    640640        {
    641641            "name": "amphp/parallel",
    642             "version": "v2.3.1",
     642            "version": "v2.3.2",
    643643            "source": {
    644644                "type": "git",
    645645                "url": "https://github.com/amphp/parallel.git",
    646                 "reference": "5113111de02796a782f5d90767455e7391cca190"
    647             },
    648             "dist": {
    649                 "type": "zip",
    650                 "url": "https://api.github.com/repos/amphp/parallel/zipball/5113111de02796a782f5d90767455e7391cca190",
    651                 "reference": "5113111de02796a782f5d90767455e7391cca190",
     646                "reference": "321b45ae771d9c33a068186b24117e3cd1c48dce"
     647            },
     648            "dist": {
     649                "type": "zip",
     650                "url": "https://api.github.com/repos/amphp/parallel/zipball/321b45ae771d9c33a068186b24117e3cd1c48dce",
     651                "reference": "321b45ae771d9c33a068186b24117e3cd1c48dce",
    652652                "shasum": ""
    653653            },
     
    712712            "support": {
    713713                "issues": "https://github.com/amphp/parallel/issues",
    714                 "source": "https://github.com/amphp/parallel/tree/v2.3.1"
     714                "source": "https://github.com/amphp/parallel/tree/v2.3.2"
    715715            },
    716716            "funding": [
     
    720720                }
    721721            ],
    722             "time": "2024-12-21T01:56:09+00:00"
     722            "time": "2025-08-27T21:55:40+00:00"
    723723        },
    724724        {
  • gdata-antivirus/trunk/gdata-antivirus.php

    r3352065 r3353645  
    1212 * @wordpress-plugin
    1313 * Plugin Name: G DATA Antivirus
    14  * Version: 3.2.7
     14 * Version: 3.2.8
    1515 * Requires at least: 6.2
    1616 * Tested up to: 6.8
  • gdata-antivirus/trunk/vendor/amphp/parallel/src/Worker/ContextWorkerPool.php

    r3181695 r3353645  
    171171    public function getWorker(): Worker
    172172    {
    173         return new Internal\PooledWorker($this->pull(), $this->push);
     173        $worker = $this->pull();
     174        return new Internal\PooledWorker($worker, $this->push);
    174175    }
    175176    /**
  • gdata-antivirus/trunk/vendor/amphp/parallel/src/Worker/Internal/TaskSubmission.php

    r3169198 r3353645  
    1313    {
    1414        $this->task = $task;
    15         parent::__construct(self::$nextId++);
     15        $id = self::$nextId;
     16        \PHP_VERSION_ID >= 80300 ? self::$nextId = \str_increment(self::$nextId) : ++self::$nextId;
     17        parent::__construct($id);
    1618    }
    1719    public function getTask(): Task
  • gdata-antivirus/trunk/vendor/composer/installed.json

    r3352065 r3353645  
    658658        {
    659659            "name": "amphp\/parallel",
    660             "version": "v2.3.1",
    661             "version_normalized": "2.3.1.0",
     660            "version": "v2.3.2",
     661            "version_normalized": "2.3.2.0",
    662662            "source": {
    663663                "type": "git",
    664664                "url": "https:\/\/github.com\/amphp\/parallel.git",
    665                 "reference": "5113111de02796a782f5d90767455e7391cca190"
    666             },
    667             "dist": {
    668                 "type": "zip",
    669                 "url": "https:\/\/api.github.com\/repos\/amphp\/parallel\/zipball\/5113111de02796a782f5d90767455e7391cca190",
    670                 "reference": "5113111de02796a782f5d90767455e7391cca190",
     665                "reference": "321b45ae771d9c33a068186b24117e3cd1c48dce"
     666            },
     667            "dist": {
     668                "type": "zip",
     669                "url": "https:\/\/api.github.com\/repos\/amphp\/parallel\/zipball\/321b45ae771d9c33a068186b24117e3cd1c48dce",
     670                "reference": "321b45ae771d9c33a068186b24117e3cd1c48dce",
    671671                "shasum": ""
    672672            },
     
    690690                "psalm\/phar": "^5.18"
    691691            },
    692             "time": "2024-12-21T01:56:09+00:00",
     692            "time": "2025-08-27T21:55:40+00:00",
    693693            "type": "library",
    694694            "installation-source": "dist",
     
    733733            "support": {
    734734                "issues": "https:\/\/github.com\/amphp\/parallel\/issues",
    735                 "source": "https:\/\/github.com\/amphp\/parallel\/tree\/v2.3.1"
     735                "source": "https:\/\/github.com\/amphp\/parallel\/tree\/v2.3.2"
    736736            },
    737737            "funding": [
  • gdata-antivirus/trunk/vendor/composer/installed.php

    r3352065 r3353645  
    33namespace GDAVSCOPE;
    44
    5 return array('root' => array('name' => 'gdatacyberdefenseag/gdata-antivirus', 'pretty_version' => '1.2.3', 'version' => '1.2.3.0', 'reference' => null, 'type' => 'library', 'install_path' => __DIR__ . '/../../', 'aliases' => array(), 'dev' => \false), 'versions' => array('amphp/amp' => array('pretty_version' => 'v3.1.1', 'version' => '3.1.1.0', 'reference' => 'fa0ab33a6f47a82929c38d03ca47ebb71086a93f', 'type' => 'library', 'install_path' => __DIR__ . '/../amphp/amp', 'aliases' => array(), 'dev_requirement' => \false), 'amphp/byte-stream' => array('pretty_version' => 'v2.1.2', 'version' => '2.1.2.0', 'reference' => '55a6bd071aec26fa2a3e002618c20c35e3df1b46', 'type' => 'library', 'install_path' => __DIR__ . '/../amphp/byte-stream', 'aliases' => array(), 'dev_requirement' => \false), 'amphp/cache' => array('pretty_version' => 'v2.0.1', 'version' => '2.0.1.0', 'reference' => '46912e387e6aa94933b61ea1ead9cf7540b7797c', 'type' => 'library', 'install_path' => __DIR__ . '/../amphp/cache', 'aliases' => array(), 'dev_requirement' => \false), 'amphp/dns' => array('pretty_version' => 'v2.4.0', 'version' => '2.4.0.0', 'reference' => '78eb3db5fc69bf2fc0cb503c4fcba667bc223c71', 'type' => 'library', 'install_path' => __DIR__ . '/../amphp/dns', 'aliases' => array(), 'dev_requirement' => \false), 'amphp/file' => array('pretty_version' => 'v3.2.0', 'version' => '3.2.0.0', 'reference' => '28b38a805d2c235bb581d24415e78a42cd03aedc', 'type' => 'library', 'install_path' => __DIR__ . '/../amphp/file', 'aliases' => array(), 'dev_requirement' => \false), 'amphp/hpack' => array('pretty_version' => 'v3.2.1', 'version' => '3.2.1.0', 'reference' => '4f293064b15682a2b178b1367ddf0b8b5feb0239', 'type' => 'library', 'install_path' => __DIR__ . '/../amphp/hpack', 'aliases' => array(), 'dev_requirement' => \false), 'amphp/http' => array('pretty_version' => 'v2.1.2', 'version' => '2.1.2.0', 'reference' => '3680d80bd38b5d6f3c2cef2214ca6dd6cef26588', 'type' => 'library', 'install_path' => __DIR__ . '/../amphp/http', 'aliases' => array(), 'dev_requirement' => \false), 'amphp/http-client' => array('pretty_version' => 'v5.3.4', 'version' => '5.3.4.0', 'reference' => '75ad21574fd632594a2dd914496647816d5106bc', 'type' => 'library', 'install_path' => __DIR__ . '/../amphp/http-client', 'aliases' => array(), 'dev_requirement' => \false), 'amphp/parallel' => array('pretty_version' => 'v2.3.1', 'version' => '2.3.1.0', 'reference' => '5113111de02796a782f5d90767455e7391cca190', 'type' => 'library', 'install_path' => __DIR__ . '/../amphp/parallel', 'aliases' => array(), 'dev_requirement' => \false), 'amphp/parser' => array('pretty_version' => 'v1.1.1', 'version' => '1.1.1.0', 'reference' => '3cf1f8b32a0171d4b1bed93d25617637a77cded7', 'type' => 'library', 'install_path' => __DIR__ . '/../amphp/parser', 'aliases' => array(), 'dev_requirement' => \false), 'amphp/pipeline' => array('pretty_version' => 'v1.2.3', 'version' => '1.2.3.0', 'reference' => '7b52598c2e9105ebcddf247fc523161581930367', 'type' => 'library', 'install_path' => __DIR__ . '/../amphp/pipeline', 'aliases' => array(), 'dev_requirement' => \false), 'amphp/process' => array('pretty_version' => 'v2.0.3', 'version' => '2.0.3.0', 'reference' => '52e08c09dec7511d5fbc1fb00d3e4e79fc77d58d', 'type' => 'library', 'install_path' => __DIR__ . '/../amphp/process', 'aliases' => array(), 'dev_requirement' => \false), 'amphp/serialization' => array('pretty_version' => 'v1.0.0', 'version' => '1.0.0.0', 'reference' => '693e77b2fb0b266c3c7d622317f881de44ae94a1', 'type' => 'library', 'install_path' => __DIR__ . '/../amphp/serialization', 'aliases' => array(), 'dev_requirement' => \false), 'amphp/socket' => array('pretty_version' => 'v2.3.1', 'version' => '2.3.1.0', 'reference' => '58e0422221825b79681b72c50c47a930be7bf1e1', 'type' => 'library', 'install_path' => __DIR__ . '/../amphp/socket', 'aliases' => array(), 'dev_requirement' => \false), 'amphp/sync' => array('pretty_version' => 'v2.3.0', 'version' => '2.3.0.0', 'reference' => '217097b785130d77cfcc58ff583cf26cd1770bf1', 'type' => 'library', 'install_path' => __DIR__ . '/../amphp/sync', 'aliases' => array(), 'dev_requirement' => \false), 'daverandom/libdns' => array('pretty_version' => 'v2.1.0', 'version' => '2.1.0.0', 'reference' => 'b84c94e8fe6b7ee4aecfe121bfe3b6177d303c8a', 'type' => 'library', 'install_path' => __DIR__ . '/../daverandom/libdns', 'aliases' => array(), 'dev_requirement' => \false), 'gdata/vaas' => array('pretty_version' => '11.0.1', 'version' => '11.0.1.0', 'reference' => '32d6c8818479af4b93385277c78bda1262e6c18b', 'type' => 'library', 'install_path' => __DIR__ . '/../gdata/vaas', 'aliases' => array(), 'dev_requirement' => \false), 'gdatacyberdefenseag/gdata-antivirus' => array('pretty_version' => '1.2.3', 'version' => '1.2.3.0', 'reference' => null, 'type' => 'library', 'install_path' => __DIR__ . '/../../', 'aliases' => array(), 'dev_requirement' => \false), 'illuminate/container' => array('pretty_version' => 'v10.48.28', 'version' => '10.48.28.0', 'reference' => 'ed6253f7dd3a67d468b2cc7a69a657e1f14c7ba3', 'type' => 'library', 'install_path' => __DIR__ . '/../illuminate/container', 'aliases' => array(), 'dev_requirement' => \false), 'illuminate/contracts' => array('pretty_version' => 'v10.48.28', 'version' => '10.48.28.0', 'reference' => 'f90663a69f926105a70b78060a31f3c64e2d1c74', 'type' => 'library', 'install_path' => __DIR__ . '/../illuminate/contracts', 'aliases' => array(), 'dev_requirement' => \false), 'kelunik/certificate' => array('pretty_version' => 'v1.1.3', 'version' => '1.1.3.0', 'reference' => '7e00d498c264d5eb4f78c69f41c8bd6719c0199e', 'type' => 'library', 'install_path' => __DIR__ . '/../kelunik/certificate', 'aliases' => array(), 'dev_requirement' => \false), 'league/uri' => array('pretty_version' => '7.5.1', 'version' => '7.5.1.0', 'reference' => '81fb5145d2644324614cc532b28efd0215bda430', 'type' => 'library', 'install_path' => __DIR__ . '/../league/uri', 'aliases' => array(), 'dev_requirement' => \false), 'league/uri-components' => array('pretty_version' => '7.5.1', 'version' => '7.5.1.0', 'reference' => '4aabf0e2f2f9421ffcacab35be33e4fb5e63c44f', 'type' => 'library', 'install_path' => __DIR__ . '/../league/uri-components', 'aliases' => array(), 'dev_requirement' => \false), 'league/uri-interfaces' => array('pretty_version' => '7.5.0', 'version' => '7.5.0.0', 'reference' => '08cfc6c4f3d811584fb09c37e2849e6a7f9b0742', 'type' => 'library', 'install_path' => __DIR__ . '/../league/uri-interfaces', 'aliases' => array(), 'dev_requirement' => \false), 'psr/container' => array('pretty_version' => '2.0.2', 'version' => '2.0.2.0', 'reference' => 'c71ecc56dfe541dbd90c5360474fbc405f8d5963', 'type' => 'library', 'install_path' => __DIR__ . '/../psr/container', 'aliases' => array(), 'dev_requirement' => \false), 'psr/container-implementation' => array('dev_requirement' => \false, 'provided' => array(0 => '1.1|2.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-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/log' => array('pretty_version' => '3.0.2', 'version' => '3.0.2.0', 'reference' => 'f16e1d5863e37f8d8c2a01719f5b34baa2b714d3', 'type' => 'library', 'install_path' => __DIR__ . '/../psr/log', 'aliases' => array(), 'dev_requirement' => \false), 'psr/simple-cache' => array('pretty_version' => '3.0.0', 'version' => '3.0.0.0', 'reference' => '764e0b3939f5ca87cb904f570ef9be2d78a07865', 'type' => 'library', 'install_path' => __DIR__ . '/../psr/simple-cache', 'aliases' => array(), 'dev_requirement' => \false), 'revolt/event-loop' => array('pretty_version' => 'v1.0.7', 'version' => '1.0.7.0', 'reference' => '09bf1bf7f7f574453efe43044b06fafe12216eb3', 'type' => 'library', 'install_path' => __DIR__ . '/../revolt/event-loop', 'aliases' => array(), 'dev_requirement' => \false)));
     5return array('root' => array('name' => 'gdatacyberdefenseag/gdata-antivirus', 'pretty_version' => '1.2.3', 'version' => '1.2.3.0', 'reference' => null, 'type' => 'library', 'install_path' => __DIR__ . '/../../', 'aliases' => array(), 'dev' => \false), 'versions' => array('amphp/amp' => array('pretty_version' => 'v3.1.1', 'version' => '3.1.1.0', 'reference' => 'fa0ab33a6f47a82929c38d03ca47ebb71086a93f', 'type' => 'library', 'install_path' => __DIR__ . '/../amphp/amp', 'aliases' => array(), 'dev_requirement' => \false), 'amphp/byte-stream' => array('pretty_version' => 'v2.1.2', 'version' => '2.1.2.0', 'reference' => '55a6bd071aec26fa2a3e002618c20c35e3df1b46', 'type' => 'library', 'install_path' => __DIR__ . '/../amphp/byte-stream', 'aliases' => array(), 'dev_requirement' => \false), 'amphp/cache' => array('pretty_version' => 'v2.0.1', 'version' => '2.0.1.0', 'reference' => '46912e387e6aa94933b61ea1ead9cf7540b7797c', 'type' => 'library', 'install_path' => __DIR__ . '/../amphp/cache', 'aliases' => array(), 'dev_requirement' => \false), 'amphp/dns' => array('pretty_version' => 'v2.4.0', 'version' => '2.4.0.0', 'reference' => '78eb3db5fc69bf2fc0cb503c4fcba667bc223c71', 'type' => 'library', 'install_path' => __DIR__ . '/../amphp/dns', 'aliases' => array(), 'dev_requirement' => \false), 'amphp/file' => array('pretty_version' => 'v3.2.0', 'version' => '3.2.0.0', 'reference' => '28b38a805d2c235bb581d24415e78a42cd03aedc', 'type' => 'library', 'install_path' => __DIR__ . '/../amphp/file', 'aliases' => array(), 'dev_requirement' => \false), 'amphp/hpack' => array('pretty_version' => 'v3.2.1', 'version' => '3.2.1.0', 'reference' => '4f293064b15682a2b178b1367ddf0b8b5feb0239', 'type' => 'library', 'install_path' => __DIR__ . '/../amphp/hpack', 'aliases' => array(), 'dev_requirement' => \false), 'amphp/http' => array('pretty_version' => 'v2.1.2', 'version' => '2.1.2.0', 'reference' => '3680d80bd38b5d6f3c2cef2214ca6dd6cef26588', 'type' => 'library', 'install_path' => __DIR__ . '/../amphp/http', 'aliases' => array(), 'dev_requirement' => \false), 'amphp/http-client' => array('pretty_version' => 'v5.3.4', 'version' => '5.3.4.0', 'reference' => '75ad21574fd632594a2dd914496647816d5106bc', 'type' => 'library', 'install_path' => __DIR__ . '/../amphp/http-client', 'aliases' => array(), 'dev_requirement' => \false), 'amphp/parallel' => array('pretty_version' => 'v2.3.2', 'version' => '2.3.2.0', 'reference' => '321b45ae771d9c33a068186b24117e3cd1c48dce', 'type' => 'library', 'install_path' => __DIR__ . '/../amphp/parallel', 'aliases' => array(), 'dev_requirement' => \false), 'amphp/parser' => array('pretty_version' => 'v1.1.1', 'version' => '1.1.1.0', 'reference' => '3cf1f8b32a0171d4b1bed93d25617637a77cded7', 'type' => 'library', 'install_path' => __DIR__ . '/../amphp/parser', 'aliases' => array(), 'dev_requirement' => \false), 'amphp/pipeline' => array('pretty_version' => 'v1.2.3', 'version' => '1.2.3.0', 'reference' => '7b52598c2e9105ebcddf247fc523161581930367', 'type' => 'library', 'install_path' => __DIR__ . '/../amphp/pipeline', 'aliases' => array(), 'dev_requirement' => \false), 'amphp/process' => array('pretty_version' => 'v2.0.3', 'version' => '2.0.3.0', 'reference' => '52e08c09dec7511d5fbc1fb00d3e4e79fc77d58d', 'type' => 'library', 'install_path' => __DIR__ . '/../amphp/process', 'aliases' => array(), 'dev_requirement' => \false), 'amphp/serialization' => array('pretty_version' => 'v1.0.0', 'version' => '1.0.0.0', 'reference' => '693e77b2fb0b266c3c7d622317f881de44ae94a1', 'type' => 'library', 'install_path' => __DIR__ . '/../amphp/serialization', 'aliases' => array(), 'dev_requirement' => \false), 'amphp/socket' => array('pretty_version' => 'v2.3.1', 'version' => '2.3.1.0', 'reference' => '58e0422221825b79681b72c50c47a930be7bf1e1', 'type' => 'library', 'install_path' => __DIR__ . '/../amphp/socket', 'aliases' => array(), 'dev_requirement' => \false), 'amphp/sync' => array('pretty_version' => 'v2.3.0', 'version' => '2.3.0.0', 'reference' => '217097b785130d77cfcc58ff583cf26cd1770bf1', 'type' => 'library', 'install_path' => __DIR__ . '/../amphp/sync', 'aliases' => array(), 'dev_requirement' => \false), 'daverandom/libdns' => array('pretty_version' => 'v2.1.0', 'version' => '2.1.0.0', 'reference' => 'b84c94e8fe6b7ee4aecfe121bfe3b6177d303c8a', 'type' => 'library', 'install_path' => __DIR__ . '/../daverandom/libdns', 'aliases' => array(), 'dev_requirement' => \false), 'gdata/vaas' => array('pretty_version' => '11.0.1', 'version' => '11.0.1.0', 'reference' => '32d6c8818479af4b93385277c78bda1262e6c18b', 'type' => 'library', 'install_path' => __DIR__ . '/../gdata/vaas', 'aliases' => array(), 'dev_requirement' => \false), 'gdatacyberdefenseag/gdata-antivirus' => array('pretty_version' => '1.2.3', 'version' => '1.2.3.0', 'reference' => null, 'type' => 'library', 'install_path' => __DIR__ . '/../../', 'aliases' => array(), 'dev_requirement' => \false), 'illuminate/container' => array('pretty_version' => 'v10.48.28', 'version' => '10.48.28.0', 'reference' => 'ed6253f7dd3a67d468b2cc7a69a657e1f14c7ba3', 'type' => 'library', 'install_path' => __DIR__ . '/../illuminate/container', 'aliases' => array(), 'dev_requirement' => \false), 'illuminate/contracts' => array('pretty_version' => 'v10.48.28', 'version' => '10.48.28.0', 'reference' => 'f90663a69f926105a70b78060a31f3c64e2d1c74', 'type' => 'library', 'install_path' => __DIR__ . '/../illuminate/contracts', 'aliases' => array(), 'dev_requirement' => \false), 'kelunik/certificate' => array('pretty_version' => 'v1.1.3', 'version' => '1.1.3.0', 'reference' => '7e00d498c264d5eb4f78c69f41c8bd6719c0199e', 'type' => 'library', 'install_path' => __DIR__ . '/../kelunik/certificate', 'aliases' => array(), 'dev_requirement' => \false), 'league/uri' => array('pretty_version' => '7.5.1', 'version' => '7.5.1.0', 'reference' => '81fb5145d2644324614cc532b28efd0215bda430', 'type' => 'library', 'install_path' => __DIR__ . '/../league/uri', 'aliases' => array(), 'dev_requirement' => \false), 'league/uri-components' => array('pretty_version' => '7.5.1', 'version' => '7.5.1.0', 'reference' => '4aabf0e2f2f9421ffcacab35be33e4fb5e63c44f', 'type' => 'library', 'install_path' => __DIR__ . '/../league/uri-components', 'aliases' => array(), 'dev_requirement' => \false), 'league/uri-interfaces' => array('pretty_version' => '7.5.0', 'version' => '7.5.0.0', 'reference' => '08cfc6c4f3d811584fb09c37e2849e6a7f9b0742', 'type' => 'library', 'install_path' => __DIR__ . '/../league/uri-interfaces', 'aliases' => array(), 'dev_requirement' => \false), 'psr/container' => array('pretty_version' => '2.0.2', 'version' => '2.0.2.0', 'reference' => 'c71ecc56dfe541dbd90c5360474fbc405f8d5963', 'type' => 'library', 'install_path' => __DIR__ . '/../psr/container', 'aliases' => array(), 'dev_requirement' => \false), 'psr/container-implementation' => array('dev_requirement' => \false, 'provided' => array(0 => '1.1|2.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-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/log' => array('pretty_version' => '3.0.2', 'version' => '3.0.2.0', 'reference' => 'f16e1d5863e37f8d8c2a01719f5b34baa2b714d3', 'type' => 'library', 'install_path' => __DIR__ . '/../psr/log', 'aliases' => array(), 'dev_requirement' => \false), 'psr/simple-cache' => array('pretty_version' => '3.0.0', 'version' => '3.0.0.0', 'reference' => '764e0b3939f5ca87cb904f570ef9be2d78a07865', 'type' => 'library', 'install_path' => __DIR__ . '/../psr/simple-cache', 'aliases' => array(), 'dev_requirement' => \false), 'revolt/event-loop' => array('pretty_version' => 'v1.0.7', 'version' => '1.0.7.0', 'reference' => '09bf1bf7f7f574453efe43044b06fafe12216eb3', 'type' => 'library', 'install_path' => __DIR__ . '/../revolt/event-loop', 'aliases' => array(), 'dev_requirement' => \false)));
Note: See TracChangeset for help on using the changeset viewer.