Plugin Directory

Changeset 2947048


Ignore:
Timestamp:
08/03/2023 09:52:27 AM (2 years ago)
Author:
nanard33
Message:

Update to version 2.0.6 from GitLab (https://gitlab.com/SplashSync/Wordpress; https://gitlab.com/SplashSync/Wordpress/-/jobs/4797154544)

Location:
splash-connector
Files:
4 added
58 edited
1 copied

Legend:

Unmodified
Added
Removed
  • splash-connector/tags/2.0.6/README.md

    r2865644 r2947048  
    2121
    2222* PHP 7.4 || 8.0+
    23 * Wordpress 5.9+
     23* Wordpress 6.1+
    2424* An active Splash Sync User Account
    2525
  • splash-connector/tags/2.0.6/readme.txt

    r2914866 r2947048  
    33Donate link: http://www.splashsync.com
    44Tags: wordpress, woocommerce, splash, synchronization, e-commerce, ERP, prestashop, magento, dolibarr
    5 Requires at least: 6.0
     5Requires at least: 6.1
    66Tested up to: 6.2
    7 Stable tag: 2.0.3
     7Stable tag: 2.0.6
    88License: MIT
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    186186* Added:       PHO 8.0 && 8.1 Compatibility
    187187
     188= 2.0.6 =
     189* 2023-08-03
     190* Refactor:    Order Class Imports
     191* Added:       Colissimo Statuses Compatibility
     192* Added:       Orders & Invoices Status Encoding in Lists
     193
    188194== Upgrade Notice ==
    189195
  • splash-connector/tags/2.0.6/splash.php

    r2919687 r2947048  
    1414 */
    1515
    16 /*
     16/**
    1717 * Plugin Name: Splash Connector
    18  * Version: 2.0.2
     18 * Version: 2.0.6
    1919 * Plugin URI: https://github.com/SplashSync/Wordpress
    2020 * Description: Splash Sync Wordpress plugin.
    2121 * Author: Splash Sync
    2222 * Author URI: http://www.splashsync.com
    23  * Requires at least: 5.9
     23 * Requires at least: 6.0
    2424 * Tested up to: 6.2
    2525 *
     
    2828 *
    2929 * @package WordPress
     30 *
    3031 * @author Splash Sync
     32 *
    3133 * @since 0.0.1
    3234 */
     
    3941}
    4042
    41 define("SPLASH_SYNC_VERSION", "2.0.4");
     43define("SPLASH_SYNC_VERSION", "2.0.6");
    4244
    4345// Load plugin class files
  • splash-connector/tags/2.0.6/src/Core/InvoiceStatusManager.php

    r2865644 r2947048  
    3131            "completed", "processing",
    3232            "awaiting-shipment", "shipped",
     33            "lpc_ready_to_ship", "lpc_transit", "lpc_partial_exp", "lpc_anomaly", "lpc_delivered"
    3334        ),
    3435        InvoiceStatus::CANCELED => array(
  • splash-connector/tags/2.0.6/src/Core/OrderStatusManager.php

    r2865644 r2947048  
    3232        OrderStatus::PROCESSED => array("awaiting-shipment"),
    3333        OrderStatus::OUT_OF_STOCK => array("awaiting-shipment"),
    34         OrderStatus::TO_SHIP => array("awaiting-shipment"),
    35         OrderStatus::IN_TRANSIT => array("shipped"),
     34        OrderStatus::TO_SHIP => array("awaiting-shipment", "lpc_ready_to_ship"),
     35        OrderStatus::IN_TRANSIT => array("shipped", "lpc_transit", "lpc_partial_exp"),
    3636        OrderStatus::PICKUP => array("shipped"),
    37         OrderStatus::PROBLEM => array("shipped"),
    38         OrderStatus::DELIVERED => array("completed"),
     37        OrderStatus::PROBLEM => array("shipped", "lpc_anomaly"),
     38        OrderStatus::DELIVERED => array("completed", "lpc_delivered"),
    3939        OrderStatus::CANCELED => array("cancelled", "refunded", "failed", "trash"),
    4040    );
  • splash-connector/tags/2.0.6/src/Objects/Order.php

    r2865644 r2947048  
    1818use Exception;
    1919use Splash\Core\SplashCore      as Splash;
    20 use Splash\Local\Core\PrivacyManager;
     20use Splash\Local\Core as Managers;
    2121use Splash\Models\AbstractObject;
    22 use Splash\Models\Objects\GenericFieldsTrait;
    23 use Splash\Models\Objects\ImagesTrait;
    24 use Splash\Models\Objects\IntelParserTrait;
    25 use Splash\Models\Objects\ListsTrait;
    26 use Splash\Models\Objects\PricesTrait;
    27 use Splash\Models\Objects\SimpleFieldsTrait;
     22use Splash\Models\Objects;
    2823use WC_Order;
    2924use WP_Post;
     
    3631    //====================================================================//
    3732    // Splash Php Core Traits
    38     use IntelParserTrait;
    39     use SimpleFieldsTrait;
    40     use GenericFieldsTrait;
    41     use PricesTrait;
    42     use ImagesTrait;
    43     use ListsTrait;
     33    use Objects\IntelParserTrait;
     34    use Objects\SimpleFieldsTrait;
     35    use Objects\GenericFieldsTrait;
     36    use Objects\PricesTrait;
     37    use Objects\ImagesTrait;
     38    use Objects\ListsTrait;
    4439
    4540    //====================================================================//
     
    184179            //====================================================================//
    185180            // Prepare Status Prefix
    186             $statusPrefix = PrivacyManager::isAnonymizeById($wcOrder->ID) ? "[A] " : "";
     181            $statusPrefix = Managers\PrivacyManager::isAnonymizeById($wcOrder->ID) ? "[A] " : "";
     182            $orderStatus = str_replace("wc-", "", $wcOrder->post_status);
    187183            //====================================================================//
    188184            // Prepare List Data
     
    192188                "post_name" => $wcOrder->post_name,
    193189                "post_status" => ($stats[$wcOrder->post_status] ?? "...?"),
    194                 "status" => $statusPrefix.$wcOrder->post_status,
     190                "status" => $statusPrefix.(Managers\OrderStatusManager::encode($orderStatus) ?? $orderStatus),
     191                "invoice_status" => $statusPrefix.(Managers\InvoiceStatusManager::encode($orderStatus) ?? $orderStatus),
    195192                "total" => get_post_meta($wcOrder->ID, "_order_total", true),
    196193                "reference" => "#".$wcOrder->ID
  • splash-connector/tags/2.0.6/src/Objects/Order/StatusTrait.php

    r2865644 r2947048  
    6060            ->group(__("Status"))
    6161            ->microData("http://schema.org/Invoice", "paymentStatus")
     62            ->isListed()
    6263            ->isReadOnly()
    6364        ;
  • splash-connector/tags/2.0.6/vendor/autoload.php

    r2919687 r2947048  
    2323require_once __DIR__ . '/composer/autoload_real.php';
    2424
    25 return ComposerAutoloaderInit370a618e464ad2fa73d6bf8d9ccff1f1::getLoader();
     25return ComposerAutoloaderInitbd37bba058c052c6ccdb5e1ddba225d8::getLoader();
  • splash-connector/tags/2.0.6/vendor/composer/ClassLoader.php

    r2914866 r2947048  
    4646    private static $includeFile;
    4747
    48     /** @var ?string */
     48    /** @var string|null */
    4949    private $vendorDir;
    5050
    5151    // PSR-4
    5252    /**
    53      * @var array[]
    54      * @psalm-var array<string, array<string, int>>
     53     * @var array<string, array<string, int>>
    5554     */
    5655    private $prefixLengthsPsr4 = array();
    5756    /**
    58      * @var array[]
    59      * @psalm-var array<string, array<int, string>>
     57     * @var array<string, list<string>>
    6058     */
    6159    private $prefixDirsPsr4 = array();
    6260    /**
    63      * @var array[]
    64      * @psalm-var array<string, string>
     61     * @var list<string>
    6562     */
    6663    private $fallbackDirsPsr4 = array();
     
    6865    // PSR-0
    6966    /**
    70      * @var array[]
    71      * @psalm-var array<string, array<string, string[]>>
     67     * List of PSR-0 prefixes
     68     *
     69     * Structured as array('F (first letter)' => array('Foo\Bar (full prefix)' => array('path', 'path2')))
     70     *
     71     * @var array<string, array<string, list<string>>>
    7272     */
    7373    private $prefixesPsr0 = array();
    7474    /**
    75      * @var array[]
    76      * @psalm-var array<string, string>
     75     * @var list<string>
    7776     */
    7877    private $fallbackDirsPsr0 = array();
     
    8281
    8382    /**
    84      * @var string[]
    85      * @psalm-var array<string, string>
     83     * @var array<string, string>
    8684     */
    8785    private $classMap = array();
     
    9189
    9290    /**
    93      * @var bool[]
    94      * @psalm-var array<string, bool>
     91     * @var array<string, bool>
    9592     */
    9693    private $missingClasses = array();
    9794
    98     /** @var ?string */
     95    /** @var string|null */
    9996    private $apcuPrefix;
    10097
    10198    /**
    102      * @var self[]
     99     * @var array<string, self>
    103100     */
    104101    private static $registeredLoaders = array();
    105102
    106103    /**
    107      * @param ?string $vendorDir
     104     * @param string|null $vendorDir
    108105     */
    109106    public function __construct($vendorDir = null)
     
    114111
    115112    /**
    116      * @return string[]
     113     * @return array<string, list<string>>
    117114     */
    118115    public function getPrefixes()
     
    126123
    127124    /**
    128      * @return array[]
    129      * @psalm-return array<string, array<int, string>>
     125     * @return array<string, list<string>>
    130126     */
    131127    public function getPrefixesPsr4()
     
    135131
    136132    /**
    137      * @return array[]
    138      * @psalm-return array<string, string>
     133     * @return list<string>
    139134     */
    140135    public function getFallbackDirs()
     
    144139
    145140    /**
    146      * @return array[]
    147      * @psalm-return array<string, string>
     141     * @return list<string>
    148142     */
    149143    public function getFallbackDirsPsr4()
     
    153147
    154148    /**
    155      * @return string[] Array of classname => path
    156      * @psalm-return array<string, string>
     149     * @return array<string, string> Array of classname => path
    157150     */
    158151    public function getClassMap()
     
    162155
    163156    /**
    164      * @param string[] $classMap Class to filename map
    165      * @psalm-param array<string, string> $classMap
     157     * @param array<string, string> $classMap Class to filename map
    166158     *
    167159     * @return void
     
    180172     * appending or prepending to the ones previously set for this prefix.
    181173     *
    182      * @param string          $prefix  The prefix
    183      * @param string[]|string $paths   The PSR-0 root directories
    184      * @param bool            $prepend Whether to prepend the directories
     174     * @param string              $prefix  The prefix
     175     * @param list<string>|string $paths   The PSR-0 root directories
     176     * @param bool                $prepend Whether to prepend the directories
    185177     *
    186178     * @return void
     
    188180    public function add($prefix, $paths, $prepend = false)
    189181    {
     182        $paths = (array) $paths;
    190183        if (!$prefix) {
    191184            if ($prepend) {
    192185                $this->fallbackDirsPsr0 = array_merge(
    193                     (array) $paths,
     186                    $paths,
    194187                    $this->fallbackDirsPsr0
    195188                );
     
    197190                $this->fallbackDirsPsr0 = array_merge(
    198191                    $this->fallbackDirsPsr0,
    199                     (array) $paths
     192                    $paths
    200193                );
    201194            }
     
    206199        $first = $prefix[0];
    207200        if (!isset($this->prefixesPsr0[$first][$prefix])) {
    208             $this->prefixesPsr0[$first][$prefix] = (array) $paths;
     201            $this->prefixesPsr0[$first][$prefix] = $paths;
    209202
    210203            return;
     
    212205        if ($prepend) {
    213206            $this->prefixesPsr0[$first][$prefix] = array_merge(
    214                 (array) $paths,
     207                $paths,
    215208                $this->prefixesPsr0[$first][$prefix]
    216209            );
     
    218211            $this->prefixesPsr0[$first][$prefix] = array_merge(
    219212                $this->prefixesPsr0[$first][$prefix],
    220                 (array) $paths
     213                $paths
    221214            );
    222215        }
     
    227220     * appending or prepending to the ones previously set for this namespace.
    228221     *
    229      * @param string          $prefix  The prefix/namespace, with trailing '\\'
    230      * @param string[]|string $paths   The PSR-4 base directories
    231      * @param bool            $prepend Whether to prepend the directories
     222     * @param string              $prefix  The prefix/namespace, with trailing '\\'
     223     * @param list<string>|string $paths   The PSR-4 base directories
     224     * @param bool                $prepend Whether to prepend the directories
    232225     *
    233226     * @throws \InvalidArgumentException
     
    237230    public function addPsr4($prefix, $paths, $prepend = false)
    238231    {
     232        $paths = (array) $paths;
    239233        if (!$prefix) {
    240234            // Register directories for the root namespace.
    241235            if ($prepend) {
    242236                $this->fallbackDirsPsr4 = array_merge(
    243                     (array) $paths,
     237                    $paths,
    244238                    $this->fallbackDirsPsr4
    245239                );
     
    247241                $this->fallbackDirsPsr4 = array_merge(
    248242                    $this->fallbackDirsPsr4,
    249                     (array) $paths
     243                    $paths
    250244                );
    251245            }
     
    257251            }
    258252            $this->prefixLengthsPsr4[$prefix[0]][$prefix] = $length;
    259             $this->prefixDirsPsr4[$prefix] = (array) $paths;
     253            $this->prefixDirsPsr4[$prefix] = $paths;
    260254        } elseif ($prepend) {
    261255            // Prepend directories for an already registered namespace.
    262256            $this->prefixDirsPsr4[$prefix] = array_merge(
    263                 (array) $paths,
     257                $paths,
    264258                $this->prefixDirsPsr4[$prefix]
    265259            );
     
    268262            $this->prefixDirsPsr4[$prefix] = array_merge(
    269263                $this->prefixDirsPsr4[$prefix],
    270                 (array) $paths
     264                $paths
    271265            );
    272266        }
     
    277271     * replacing any others previously set for this prefix.
    278272     *
    279      * @param string          $prefix The prefix
    280      * @param string[]|string $paths  The PSR-0 base directories
     273     * @param string              $prefix The prefix
     274     * @param list<string>|string $paths  The PSR-0 base directories
    281275     *
    282276     * @return void
     
    295289     * replacing any others previously set for this namespace.
    296290     *
    297      * @param string          $prefix The prefix/namespace, with trailing '\\'
    298      * @param string[]|string $paths  The PSR-4 base directories
     291     * @param string              $prefix The prefix/namespace, with trailing '\\'
     292     * @param list<string>|string $paths  The PSR-4 base directories
    299293     *
    300294     * @throws \InvalidArgumentException
     
    482476
    483477    /**
    484      * Returns the currently registered loaders indexed by their corresponding vendor directories.
    485      *
    486      * @return self[]
     478     * Returns the currently registered loaders keyed by their corresponding vendor directories.
     479     *
     480     * @return array<string, self>
    487481     */
    488482    public static function getRegisteredLoaders()
  • splash-connector/tags/2.0.6/vendor/composer/autoload_real.php

    r2919687 r2947048  
    33// autoload_real.php @generated by Composer
    44
    5 class ComposerAutoloaderInit370a618e464ad2fa73d6bf8d9ccff1f1
     5class ComposerAutoloaderInitbd37bba058c052c6ccdb5e1ddba225d8
    66{
    77    private static $loader;
     
    2525        require __DIR__ . '/platform_check.php';
    2626
    27         spl_autoload_register(array('ComposerAutoloaderInit370a618e464ad2fa73d6bf8d9ccff1f1', 'loadClassLoader'), true, true);
     27        spl_autoload_register(array('ComposerAutoloaderInitbd37bba058c052c6ccdb5e1ddba225d8', 'loadClassLoader'), true, true);
    2828        self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
    29         spl_autoload_unregister(array('ComposerAutoloaderInit370a618e464ad2fa73d6bf8d9ccff1f1', 'loadClassLoader'));
     29        spl_autoload_unregister(array('ComposerAutoloaderInitbd37bba058c052c6ccdb5e1ddba225d8', 'loadClassLoader'));
    3030
    3131        require __DIR__ . '/autoload_static.php';
    32         call_user_func(\Composer\Autoload\ComposerStaticInit370a618e464ad2fa73d6bf8d9ccff1f1::getInitializer($loader));
     32        call_user_func(\Composer\Autoload\ComposerStaticInitbd37bba058c052c6ccdb5e1ddba225d8::getInitializer($loader));
    3333
    3434        $loader->register(true);
  • splash-connector/tags/2.0.6/vendor/composer/autoload_static.php

    r2919687 r2947048  
    55namespace Composer\Autoload;
    66
    7 class ComposerStaticInit370a618e464ad2fa73d6bf8d9ccff1f1
     7class ComposerStaticInitbd37bba058c052c6ccdb5e1ddba225d8
    88{
    99    public static $prefixLengthsPsr4 = array (
     
    3434    {
    3535        return \Closure::bind(function () use ($loader) {
    36             $loader->prefixLengthsPsr4 = ComposerStaticInit370a618e464ad2fa73d6bf8d9ccff1f1::$prefixLengthsPsr4;
    37             $loader->prefixDirsPsr4 = ComposerStaticInit370a618e464ad2fa73d6bf8d9ccff1f1::$prefixDirsPsr4;
    38             $loader->classMap = ComposerStaticInit370a618e464ad2fa73d6bf8d9ccff1f1::$classMap;
     36            $loader->prefixLengthsPsr4 = ComposerStaticInitbd37bba058c052c6ccdb5e1ddba225d8::$prefixLengthsPsr4;
     37            $loader->prefixDirsPsr4 = ComposerStaticInitbd37bba058c052c6ccdb5e1ddba225d8::$prefixDirsPsr4;
     38            $loader->classMap = ComposerStaticInitbd37bba058c052c6ccdb5e1ddba225d8::$classMap;
    3939
    4040        }, null, ClassLoader::class);
  • splash-connector/tags/2.0.6/vendor/composer/installed.json

    r2914866 r2947048  
    88                "type": "git",
    99                "url": "https://github.com/SplashSync/Php-Core.git",
    10                 "reference": "0ec7190d3ed142297ca5d309b87ac00124b48873"
     10                "reference": "fecb3893316a649dc5ebd2f516f69977f1ff052f"
    1111            },
    1212            "dist": {
    1313                "type": "zip",
    14                 "url": "https://api.github.com/repos/SplashSync/Php-Core/zipball/0ec7190d3ed142297ca5d309b87ac00124b48873",
    15                 "reference": "0ec7190d3ed142297ca5d309b87ac00124b48873",
     14                "url": "https://api.github.com/repos/SplashSync/Php-Core/zipball/fecb3893316a649dc5ebd2f516f69977f1ff052f",
     15                "reference": "fecb3893316a649dc5ebd2f516f69977f1ff052f",
    1616                "shasum": ""
    1717            },
     
    3030                "splash/console": "dev-master"
    3131            },
    32             "time": "2023-05-09T14:53:59+00:00",
     32            "time": "2023-06-26T22:42:33+00:00",
    3333            "default-branch": true,
    3434            "type": "package",
     
    6060            "support": {
    6161                "issues": "https://github.com/SplashSync/Php-Core/issues",
    62                 "source": "https://github.com/SplashSync/Php-Core/tree/2.0.2"
     62                "source": "https://github.com/SplashSync/Php-Core/tree/2.0.3"
    6363            },
    6464            "install-path": "../splash/phpcore"
  • splash-connector/tags/2.0.6/vendor/composer/installed.php

    r2919687 r2947048  
    22    'root' => array(
    33        'name' => 'splash/wordpress',
    4         'pretty_version' => '2.0.4',
    5         'version' => '2.0.4.0',
    6         'reference' => 'a66baa2b93a77dc09be82a04c70a442baf01cf4f',
     4        'pretty_version' => '2.0.6',
     5        'version' => '2.0.6.0',
     6        'reference' => '39b23ff857559815ebb6c482c61b84728fe4c122',
    77        'type' => 'library',
    88        'install_path' => __DIR__ . '/../../',
     
    1414            'pretty_version' => 'dev-master',
    1515            'version' => 'dev-master',
    16             'reference' => '0ec7190d3ed142297ca5d309b87ac00124b48873',
     16            'reference' => 'fecb3893316a649dc5ebd2f516f69977f1ff052f',
    1717            'type' => 'package',
    1818            'install_path' => __DIR__ . '/../splash/phpcore',
     
    2323        ),
    2424        'splash/wordpress' => array(
    25             'pretty_version' => '2.0.4',
    26             'version' => '2.0.4.0',
    27             'reference' => 'a66baa2b93a77dc09be82a04c70a442baf01cf4f',
     25            'pretty_version' => '2.0.6',
     26            'version' => '2.0.6.0',
     27            'reference' => '39b23ff857559815ebb6c482c61b84728fe4c122',
    2828            'type' => 'library',
    2929            'install_path' => __DIR__ . '/../../',
  • splash-connector/tags/2.0.6/vendor/splash/phpcore/.gitlab-ci.yml

    r2865644 r2947048  
    6060      - curl -s https://raw.githubusercontent.com/BadPixxel/Php-Sdk/main/ci/after.sh | sh
    6161
     62#tests:php-8.2:
     63#    image: registry.gitlab.com/badpixxel-projects/php-sdk:php-8.2
     64#    <<: *core_tests
     65
    6266tests:php-8.1:
    6367    image: registry.gitlab.com/badpixxel-projects/php-sdk:php-8.1
  • splash-connector/tags/2.0.6/vendor/splash/phpcore/Components/BlocksFactory.php

    r2865644 r2947048  
    6767
    6868    /**
    69      *  @abstract   Set Block Data Array Key
    70      *
    71      *  @param      string      $name
    72      *  @param      array|string      $value
    73      *
    74      *  @return    $this
     69     * Set Block Data Array Key
     70     *
     71     * @param string       $name
     72     * @param array|string $value
     73     *
     74     * @return $this
    7575     */
    7676    public function setData($name, $value)
     
    8686
    8787    /**
    88      *  @abstract   Extract Block Data From Content Input Array
    89      *
    90      *  @param      array       $input
    91      *  @param      string      $index
    92      *
    93      *  @return    $this
     88     * Extract Block Data From Content Input Array
     89     *
     90     * @param array  $input
     91     * @param string $index
     92     *
     93     * @return $this
    9494     */
    9595    public function extractData($input, $index)
     
    103103
    104104    /**
    105      *  @abstract   Set Block Options Array Key
    106      *
    107      *  @param      string      $name
    108      *  @param      array       $value
    109      *
    110      *  @return    $this
     105     * Set Block Options Array Key
     106     *
     107     * @param string $name
     108     * @param array  $value
     109     *
     110     * @return $this
    111111     */
    112112    public function setOption($name, $value)
     
    151151
    152152    /**
    153      *  @abstract   Create a new Text Block
    154      *
    155      *  @param      string      $text           Block Content Text
    156      *  @param      array       $blockOptions  Block Options
    157      *
    158      *  @return    $this
     153     * Create a new Text Block
     154     *
     155     * @param string $text         Block Content Text
     156     * @param array  $blockOptions Block Options
     157     *
     158     * @return $this
    159159     */
    160160    public function addTextBlock($text, $blockOptions = self::COMMONS_OPTIONS)
     
    171171
    172172    /**
    173      *  @abstract   Create a new Notification Block
    174      *
    175      *  @param      array   $contents           Block Contents
    176      *                          ["error"]       Error Message
    177      *                          ["warning"]     Warning Message
    178      *                          ["info"]        Info Message
    179      *                          ["success"]     Success Message
    180      *  @param      array   $blockOptions      Block Options
    181      *
    182      *  @return    $this
     173     * Create a new Notification Block
     174     *
     175     * @param array $contents     Block Contents
     176     *                            ["error"]       Error Message
     177     *                            ["warning"]     Warning Message
     178     *                            ["info"]        Info Message
     179     *                            ["success"]     Success Message
     180     * @param array $blockOptions Block Options
     181     *
     182     * @return $this
    183183     */
    184184    public function addNotificationsBlock($contents, $blockOptions = self::COMMONS_OPTIONS)
     
    210210
    211211    /**
    212      *  @abstract   Create a new Table Block
    213      *
    214      *  @param      array   $contents           Array of Rows Contents (Text or Html)
    215      *  @param      array   $blockOptions      Block Options
    216      *
    217      *  @return    $this
     212     * Create a new Table Block
     213     *
     214     * @param array $contents     Array of Rows Contents (Text or Html)
     215     * @param array $blockOptions Block Options
     216     *
     217     * @return $this
    218218     */
    219219    public function addTableBlock($contents, $blockOptions = self::COMMONS_OPTIONS)
     
    230230
    231231    /**
    232      *  @abstract   Create a new Table Block
    233      *
    234      *  @param      array   $contents           Array of Rows Contents (Text or Html)
    235      *  @param      array   $blockOptions      Block Options
    236      *
    237      *  @return    $this
     232     * Create a new Table Block
     233     *
     234     * @param array $contents     Array of Rows Contents (Text or Html)
     235     * @param array $blockOptions Block Options
     236     *
     237     * @return $this
    238238     */
    239239    public function addSparkInfoBlock($contents, $blockOptions = self::COMMONS_OPTIONS)
     
    322322
    323323    /**
    324      *  @abstract   Create a new block with default parameters
    325      *
    326      *  @param      string      $blockType       Standard Widget Block Type
    327      *  @param      array       $blockOptions    Block Options
    328      *
    329      *  @return    $this
     324     * Create a new block with default parameters
     325     *
     326     * @param string $blockType    Standard Widget Block Type
     327     * @param array  $blockOptions Block Options
     328     *
     329     * @return $this
    330330     */
    331331    private function addBlock($blockType, $blockOptions = null)
     
    356356
    357357    /**
    358      *  @abstract   Save Current New Block in list & Clean
    359      *
    360      *  @return    bool
     358     * Save Current New Block in list & Clean
     359     *
     360     * @return bool
    361361     */
    362362    private function commit()
  • splash-connector/tags/2.0.6/vendor/splash/phpcore/Components/Logger.php

    r2865644 r2947048  
    654654        if (!isset($this->{$logType})) {
    655655            $this->{$logType} = $logArray;
    656         //====================================================================//
    657         // Really merge Logs
    658656        } else {
     657            //====================================================================//
     658            // Really Merge Logs
    659659            foreach ($logArray as $message) {
    660660                $this->{$logType}[] = $message;
  • splash-connector/tags/2.0.6/vendor/splash/phpcore/Components/Validator.php

    r2865644 r2947048  
    484484        }
    485485
    486         $extensions = array('xml', 'soap', 'curl', 'json');
     486        $extensions = array('xml', 'soap', 'curl', 'json', 'iconv');
    487487        foreach ($extensions as $extension) {
    488488            if (!extension_loaded($extension)) {
  • splash-connector/tags/2.0.6/vendor/splash/phpcore/Components/Webservice.php

    r2870565 r2947048  
    190190        if (!$noEncryption) {
    191191            $out = $this->crypt('encrypt', $serial, (string) $this->key, (string) $this->id);
    192         //====================================================================//
    193         // Else, switch to base64
    194         } else {
     192        } else {
     193            //====================================================================//
     194            // Else, switch to base64
    195195            $out = base64_encode($serial);
    196196        }
     
    227227        if (!empty($data) && !$noEncryption) {
    228228            $decode = $this->crypt('decrypt', $data, (string) $this->key, (string) $this->id);
    229         //====================================================================//
    230         // Else, switch from base64
    231         } else {
     229        } else {
     230            //====================================================================//
     231            // Else, switch from base64
    232232            $decode = base64_decode($data, true);
    233233        }
     
    699699                (string) openssl_encrypt($data, Splash::configuration()->WsCrypt, $cryptKey, 0, $cryptIv)
    700700            );
    701         //====================================================================//
    702         // Open SSL Decryption
    703         } else {
     701        } else {
     702            //====================================================================//
     703            // Open SSL Decryption
    704704            $out = openssl_decrypt(
    705705                (string) base64_decode($data, true),
  • splash-connector/tags/2.0.6/vendor/splash/phpcore/Components/XmlManager.php

    r2914866 r2947048  
    213213                $key = self::keysFilter($key, 'string-');
    214214
    215             //====================================================================//
    216             // Insert Numeric
    217             //====================================================================//
     215                //====================================================================//
     216                // Insert Numeric
     217                //====================================================================//
    218218            } elseif (is_numeric($value)) {
    219219                //====================================================================//
     
    221221                $key = self::keysFilter($key, 'int-');
    222222
    223             //====================================================================//
    224             // Insert Boolean
    225             //====================================================================//
     223                //====================================================================//
     224                // Insert Boolean
     225                //====================================================================//
    226226            } elseif (is_bool($value)) {
    227227                //====================================================================//
  • splash-connector/tags/2.0.6/vendor/splash/phpcore/Core/ObjectsCoreTrait.php

    r2865644 r2947048  
    1919use Splash\Components\ExtensionsManager;
    2020use Splash\Components\FilesLoader;
    21 use Splash\Components\Router;
    22 use Splash\Local\Local;
    2321use Splash\Models\Objects\ObjectInterface;
    2422use Splash\Models\ObjectsProviderInterface;
  • splash-connector/tags/2.0.6/vendor/splash/phpcore/Core/WidgetsCoreTrait.php

    r2865644 r2947048  
    1717
    1818use Exception;
    19 use Splash\Components\Router;
    20 use Splash\Local\Local;
    2119use Splash\Models\Widgets\WidgetInterface;
    2220use Splash\Models\WidgetsProviderInterface;
  • splash-connector/tags/2.0.6/vendor/splash/phpcore/Server/SplashServer.php

    r2865644 r2947048  
    205205            // Process methods & Return the results.
    206206            Splash::com()->handle();
    207         //====================================================================//
    208         // Non Fatal Error
    209207        } else {
     208            //====================================================================//
     209            // Non Fatal Error
    210210            Splash::log()->war($error["message"]." on File ".$error["file"]." Line ".$error["line"]);
    211211        }
  • splash-connector/tags/2.0.6/vendor/splash/phpcore/Tests/Managers/C60UnitsConverterTest.php

    r2865644 r2947048  
    2020
    2121/**
    22  * Componants Test Suite - Unit Converter Verifications
     22 * Components Test Suite - Unit Converter Verifications
    2323 */
    2424class C60UnitsConverterTest extends TestCase
  • splash-connector/tags/2.0.6/vendor/splash/phpcore/Tests/Tools/AbstractBaseCase.php

    r2914866 r2947048  
    8282        if ($types) {
    8383            $allowed = (array) explode(",", $types);
    84             if (!empty($allowed) && !in_array($objectType, $allowed, true)) {
     84            if (!in_array($objectType, $allowed, true)) {
    8585                return false;
    8686            }
  • splash-connector/tags/2.0.6/vendor/splash/phpcore/Tests/Tools/Traits/ObjectsDataTrait.php

    r2865644 r2947048  
    8181     * @param null|string $comment Comment on this Test
    8282     *
    83      *@throws Exception
     83     * @throws Exception
    8484     *
    8585     * @return bool
     
    112112                    $comment."->".$field['id']
    113113                );
    114 
    115             //====================================================================//
    116             // Compare Single Fields
    117114            } else {
     115                //====================================================================//
     116                // Compare Single Fields
    118117                $this->assertIsArray($data1);
    119118                $this->assertIsArray($data2);
  • splash-connector/tags/2.0.6/vendor/splash/phpcore/Tests/WsObjects/O05DeleteTest.php

    r2865644 r2947048  
    237237     * @param array|scalar $data
    238238     *
    239      *@throws Exception
     239     * @throws Exception
    240240     *
    241241     * @return void
  • splash-connector/tags/2.0.6/vendor/splash/phpcore/ci/verify.sh

    r2865644 r2947048  
    4545docker-compose exec php-8.1 php vendor/bin/grumphp run --testsuite=csfixer
    4646docker-compose exec php-8.1 php vendor/bin/grumphp run --testsuite=phpstan
     47
     48################################################################################
     49# PHP 8.2
     50echo '===> Checks Php 8.2'
     51docker-compose exec php-8.2 composer update -q
     52docker-compose exec php-8.2 php vendor/bin/grumphp run --testsuite=travis
     53docker-compose exec php-8.2 php vendor/bin/grumphp run --testsuite=csfixer
     54docker-compose exec php-8.2 php vendor/bin/grumphp run --testsuite=phpstan
  • splash-connector/tags/2.0.6/vendor/splash/phpcore/composer.lock

    r2914866 r2947048  
    628628        {
    629629            "name": "composer/ca-bundle",
    630             "version": "1.3.5",
     630            "version": "1.3.6",
    631631            "source": {
    632632                "type": "git",
    633633                "url": "https://github.com/composer/ca-bundle.git",
    634                 "reference": "74780ccf8c19d6acb8d65c5f39cd72110e132bbd"
    635             },
    636             "dist": {
    637                 "type": "zip",
    638                 "url": "https://api.github.com/repos/composer/ca-bundle/zipball/74780ccf8c19d6acb8d65c5f39cd72110e132bbd",
    639                 "reference": "74780ccf8c19d6acb8d65c5f39cd72110e132bbd",
     634                "reference": "90d087e988ff194065333d16bc5cf649872d9cdb"
     635            },
     636            "dist": {
     637                "type": "zip",
     638                "url": "https://api.github.com/repos/composer/ca-bundle/zipball/90d087e988ff194065333d16bc5cf649872d9cdb",
     639                "reference": "90d087e988ff194065333d16bc5cf649872d9cdb",
    640640                "shasum": ""
    641641            },
     
    684684                "irc": "irc://irc.freenode.org/composer",
    685685                "issues": "https://github.com/composer/ca-bundle/issues",
    686                 "source": "https://github.com/composer/ca-bundle/tree/1.3.5"
     686                "source": "https://github.com/composer/ca-bundle/tree/1.3.6"
    687687            },
    688688            "funding": [
     
    700700                }
    701701            ],
    702             "time": "2023-01-11T08:27:00+00:00"
     702            "time": "2023-06-06T12:02:59+00:00"
    703703        },
    704704        {
     
    777777        {
    778778            "name": "composer/composer",
    779             "version": "2.5.5",
     779            "version": "2.5.8",
    780780            "source": {
    781781                "type": "git",
    782782                "url": "https://github.com/composer/composer.git",
    783                 "reference": "c7cffaad16a60636a776017eac5bd8cd0095c32f"
    784             },
    785             "dist": {
    786                 "type": "zip",
    787                 "url": "https://api.github.com/repos/composer/composer/zipball/c7cffaad16a60636a776017eac5bd8cd0095c32f",
    788                 "reference": "c7cffaad16a60636a776017eac5bd8cd0095c32f",
     783                "reference": "4c516146167d1392c8b9b269bb7c24115d262164"
     784            },
     785            "dist": {
     786                "type": "zip",
     787                "url": "https://api.github.com/repos/composer/composer/zipball/4c516146167d1392c8b9b269bb7c24115d262164",
     788                "reference": "4c516146167d1392c8b9b269bb7c24115d262164",
    789789                "shasum": ""
    790790            },
     
    870870                "irc": "ircs://irc.libera.chat:6697/composer",
    871871                "issues": "https://github.com/composer/composer/issues",
    872                 "source": "https://github.com/composer/composer/tree/2.5.5"
     872                "source": "https://github.com/composer/composer/tree/2.5.8"
    873873            },
    874874            "funding": [
     
    886886                }
    887887            ],
    888             "time": "2023-03-21T10:50:05+00:00"
     888            "time": "2023-06-09T15:13:21+00:00"
    889889        },
    890890        {
     
    13331333        {
    13341334            "name": "doctrine/collections",
    1335             "version": "2.1.2",
     1335            "version": "1.8.0",
    13361336            "source": {
    13371337                "type": "git",
    13381338                "url": "https://github.com/doctrine/collections.git",
    1339                 "reference": "db8cda536a034337f7dd63febecc713d4957f9ee"
    1340             },
    1341             "dist": {
    1342                 "type": "zip",
    1343                 "url": "https://api.github.com/repos/doctrine/collections/zipball/db8cda536a034337f7dd63febecc713d4957f9ee",
    1344                 "reference": "db8cda536a034337f7dd63febecc713d4957f9ee",
    1345                 "shasum": ""
    1346             },
    1347             "require": {
    1348                 "doctrine/deprecations": "^1",
    1349                 "php": "^8.1"
    1350             },
    1351             "require-dev": {
    1352                 "doctrine/coding-standard": "^10.0",
    1353                 "ext-json": "*",
    1354                 "phpstan/phpstan": "^1.8",
    1355                 "phpstan/phpstan-phpunit": "^1.0",
    1356                 "phpunit/phpunit": "^9.5",
     1339                "reference": "2b44dd4cbca8b5744327de78bafef5945c7e7b5e"
     1340            },
     1341            "dist": {
     1342                "type": "zip",
     1343                "url": "https://api.github.com/repos/doctrine/collections/zipball/2b44dd4cbca8b5744327de78bafef5945c7e7b5e",
     1344                "reference": "2b44dd4cbca8b5744327de78bafef5945c7e7b5e",
     1345                "shasum": ""
     1346            },
     1347            "require": {
     1348                "doctrine/deprecations": "^0.5.3 || ^1",
     1349                "php": "^7.1.3 || ^8.0"
     1350            },
     1351            "require-dev": {
     1352                "doctrine/coding-standard": "^9.0 || ^10.0",
     1353                "phpstan/phpstan": "^1.4.8",
     1354                "phpunit/phpunit": "^7.5 || ^8.5 || ^9.1.5",
    13571355                "vimeo/psalm": "^4.22"
    13581356            },
     
    13601358            "autoload": {
    13611359                "psr-4": {
    1362                     "Doctrine\\Common\\Collections\\": "src"
     1360                    "Doctrine\\Common\\Collections\\": "lib/Doctrine/Common/Collections"
    13631361                }
    13641362            },
     
    13991397            "support": {
    14001398                "issues": "https://github.com/doctrine/collections/issues",
    1401                 "source": "https://github.com/doctrine/collections/tree/2.1.2"
    1402             },
    1403             "funding": [
    1404                 {
    1405                     "url": "https://www.doctrine-project.org/sponsorship.html",
    1406                     "type": "custom"
    1407                 },
    1408                 {
    1409                     "url": "https://www.patreon.com/phpdoctrine",
    1410                     "type": "patreon"
    1411                 },
    1412                 {
    1413                     "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcollections",
    1414                     "type": "tidelift"
    1415                 }
    1416             ],
    1417             "time": "2022-12-27T23:41:38+00:00"
     1399                "source": "https://github.com/doctrine/collections/tree/1.8.0"
     1400            },
     1401            "time": "2022-09-01T20:12:10+00:00"
    14181402        },
    14191403        {
    14201404            "name": "doctrine/deprecations",
    1421             "version": "v1.0.0",
     1405            "version": "v1.1.1",
    14221406            "source": {
    14231407                "type": "git",
    14241408                "url": "https://github.com/doctrine/deprecations.git",
    1425                 "reference": "0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de"
    1426             },
    1427             "dist": {
    1428                 "type": "zip",
    1429                 "url": "https://api.github.com/repos/doctrine/deprecations/zipball/0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de",
    1430                 "reference": "0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de",
    1431                 "shasum": ""
    1432             },
    1433             "require": {
    1434                 "php": "^7.1|^8.0"
     1409                "reference": "612a3ee5ab0d5dd97b7cf3874a6efe24325efac3"
     1410            },
     1411            "dist": {
     1412                "type": "zip",
     1413                "url": "https://api.github.com/repos/doctrine/deprecations/zipball/612a3ee5ab0d5dd97b7cf3874a6efe24325efac3",
     1414                "reference": "612a3ee5ab0d5dd97b7cf3874a6efe24325efac3",
     1415                "shasum": ""
     1416            },
     1417            "require": {
     1418                "php": "^7.1 || ^8.0"
    14351419            },
    14361420            "require-dev": {
    14371421                "doctrine/coding-standard": "^9",
    1438                 "phpunit/phpunit": "^7.5|^8.5|^9.5",
    1439                 "psr/log": "^1|^2|^3"
     1422                "phpstan/phpstan": "1.4.10 || 1.10.15",
     1423                "phpstan/phpstan-phpunit": "^1.0",
     1424                "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
     1425                "psalm/plugin-phpunit": "0.18.4",
     1426                "psr/log": "^1 || ^2 || ^3",
     1427                "vimeo/psalm": "4.30.0 || 5.12.0"
    14401428            },
    14411429            "suggest": {
     
    14561444            "support": {
    14571445                "issues": "https://github.com/doctrine/deprecations/issues",
    1458                 "source": "https://github.com/doctrine/deprecations/tree/v1.0.0"
    1459             },
    1460             "time": "2022-05-02T15:47:09+00:00"
     1446                "source": "https://github.com/doctrine/deprecations/tree/v1.1.1"
     1447            },
     1448            "time": "2023-06-03T09:27:29+00:00"
    14611449        },
    14621450        {
    14631451            "name": "doctrine/instantiator",
    1464             "version": "2.0.0",
     1452            "version": "1.5.0",
    14651453            "source": {
    14661454                "type": "git",
    14671455                "url": "https://github.com/doctrine/instantiator.git",
    1468                 "reference": "c6222283fa3f4ac679f8b9ced9a4e23f163e80d0"
    1469             },
    1470             "dist": {
    1471                 "type": "zip",
    1472                 "url": "https://api.github.com/repos/doctrine/instantiator/zipball/c6222283fa3f4ac679f8b9ced9a4e23f163e80d0",
    1473                 "reference": "c6222283fa3f4ac679f8b9ced9a4e23f163e80d0",
    1474                 "shasum": ""
    1475             },
    1476             "require": {
    1477                 "php": "^8.1"
    1478             },
    1479             "require-dev": {
    1480                 "doctrine/coding-standard": "^11",
     1456                "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b"
     1457            },
     1458            "dist": {
     1459                "type": "zip",
     1460                "url": "https://api.github.com/repos/doctrine/instantiator/zipball/0a0fa9780f5d4e507415a065172d26a98d02047b",
     1461                "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b",
     1462                "shasum": ""
     1463            },
     1464            "require": {
     1465                "php": "^7.1 || ^8.0"
     1466            },
     1467            "require-dev": {
     1468                "doctrine/coding-standard": "^9 || ^11",
    14811469                "ext-pdo": "*",
    14821470                "ext-phar": "*",
    1483                 "phpbench/phpbench": "^1.2",
    1484                 "phpstan/phpstan": "^1.9.4",
    1485                 "phpstan/phpstan-phpunit": "^1.3",
    1486                 "phpunit/phpunit": "^9.5.27",
    1487                 "vimeo/psalm": "^5.4"
     1471                "phpbench/phpbench": "^0.16 || ^1",
     1472                "phpstan/phpstan": "^1.4",
     1473                "phpstan/phpstan-phpunit": "^1",
     1474                "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
     1475                "vimeo/psalm": "^4.30 || ^5.4"
    14881476            },
    14891477            "type": "library",
     
    15121500            "support": {
    15131501                "issues": "https://github.com/doctrine/instantiator/issues",
    1514                 "source": "https://github.com/doctrine/instantiator/tree/2.0.0"
     1502                "source": "https://github.com/doctrine/instantiator/tree/1.5.0"
    15151503            },
    15161504            "funding": [
     
    15281516                }
    15291517            ],
    1530             "time": "2022-12-30T00:23:10+00:00"
     1518            "time": "2022-12-30T00:15:36+00:00"
    15311519        },
    15321520        {
    15331521            "name": "doctrine/lexer",
    1534             "version": "3.0.0",
     1522            "version": "2.1.0",
    15351523            "source": {
    15361524                "type": "git",
    15371525                "url": "https://github.com/doctrine/lexer.git",
    1538                 "reference": "84a527db05647743d50373e0ec53a152f2cde568"
    1539             },
    1540             "dist": {
    1541                 "type": "zip",
    1542                 "url": "https://api.github.com/repos/doctrine/lexer/zipball/84a527db05647743d50373e0ec53a152f2cde568",
    1543                 "reference": "84a527db05647743d50373e0ec53a152f2cde568",
    1544                 "shasum": ""
    1545             },
    1546             "require": {
    1547                 "php": "^8.1"
    1548             },
    1549             "require-dev": {
    1550                 "doctrine/coding-standard": "^10",
    1551                 "phpstan/phpstan": "^1.9",
    1552                 "phpunit/phpunit": "^9.5",
     1526                "reference": "39ab8fcf5a51ce4b85ca97c7a7d033eb12831124"
     1527            },
     1528            "dist": {
     1529                "type": "zip",
     1530                "url": "https://api.github.com/repos/doctrine/lexer/zipball/39ab8fcf5a51ce4b85ca97c7a7d033eb12831124",
     1531                "reference": "39ab8fcf5a51ce4b85ca97c7a7d033eb12831124",
     1532                "shasum": ""
     1533            },
     1534            "require": {
     1535                "doctrine/deprecations": "^1.0",
     1536                "php": "^7.1 || ^8.0"
     1537            },
     1538            "require-dev": {
     1539                "doctrine/coding-standard": "^9 || ^10",
     1540                "phpstan/phpstan": "^1.3",
     1541                "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
    15531542                "psalm/plugin-phpunit": "^0.18.3",
    1554                 "vimeo/psalm": "^5.0"
     1543                "vimeo/psalm": "^4.11 || ^5.0"
    15551544            },
    15561545            "type": "library",
     
    15891578            "support": {
    15901579                "issues": "https://github.com/doctrine/lexer/issues",
    1591                 "source": "https://github.com/doctrine/lexer/tree/3.0.0"
     1580                "source": "https://github.com/doctrine/lexer/tree/2.1.0"
    15921581            },
    15931582            "funding": [
     
    16051594                }
    16061595            ],
    1607             "time": "2022-12-15T16:57:16+00:00"
     1596            "time": "2022-12-14T08:49:07+00:00"
    16081597        },
    16091598        {
    16101599            "name": "friendsofphp/php-cs-fixer",
    1611             "version": "v3.16.0",
     1600            "version": "v3.19.2",
    16121601            "source": {
    16131602                "type": "git",
    16141603                "url": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer.git",
    1615                 "reference": "d40f9436e1c448d309fa995ab9c14c5c7a96f2dc"
    1616             },
    1617             "dist": {
    1618                 "type": "zip",
    1619                 "url": "https://api.github.com/repos/PHP-CS-Fixer/PHP-CS-Fixer/zipball/d40f9436e1c448d309fa995ab9c14c5c7a96f2dc",
    1620                 "reference": "d40f9436e1c448d309fa995ab9c14c5c7a96f2dc",
     1604                "reference": "210dd89560edb27a8e0d5086b734ac5b5fd4e0e4"
     1605            },
     1606            "dist": {
     1607                "type": "zip",
     1608                "url": "https://api.github.com/repos/PHP-CS-Fixer/PHP-CS-Fixer/zipball/210dd89560edb27a8e0d5086b734ac5b5fd4e0e4",
     1609                "reference": "210dd89560edb27a8e0d5086b734ac5b5fd4e0e4",
    16211610                "shasum": ""
    16221611            },
     
    16931682            "support": {
    16941683                "issues": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/issues",
    1695                 "source": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/tree/v3.16.0"
     1684                "source": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/tree/v3.19.2"
    16961685            },
    16971686            "funding": [
     
    17011690                }
    17021691            ],
    1703             "time": "2023-04-02T19:30:06+00:00"
     1692            "time": "2023-06-25T16:42:58+00:00"
    17041693        },
    17051694        {
     
    17581747        {
    17591748            "name": "gitonomy/gitlib",
    1760             "version": "v1.3.7",
     1749            "version": "v1.3.8",
    17611750            "source": {
    17621751                "type": "git",
    17631752                "url": "https://github.com/gitonomy/gitlib.git",
    1764                 "reference": "00b57b79f02396aa4c7c163f76fe2bc48faebbb7"
    1765             },
    1766             "dist": {
    1767                 "type": "zip",
    1768                 "url": "https://api.github.com/repos/gitonomy/gitlib/zipball/00b57b79f02396aa4c7c163f76fe2bc48faebbb7",
    1769                 "reference": "00b57b79f02396aa4c7c163f76fe2bc48faebbb7",
     1753                "reference": "9fea656e75ad6e3452feb2cac46a6c1239cd7f74"
     1754            },
     1755            "dist": {
     1756                "type": "zip",
     1757                "url": "https://api.github.com/repos/gitonomy/gitlib/zipball/9fea656e75ad6e3452feb2cac46a6c1239cd7f74",
     1758                "reference": "9fea656e75ad6e3452feb2cac46a6c1239cd7f74",
    17701759                "shasum": ""
    17711760            },
     
    18211810            "support": {
    18221811                "issues": "https://github.com/gitonomy/gitlib/issues",
    1823                 "source": "https://github.com/gitonomy/gitlib/tree/v1.3.7"
     1812                "source": "https://github.com/gitonomy/gitlib/tree/v1.3.8"
    18241813            },
    18251814            "funding": [
     
    18291818                }
    18301819            ],
    1831             "time": "2022-10-04T14:20:15+00:00"
     1820            "time": "2023-05-11T08:29:06+00:00"
    18321821        },
    18331822        {
     
    20292018        {
    20302019            "name": "monolog/monolog",
    2031             "version": "3.3.1",
     2020            "version": "2.9.1",
    20322021            "source": {
    20332022                "type": "git",
    20342023                "url": "https://github.com/Seldaek/monolog.git",
    2035                 "reference": "9b5daeaffce5b926cac47923798bba91059e60e2"
    2036             },
    2037             "dist": {
    2038                 "type": "zip",
    2039                 "url": "https://api.github.com/repos/Seldaek/monolog/zipball/9b5daeaffce5b926cac47923798bba91059e60e2",
    2040                 "reference": "9b5daeaffce5b926cac47923798bba91059e60e2",
    2041                 "shasum": ""
    2042             },
    2043             "require": {
    2044                 "php": ">=8.1",
    2045                 "psr/log": "^2.0 || ^3.0"
     2024                "reference": "f259e2b15fb95494c83f52d3caad003bbf5ffaa1"
     2025            },
     2026            "dist": {
     2027                "type": "zip",
     2028                "url": "https://api.github.com/repos/Seldaek/monolog/zipball/f259e2b15fb95494c83f52d3caad003bbf5ffaa1",
     2029                "reference": "f259e2b15fb95494c83f52d3caad003bbf5ffaa1",
     2030                "shasum": ""
     2031            },
     2032            "require": {
     2033                "php": ">=7.2",
     2034                "psr/log": "^1.0.1 || ^2.0 || ^3.0"
    20462035            },
    20472036            "provide": {
    2048                 "psr/log-implementation": "3.0.0"
    2049             },
    2050             "require-dev": {
    2051                 "aws/aws-sdk-php": "^3.0",
     2037                "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0"
     2038            },
     2039            "require-dev": {
     2040                "aws/aws-sdk-php": "^2.4.9 || ^3.0",
    20522041                "doctrine/couchdb": "~1.0@dev",
    20532042                "elasticsearch/elasticsearch": "^7 || ^8",
    20542043                "ext-json": "*",
    20552044                "graylog2/gelf-php": "^1.4.2 || ^2@dev",
    2056                 "guzzlehttp/guzzle": "^7.4.5",
     2045                "guzzlehttp/guzzle": "^7.4",
    20572046                "guzzlehttp/psr7": "^2.2",
    20582047                "mongodb/mongodb": "^1.8",
    20592048                "php-amqplib/php-amqplib": "~2.4 || ^3",
    2060                 "phpstan/phpstan": "^1.9",
    2061                 "phpstan/phpstan-deprecation-rules": "^1.0",
    2062                 "phpstan/phpstan-strict-rules": "^1.4",
    2063                 "phpunit/phpunit": "^9.5.26",
    2064                 "predis/predis": "^1.1 || ^2",
     2049                "phpspec/prophecy": "^1.15",
     2050                "phpstan/phpstan": "^0.12.91",
     2051                "phpunit/phpunit": "^8.5.14",
     2052                "predis/predis": "^1.1 || ^2.0",
     2053                "rollbar/rollbar": "^1.3 || ^2 || ^3",
    20652054                "ruflin/elastica": "^7",
     2055                "swiftmailer/swiftmailer": "^5.3|^6.0",
    20662056                "symfony/mailer": "^5.4 || ^6",
    20672057                "symfony/mime": "^5.4 || ^6"
     
    20862076            "extra": {
    20872077                "branch-alias": {
    2088                     "dev-main": "3.x-dev"
     2078                    "dev-main": "2.x-dev"
    20892079                }
    20902080            },
     
    21142104            "support": {
    21152105                "issues": "https://github.com/Seldaek/monolog/issues",
    2116                 "source": "https://github.com/Seldaek/monolog/tree/3.3.1"
     2106                "source": "https://github.com/Seldaek/monolog/tree/2.9.1"
    21172107            },
    21182108            "funding": [
     
    21262116                }
    21272117            ],
    2128             "time": "2023-02-06T13:46:10+00:00"
     2118            "time": "2023-02-06T13:44:46+00:00"
    21292119        },
    21302120        {
     
    21892179        {
    21902180            "name": "nikic/php-parser",
    2191             "version": "v4.15.4",
     2181            "version": "v4.16.0",
    21922182            "source": {
    21932183                "type": "git",
    21942184                "url": "https://github.com/nikic/PHP-Parser.git",
    2195                 "reference": "6bb5176bc4af8bcb7d926f88718db9b96a2d4290"
    2196             },
    2197             "dist": {
    2198                 "type": "zip",
    2199                 "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/6bb5176bc4af8bcb7d926f88718db9b96a2d4290",
    2200                 "reference": "6bb5176bc4af8bcb7d926f88718db9b96a2d4290",
     2185                "reference": "19526a33fb561ef417e822e85f08a00db4059c17"
     2186            },
     2187            "dist": {
     2188                "type": "zip",
     2189                "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/19526a33fb561ef417e822e85f08a00db4059c17",
     2190                "reference": "19526a33fb561ef417e822e85f08a00db4059c17",
    22012191                "shasum": ""
    22022192            },
     
    22392229            "support": {
    22402230                "issues": "https://github.com/nikic/PHP-Parser/issues",
    2241                 "source": "https://github.com/nikic/PHP-Parser/tree/v4.15.4"
    2242             },
    2243             "time": "2023-03-05T19:49:14+00:00"
     2231                "source": "https://github.com/nikic/PHP-Parser/tree/v4.16.0"
     2232            },
     2233            "time": "2023-06-25T14:52:30+00:00"
    22442234        },
    22452235        {
     
    23232313        {
    23242314            "name": "pdepend/pdepend",
    2325             "version": "2.13.0",
     2315            "version": "2.14.0",
    23262316            "source": {
    23272317                "type": "git",
    23282318                "url": "https://github.com/pdepend/pdepend.git",
    2329                 "reference": "31be7cd4f305f3f7b52af99c1cb13fc938d1cfad"
    2330             },
    2331             "dist": {
    2332                 "type": "zip",
    2333                 "url": "https://api.github.com/repos/pdepend/pdepend/zipball/31be7cd4f305f3f7b52af99c1cb13fc938d1cfad",
    2334                 "reference": "31be7cd4f305f3f7b52af99c1cb13fc938d1cfad",
     2319                "reference": "1121d4b04af06e33e9659bac3a6741b91cab1de1"
     2320            },
     2321            "dist": {
     2322                "type": "zip",
     2323                "url": "https://api.github.com/repos/pdepend/pdepend/zipball/1121d4b04af06e33e9659bac3a6741b91cab1de1",
     2324                "reference": "1121d4b04af06e33e9659bac3a6741b91cab1de1",
    23352325                "shasum": ""
    23362326            },
     
    23662356            ],
    23672357            "description": "Official version of pdepend to be handled with Composer",
     2358            "keywords": [
     2359                "PHP Depend",
     2360                "PHP_Depend",
     2361                "dev",
     2362                "pdepend"
     2363            ],
    23682364            "support": {
    23692365                "issues": "https://github.com/pdepend/pdepend/issues",
    2370                 "source": "https://github.com/pdepend/pdepend/tree/2.13.0"
     2366                "source": "https://github.com/pdepend/pdepend/tree/2.14.0"
    23712367            },
    23722368            "funding": [
     
    23762372                }
    23772373            ],
    2378             "time": "2023-02-28T20:56:15+00:00"
     2374            "time": "2023-05-26T13:15:18+00:00"
    23792375        },
    23802376        {
     
    27492745        {
    27502746            "name": "phpstan/phpstan",
    2751             "version": "1.10.14",
     2747            "version": "1.10.21",
    27522748            "source": {
    27532749                "type": "git",
    27542750                "url": "https://github.com/phpstan/phpstan.git",
    2755                 "reference": "d232901b09e67538e5c86a724be841bea5768a7c"
    2756             },
    2757             "dist": {
    2758                 "type": "zip",
    2759                 "url": "https://api.github.com/repos/phpstan/phpstan/zipball/d232901b09e67538e5c86a724be841bea5768a7c",
    2760                 "reference": "d232901b09e67538e5c86a724be841bea5768a7c",
     2751                "reference": "b2a30186be2e4d97dce754ae4e65eb0ec2f04eb5"
     2752            },
     2753            "dist": {
     2754                "type": "zip",
     2755                "url": "https://api.github.com/repos/phpstan/phpstan/zipball/b2a30186be2e4d97dce754ae4e65eb0ec2f04eb5",
     2756                "reference": "b2a30186be2e4d97dce754ae4e65eb0ec2f04eb5",
    27612757                "shasum": ""
    27622758            },
     
    28072803                }
    28082804            ],
    2809             "time": "2023-04-19T13:47:27+00:00"
     2805            "time": "2023-06-21T20:07:58+00:00"
    28102806        },
    28112807        {
    28122808            "name": "phpstan/phpstan-doctrine",
    2813             "version": "1.3.38",
     2809            "version": "1.3.40",
    28142810            "source": {
    28152811                "type": "git",
    28162812                "url": "https://github.com/phpstan/phpstan-doctrine.git",
    2817                 "reference": "f1499e54358052fef17d349881ee87a7c4cc4c67"
    2818             },
    2819             "dist": {
    2820                 "type": "zip",
    2821                 "url": "https://api.github.com/repos/phpstan/phpstan-doctrine/zipball/f1499e54358052fef17d349881ee87a7c4cc4c67",
    2822                 "reference": "f1499e54358052fef17d349881ee87a7c4cc4c67",
     2813                "reference": "f741919a720af6f84249abc62befeb15eee7bc88"
     2814            },
     2815            "dist": {
     2816                "type": "zip",
     2817                "url": "https://api.github.com/repos/phpstan/phpstan-doctrine/zipball/f741919a720af6f84249abc62befeb15eee7bc88",
     2818                "reference": "f741919a720af6f84249abc62befeb15eee7bc88",
    28232819                "shasum": ""
    28242820            },
     
    28752871            "support": {
    28762872                "issues": "https://github.com/phpstan/phpstan-doctrine/issues",
    2877                 "source": "https://github.com/phpstan/phpstan-doctrine/tree/1.3.38"
    2878             },
    2879             "time": "2023-05-04T10:53:10+00:00"
     2873                "source": "https://github.com/phpstan/phpstan-doctrine/tree/1.3.40"
     2874            },
     2875            "time": "2023-05-11T11:26:04+00:00"
    28802876        },
    28812877        {
    28822878            "name": "phpstan/phpstan-phpunit",
    2883             "version": "1.3.11",
     2879            "version": "1.3.13",
    28842880            "source": {
    28852881                "type": "git",
    28862882                "url": "https://github.com/phpstan/phpstan-phpunit.git",
    2887                 "reference": "9e1b9de6d260461f6e99b6a8f2dbb0bbb98b579c"
    2888             },
    2889             "dist": {
    2890                 "type": "zip",
    2891                 "url": "https://api.github.com/repos/phpstan/phpstan-phpunit/zipball/9e1b9de6d260461f6e99b6a8f2dbb0bbb98b579c",
    2892                 "reference": "9e1b9de6d260461f6e99b6a8f2dbb0bbb98b579c",
     2883                "reference": "d8bdab0218c5eb0964338d24a8511b65e9c94fa5"
     2884            },
     2885            "dist": {
     2886                "type": "zip",
     2887                "url": "https://api.github.com/repos/phpstan/phpstan-phpunit/zipball/d8bdab0218c5eb0964338d24a8511b65e9c94fa5",
     2888                "reference": "d8bdab0218c5eb0964338d24a8511b65e9c94fa5",
    28932889                "shasum": ""
    28942890            },
     
    29272923            "support": {
    29282924                "issues": "https://github.com/phpstan/phpstan-phpunit/issues",
    2929                 "source": "https://github.com/phpstan/phpstan-phpunit/tree/1.3.11"
    2930             },
    2931             "time": "2023-03-25T19:42:13+00:00"
     2925                "source": "https://github.com/phpstan/phpstan-phpunit/tree/1.3.13"
     2926            },
     2927            "time": "2023-05-26T11:05:59+00:00"
    29322928        },
    29332929        {
     
    29822978        {
    29832979            "name": "phpstan/phpstan-symfony",
    2984             "version": "1.3.1",
     2980            "version": "1.3.2",
    29852981            "source": {
    29862982                "type": "git",
    29872983                "url": "https://github.com/phpstan/phpstan-symfony.git",
    2988                 "reference": "7e78605a699d183f5a6936cf91904f4c16ca79b2"
    2989             },
    2990             "dist": {
    2991                 "type": "zip",
    2992                 "url": "https://api.github.com/repos/phpstan/phpstan-symfony/zipball/7e78605a699d183f5a6936cf91904f4c16ca79b2",
    2993                 "reference": "7e78605a699d183f5a6936cf91904f4c16ca79b2",
     2984                "reference": "7332b90dfc291ac5b4b83fbca2081936faa1e3f9"
     2985            },
     2986            "dist": {
     2987                "type": "zip",
     2988                "url": "https://api.github.com/repos/phpstan/phpstan-symfony/zipball/7332b90dfc291ac5b4b83fbca2081936faa1e3f9",
     2989                "reference": "7332b90dfc291ac5b4b83fbca2081936faa1e3f9",
    29942990                "shasum": ""
    29952991            },
     
    30473043            "support": {
    30483044                "issues": "https://github.com/phpstan/phpstan-symfony/issues",
    3049                 "source": "https://github.com/phpstan/phpstan-symfony/tree/1.3.1"
    3050             },
    3051             "time": "2023-04-14T16:59:18+00:00"
     3045                "source": "https://github.com/phpstan/phpstan-symfony/tree/1.3.2"
     3046            },
     3047            "time": "2023-05-16T12:46:15+00:00"
    30523048        },
    30533049        {
     
    33713367        {
    33723368            "name": "phpunit/phpunit",
    3373             "version": "9.6.7",
     3369            "version": "9.6.9",
    33743370            "source": {
    33753371                "type": "git",
    33763372                "url": "https://github.com/sebastianbergmann/phpunit.git",
    3377                 "reference": "c993f0d3b0489ffc42ee2fe0bd645af1538a63b2"
    3378             },
    3379             "dist": {
    3380                 "type": "zip",
    3381                 "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/c993f0d3b0489ffc42ee2fe0bd645af1538a63b2",
    3382                 "reference": "c993f0d3b0489ffc42ee2fe0bd645af1538a63b2",
     3373                "reference": "a9aceaf20a682aeacf28d582654a1670d8826778"
     3374            },
     3375            "dist": {
     3376                "type": "zip",
     3377                "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/a9aceaf20a682aeacf28d582654a1670d8826778",
     3378                "reference": "a9aceaf20a682aeacf28d582654a1670d8826778",
    33833379                "shasum": ""
    33843380            },
     
    34543450                "issues": "https://github.com/sebastianbergmann/phpunit/issues",
    34553451                "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
    3456                 "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.7"
     3452                "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.9"
    34573453            },
    34583454            "funding": [
     
    34703466                }
    34713467            ],
    3472             "time": "2023-04-14T08:58:40+00:00"
     3468            "time": "2023-06-11T06:13:56+00:00"
    34733469        },
    34743470        {
     
    48324828        {
    48334829            "name": "seld/jsonlint",
    4834             "version": "1.9.0",
     4830            "version": "1.10.0",
    48354831            "source": {
    48364832                "type": "git",
    48374833                "url": "https://github.com/Seldaek/jsonlint.git",
    4838                 "reference": "4211420d25eba80712bff236a98960ef68b866b7"
    4839             },
    4840             "dist": {
    4841                 "type": "zip",
    4842                 "url": "https://api.github.com/repos/Seldaek/jsonlint/zipball/4211420d25eba80712bff236a98960ef68b866b7",
    4843                 "reference": "4211420d25eba80712bff236a98960ef68b866b7",
     4834                "reference": "594fd6462aad8ecee0b45ca5045acea4776667f1"
     4835            },
     4836            "dist": {
     4837                "type": "zip",
     4838                "url": "https://api.github.com/repos/Seldaek/jsonlint/zipball/594fd6462aad8ecee0b45ca5045acea4776667f1",
     4839                "reference": "594fd6462aad8ecee0b45ca5045acea4776667f1",
    48444840                "shasum": ""
    48454841            },
     
    48804876            "support": {
    48814877                "issues": "https://github.com/Seldaek/jsonlint/issues",
    4882                 "source": "https://github.com/Seldaek/jsonlint/tree/1.9.0"
     4878                "source": "https://github.com/Seldaek/jsonlint/tree/1.10.0"
    48834879            },
    48844880            "funding": [
     
    48924888                }
    48934889            ],
    4894             "time": "2022-04-01T13:37:23+00:00"
     4890            "time": "2023-05-11T13:16:46+00:00"
    48954891        },
    48964892        {
     
    51235119        {
    51245120            "name": "symfony/config",
    5125             "version": "v6.2.7",
     5121            "version": "v6.0.19",
    51265122            "source": {
    51275123                "type": "git",
    51285124                "url": "https://github.com/symfony/config.git",
    5129                 "reference": "249271da6f545d6579e0663374f8249a80be2893"
    5130             },
    5131             "dist": {
    5132                 "type": "zip",
    5133                 "url": "https://api.github.com/repos/symfony/config/zipball/249271da6f545d6579e0663374f8249a80be2893",
    5134                 "reference": "249271da6f545d6579e0663374f8249a80be2893",
    5135                 "shasum": ""
    5136             },
    5137             "require": {
    5138                 "php": ">=8.1",
     5125                "reference": "db4fc45c24e0c3e2198e68ada9d7f90daa1f97e3"
     5126            },
     5127            "dist": {
     5128                "type": "zip",
     5129                "url": "https://api.github.com/repos/symfony/config/zipball/db4fc45c24e0c3e2198e68ada9d7f90daa1f97e3",
     5130                "reference": "db4fc45c24e0c3e2198e68ada9d7f90daa1f97e3",
     5131                "shasum": ""
     5132            },
     5133            "require": {
     5134                "php": ">=8.0.2",
    51395135                "symfony/deprecation-contracts": "^2.1|^3",
    51405136                "symfony/filesystem": "^5.4|^6.0",
    5141                 "symfony/polyfill-ctype": "~1.8"
     5137                "symfony/polyfill-ctype": "~1.8",
     5138                "symfony/polyfill-php81": "^1.22"
    51425139            },
    51435140            "conflict": {
    5144                 "symfony/finder": "<5.4"
     5141                "symfony/finder": "<4.4"
    51455142            },
    51465143            "require-dev": {
     
    51805177            "homepage": "https://symfony.com",
    51815178            "support": {
    5182                 "source": "https://github.com/symfony/config/tree/v6.2.7"
     5179                "source": "https://github.com/symfony/config/tree/v6.0.19"
    51835180            },
    51845181            "funding": [
     
    51965193                }
    51975194            ],
    5198             "time": "2023-02-14T08:44:56+00:00"
     5195            "time": "2023-01-09T04:36:00+00:00"
    51995196        },
    52005197        {
    52015198            "name": "symfony/console",
    5202             "version": "v5.4.23",
     5199            "version": "v5.4.24",
    52035200            "source": {
    52045201                "type": "git",
    52055202                "url": "https://github.com/symfony/console.git",
    5206                 "reference": "90f21e27d0d88ce38720556dd164d4a1e4c3934c"
    5207             },
    5208             "dist": {
    5209                 "type": "zip",
    5210                 "url": "https://api.github.com/repos/symfony/console/zipball/90f21e27d0d88ce38720556dd164d4a1e4c3934c",
    5211                 "reference": "90f21e27d0d88ce38720556dd164d4a1e4c3934c",
     5203                "reference": "560fc3ed7a43e6d30ea94a07d77f9a60b8ed0fb8"
     5204            },
     5205            "dist": {
     5206                "type": "zip",
     5207                "url": "https://api.github.com/repos/symfony/console/zipball/560fc3ed7a43e6d30ea94a07d77f9a60b8ed0fb8",
     5208                "reference": "560fc3ed7a43e6d30ea94a07d77f9a60b8ed0fb8",
    52125209                "shasum": ""
    52135210            },
     
    52795276            ],
    52805277            "support": {
    5281                 "source": "https://github.com/symfony/console/tree/v5.4.23"
     5278                "source": "https://github.com/symfony/console/tree/v5.4.24"
    52825279            },
    52835280            "funding": [
     
    52955292                }
    52965293            ],
    5297             "time": "2023-04-24T18:47:29+00:00"
     5294            "time": "2023-05-26T05:13:16+00:00"
    52985295        },
    52995296        {
    53005297            "name": "symfony/dependency-injection",
    5301             "version": "v6.2.10",
     5298            "version": "v6.0.20",
    53025299            "source": {
    53035300                "type": "git",
    53045301                "url": "https://github.com/symfony/dependency-injection.git",
    5305                 "reference": "d732a66a2672669232c0b4536c8c96724a679780"
    5306             },
    5307             "dist": {
    5308                 "type": "zip",
    5309                 "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/d732a66a2672669232c0b4536c8c96724a679780",
    5310                 "reference": "d732a66a2672669232c0b4536c8c96724a679780",
    5311                 "shasum": ""
    5312             },
    5313             "require": {
    5314                 "php": ">=8.1",
     5302                "reference": "359806e1adebd1c43e18e5ea22acd14bef7fcf8c"
     5303            },
     5304            "dist": {
     5305                "type": "zip",
     5306                "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/359806e1adebd1c43e18e5ea22acd14bef7fcf8c",
     5307                "reference": "359806e1adebd1c43e18e5ea22acd14bef7fcf8c",
     5308                "shasum": ""
     5309            },
     5310            "require": {
     5311                "php": ">=8.0.2",
    53155312                "psr/container": "^1.1|^2.0",
    53165313                "symfony/deprecation-contracts": "^2.1|^3",
    5317                 "symfony/service-contracts": "^1.1.6|^2.0|^3.0",
    5318                 "symfony/var-exporter": "^6.2.7"
     5314                "symfony/polyfill-php81": "^1.22",
     5315                "symfony/service-contracts": "^1.1.6|^2.0|^3.0"
    53195316            },
    53205317            "conflict": {
    53215318                "ext-psr": "<1.1|>=2",
    5322                 "symfony/config": "<6.1",
     5319                "symfony/config": "<5.4",
    53235320                "symfony/finder": "<5.4",
    5324                 "symfony/proxy-manager-bridge": "<6.2",
     5321                "symfony/proxy-manager-bridge": "<5.4",
    53255322                "symfony/yaml": "<5.4"
    53265323            },
     
    53305327            },
    53315328            "require-dev": {
    5332                 "symfony/config": "^6.1",
     5329                "symfony/config": "^5.4|^6.0",
    53335330                "symfony/expression-language": "^5.4|^6.0",
    53345331                "symfony/yaml": "^5.4|^6.0"
     
    53385335                "symfony/expression-language": "For using expressions in service container configuration",
    53395336                "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required",
     5337                "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them",
    53405338                "symfony/yaml": ""
    53415339            },
     
    53665364            "homepage": "https://symfony.com",
    53675365            "support": {
    5368                 "source": "https://github.com/symfony/dependency-injection/tree/v6.2.10"
     5366                "source": "https://github.com/symfony/dependency-injection/tree/v6.0.20"
    53695367            },
    53705368            "funding": [
     
    53825380                }
    53835381            ],
    5384             "time": "2023-04-21T15:42:15+00:00"
     5382            "time": "2023-01-30T15:41:07+00:00"
    53855383        },
    53865384        {
    53875385            "name": "symfony/deprecation-contracts",
    5388             "version": "v3.2.1",
     5386            "version": "v3.0.2",
    53895387            "source": {
    53905388                "type": "git",
    53915389                "url": "https://github.com/symfony/deprecation-contracts.git",
    5392                 "reference": "e2d1534420bd723d0ef5aec58a22c5fe60ce6f5e"
    5393             },
    5394             "dist": {
    5395                 "type": "zip",
    5396                 "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/e2d1534420bd723d0ef5aec58a22c5fe60ce6f5e",
    5397                 "reference": "e2d1534420bd723d0ef5aec58a22c5fe60ce6f5e",
    5398                 "shasum": ""
    5399             },
    5400             "require": {
    5401                 "php": ">=8.1"
     5390                "reference": "26954b3d62a6c5fd0ea8a2a00c0353a14978d05c"
     5391            },
     5392            "dist": {
     5393                "type": "zip",
     5394                "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/26954b3d62a6c5fd0ea8a2a00c0353a14978d05c",
     5395                "reference": "26954b3d62a6c5fd0ea8a2a00c0353a14978d05c",
     5396                "shasum": ""
     5397            },
     5398            "require": {
     5399                "php": ">=8.0.2"
    54025400            },
    54035401            "type": "library",
    54045402            "extra": {
    54055403                "branch-alias": {
    5406                     "dev-main": "3.3-dev"
     5404                    "dev-main": "3.0-dev"
    54075405                },
    54085406                "thanks": {
     
    54335431            "homepage": "https://symfony.com",
    54345432            "support": {
    5435                 "source": "https://github.com/symfony/deprecation-contracts/tree/v3.2.1"
     5433                "source": "https://github.com/symfony/deprecation-contracts/tree/v3.0.2"
    54365434            },
    54375435            "funding": [
     
    54495447                }
    54505448            ],
    5451             "time": "2023-03-01T10:25:55+00:00"
     5449            "time": "2022-01-02T09:55:41+00:00"
    54525450        },
    54535451        {
    54545452            "name": "symfony/dotenv",
    5455             "version": "v6.2.8",
     5453            "version": "v6.0.19",
    54565454            "source": {
    54575455                "type": "git",
    54585456                "url": "https://github.com/symfony/dotenv.git",
    5459                 "reference": "4481aa45be7a11d2335c1d5b5bbe2f0c6199b105"
    5460             },
    5461             "dist": {
    5462                 "type": "zip",
    5463                 "url": "https://api.github.com/repos/symfony/dotenv/zipball/4481aa45be7a11d2335c1d5b5bbe2f0c6199b105",
    5464                 "reference": "4481aa45be7a11d2335c1d5b5bbe2f0c6199b105",
    5465                 "shasum": ""
    5466             },
    5467             "require": {
    5468                 "php": ">=8.1"
    5469             },
    5470             "conflict": {
    5471                 "symfony/console": "<5.4",
    5472                 "symfony/process": "<5.4"
     5457                "reference": "9cee123707e689f7e06c09624c145d206468bcf2"
     5458            },
     5459            "dist": {
     5460                "type": "zip",
     5461                "url": "https://api.github.com/repos/symfony/dotenv/zipball/9cee123707e689f7e06c09624c145d206468bcf2",
     5462                "reference": "9cee123707e689f7e06c09624c145d206468bcf2",
     5463                "shasum": ""
     5464            },
     5465            "require": {
     5466                "php": ">=8.0.2"
    54735467            },
    54745468            "require-dev": {
     
    55075501            ],
    55085502            "support": {
    5509                 "source": "https://github.com/symfony/dotenv/tree/v6.2.8"
     5503                "source": "https://github.com/symfony/dotenv/tree/v6.0.19"
    55105504            },
    55115505            "funding": [
     
    55235517                }
    55245518            ],
    5525             "time": "2023-03-10T10:06:03+00:00"
     5519            "time": "2023-01-01T08:36:10+00:00"
    55265520        },
    55275521        {
    55285522            "name": "symfony/event-dispatcher",
    5529             "version": "v6.2.8",
     5523            "version": "v6.0.19",
    55305524            "source": {
    55315525                "type": "git",
    55325526                "url": "https://github.com/symfony/event-dispatcher.git",
    5533                 "reference": "04046f35fd7d72f9646e721fc2ecb8f9c67d3339"
    5534             },
    5535             "dist": {
    5536                 "type": "zip",
    5537                 "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/04046f35fd7d72f9646e721fc2ecb8f9c67d3339",
    5538                 "reference": "04046f35fd7d72f9646e721fc2ecb8f9c67d3339",
    5539                 "shasum": ""
    5540             },
    5541             "require": {
    5542                 "php": ">=8.1",
     5527                "reference": "2eaf8e63bc5b8cefabd4a800157f0d0c094f677a"
     5528            },
     5529            "dist": {
     5530                "type": "zip",
     5531                "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/2eaf8e63bc5b8cefabd4a800157f0d0c094f677a",
     5532                "reference": "2eaf8e63bc5b8cefabd4a800157f0d0c094f677a",
     5533                "shasum": ""
     5534            },
     5535            "require": {
     5536                "php": ">=8.0.2",
    55435537                "symfony/event-dispatcher-contracts": "^2|^3"
    55445538            },
     
    55905584            "homepage": "https://symfony.com",
    55915585            "support": {
    5592                 "source": "https://github.com/symfony/event-dispatcher/tree/v6.2.8"
     5586                "source": "https://github.com/symfony/event-dispatcher/tree/v6.0.19"
    55935587            },
    55945588            "funding": [
     
    56065600                }
    56075601            ],
    5608             "time": "2023-03-20T16:06:02+00:00"
     5602            "time": "2023-01-01T08:36:10+00:00"
    56095603        },
    56105604        {
    56115605            "name": "symfony/event-dispatcher-contracts",
    5612             "version": "v3.2.1",
     5606            "version": "v3.0.2",
    56135607            "source": {
    56145608                "type": "git",
    56155609                "url": "https://github.com/symfony/event-dispatcher-contracts.git",
    5616                 "reference": "0ad3b6f1e4e2da5690fefe075cd53a238646d8dd"
    5617             },
    5618             "dist": {
    5619                 "type": "zip",
    5620                 "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/0ad3b6f1e4e2da5690fefe075cd53a238646d8dd",
    5621                 "reference": "0ad3b6f1e4e2da5690fefe075cd53a238646d8dd",
    5622                 "shasum": ""
    5623             },
    5624             "require": {
    5625                 "php": ">=8.1",
     5610                "reference": "7bc61cc2db649b4637d331240c5346dcc7708051"
     5611            },
     5612            "dist": {
     5613                "type": "zip",
     5614                "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/7bc61cc2db649b4637d331240c5346dcc7708051",
     5615                "reference": "7bc61cc2db649b4637d331240c5346dcc7708051",
     5616                "shasum": ""
     5617            },
     5618            "require": {
     5619                "php": ">=8.0.2",
    56265620                "psr/event-dispatcher": "^1"
    56275621            },
     
    56325626            "extra": {
    56335627                "branch-alias": {
    5634                     "dev-main": "3.3-dev"
     5628                    "dev-main": "3.0-dev"
    56355629                },
    56365630                "thanks": {
     
    56695663            ],
    56705664            "support": {
    5671                 "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.2.1"
     5665                "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.0.2"
    56725666            },
    56735667            "funding": [
     
    56855679                }
    56865680            ],
    5687             "time": "2023-03-01T10:32:47+00:00"
     5681            "time": "2022-01-02T09:55:41+00:00"
    56885682        },
    56895683        {
    56905684            "name": "symfony/filesystem",
    5691             "version": "v6.2.10",
     5685            "version": "v6.0.19",
    56925686            "source": {
    56935687                "type": "git",
    56945688                "url": "https://github.com/symfony/filesystem.git",
    5695                 "reference": "fd588debf7d1bc16a2c84b4b3b71145d9946b894"
    5696             },
    5697             "dist": {
    5698                 "type": "zip",
    5699                 "url": "https://api.github.com/repos/symfony/filesystem/zipball/fd588debf7d1bc16a2c84b4b3b71145d9946b894",
    5700                 "reference": "fd588debf7d1bc16a2c84b4b3b71145d9946b894",
    5701                 "shasum": ""
    5702             },
    5703             "require": {
    5704                 "php": ">=8.1",
     5689                "reference": "3d49eec03fda1f0fc19b7349fbbe55ebc1004214"
     5690            },
     5691            "dist": {
     5692                "type": "zip",
     5693                "url": "https://api.github.com/repos/symfony/filesystem/zipball/3d49eec03fda1f0fc19b7349fbbe55ebc1004214",
     5694                "reference": "3d49eec03fda1f0fc19b7349fbbe55ebc1004214",
     5695                "shasum": ""
     5696            },
     5697            "require": {
     5698                "php": ">=8.0.2",
    57055699                "symfony/polyfill-ctype": "~1.8",
    57065700                "symfony/polyfill-mbstring": "~1.8"
     
    57325726            "homepage": "https://symfony.com",
    57335727            "support": {
    5734                 "source": "https://github.com/symfony/filesystem/tree/v6.2.10"
     5728                "source": "https://github.com/symfony/filesystem/tree/v6.0.19"
    57355729            },
    57365730            "funding": [
     
    57485742                }
    57495743            ],
    5750             "time": "2023-04-18T13:46:08+00:00"
     5744            "time": "2023-01-20T17:44:14+00:00"
    57515745        },
    57525746        {
    57535747            "name": "symfony/finder",
    5754             "version": "v6.2.7",
     5748            "version": "v6.0.19",
    57555749            "source": {
    57565750                "type": "git",
    57575751                "url": "https://github.com/symfony/finder.git",
    5758                 "reference": "20808dc6631aecafbe67c186af5dcb370be3a0eb"
    5759             },
    5760             "dist": {
    5761                 "type": "zip",
    5762                 "url": "https://api.github.com/repos/symfony/finder/zipball/20808dc6631aecafbe67c186af5dcb370be3a0eb",
    5763                 "reference": "20808dc6631aecafbe67c186af5dcb370be3a0eb",
    5764                 "shasum": ""
    5765             },
    5766             "require": {
    5767                 "php": ">=8.1"
    5768             },
    5769             "require-dev": {
    5770                 "symfony/filesystem": "^6.0"
     5752                "reference": "5cc9cac6586fc0c28cd173780ca696e419fefa11"
     5753            },
     5754            "dist": {
     5755                "type": "zip",
     5756                "url": "https://api.github.com/repos/symfony/finder/zipball/5cc9cac6586fc0c28cd173780ca696e419fefa11",
     5757                "reference": "5cc9cac6586fc0c28cd173780ca696e419fefa11",
     5758                "shasum": ""
     5759            },
     5760            "require": {
     5761                "php": ">=8.0.2"
    57715762            },
    57725763            "type": "library",
     
    57965787            "homepage": "https://symfony.com",
    57975788            "support": {
    5798                 "source": "https://github.com/symfony/finder/tree/v6.2.7"
     5789                "source": "https://github.com/symfony/finder/tree/v6.0.19"
    57995790            },
    58005791            "funding": [
     
    58125803                }
    58135804            ],
    5814             "time": "2023-02-16T09:57:23+00:00"
     5805            "time": "2023-01-20T17:44:14+00:00"
    58155806        },
    58165807        {
    58175808            "name": "symfony/options-resolver",
    5818             "version": "v6.2.7",
     5809            "version": "v6.0.19",
    58195810            "source": {
    58205811                "type": "git",
    58215812                "url": "https://github.com/symfony/options-resolver.git",
    5822                 "reference": "aa0e85b53bbb2b4951960efd61d295907eacd629"
    5823             },
    5824             "dist": {
    5825                 "type": "zip",
    5826                 "url": "https://api.github.com/repos/symfony/options-resolver/zipball/aa0e85b53bbb2b4951960efd61d295907eacd629",
    5827                 "reference": "aa0e85b53bbb2b4951960efd61d295907eacd629",
    5828                 "shasum": ""
    5829             },
    5830             "require": {
    5831                 "php": ">=8.1",
     5813                "reference": "6a180d1c45e0d9797470ca9eb46215692de00fa3"
     5814            },
     5815            "dist": {
     5816                "type": "zip",
     5817                "url": "https://api.github.com/repos/symfony/options-resolver/zipball/6a180d1c45e0d9797470ca9eb46215692de00fa3",
     5818                "reference": "6a180d1c45e0d9797470ca9eb46215692de00fa3",
     5819                "shasum": ""
     5820            },
     5821            "require": {
     5822                "php": ">=8.0.2",
    58325823                "symfony/deprecation-contracts": "^2.1|^3"
    58335824            },
     
    58635854            ],
    58645855            "support": {
    5865                 "source": "https://github.com/symfony/options-resolver/tree/v6.2.7"
     5856                "source": "https://github.com/symfony/options-resolver/tree/v6.0.19"
    58665857            },
    58675858            "funding": [
     
    58795870                }
    58805871            ],
    5881             "time": "2023-02-14T08:44:56+00:00"
     5872            "time": "2023-01-01T08:36:10+00:00"
    58825873        },
    58835874        {
     
    64546445        {
    64556446            "name": "symfony/process",
    6456             "version": "v6.2.10",
     6447            "version": "v6.0.19",
    64576448            "source": {
    64586449                "type": "git",
    64596450                "url": "https://github.com/symfony/process.git",
    6460                 "reference": "b34cdbc9c5e75d45a3703e63a48ad07aafa8bf2e"
    6461             },
    6462             "dist": {
    6463                 "type": "zip",
    6464                 "url": "https://api.github.com/repos/symfony/process/zipball/b34cdbc9c5e75d45a3703e63a48ad07aafa8bf2e",
    6465                 "reference": "b34cdbc9c5e75d45a3703e63a48ad07aafa8bf2e",
    6466                 "shasum": ""
    6467             },
    6468             "require": {
    6469                 "php": ">=8.1"
     6451                "reference": "2114fd60f26a296cc403a7939ab91478475a33d4"
     6452            },
     6453            "dist": {
     6454                "type": "zip",
     6455                "url": "https://api.github.com/repos/symfony/process/zipball/2114fd60f26a296cc403a7939ab91478475a33d4",
     6456                "reference": "2114fd60f26a296cc403a7939ab91478475a33d4",
     6457                "shasum": ""
     6458            },
     6459            "require": {
     6460                "php": ">=8.0.2"
    64706461            },
    64716462            "type": "library",
     
    64956486            "homepage": "https://symfony.com",
    64966487            "support": {
    6497                 "source": "https://github.com/symfony/process/tree/v6.2.10"
     6488                "source": "https://github.com/symfony/process/tree/v6.0.19"
    64986489            },
    64996490            "funding": [
     
    65116502                }
    65126503            ],
    6513             "time": "2023-04-18T13:56:57+00:00"
     6504            "time": "2023-01-01T08:36:10+00:00"
    65146505        },
    65156506        {
    65166507            "name": "symfony/service-contracts",
    6517             "version": "v3.2.1",
     6508            "version": "v3.0.2",
    65186509            "source": {
    65196510                "type": "git",
    65206511                "url": "https://github.com/symfony/service-contracts.git",
    6521                 "reference": "a8c9cedf55f314f3a186041d19537303766df09a"
    6522             },
    6523             "dist": {
    6524                 "type": "zip",
    6525                 "url": "https://api.github.com/repos/symfony/service-contracts/zipball/a8c9cedf55f314f3a186041d19537303766df09a",
    6526                 "reference": "a8c9cedf55f314f3a186041d19537303766df09a",
    6527                 "shasum": ""
    6528             },
    6529             "require": {
    6530                 "php": ">=8.1",
     6512                "reference": "d78d39c1599bd1188b8e26bb341da52c3c6d8a66"
     6513            },
     6514            "dist": {
     6515                "type": "zip",
     6516                "url": "https://api.github.com/repos/symfony/service-contracts/zipball/d78d39c1599bd1188b8e26bb341da52c3c6d8a66",
     6517                "reference": "d78d39c1599bd1188b8e26bb341da52c3c6d8a66",
     6518                "shasum": ""
     6519            },
     6520            "require": {
     6521                "php": ">=8.0.2",
    65316522                "psr/container": "^2.0"
    65326523            },
     
    65406531            "extra": {
    65416532                "branch-alias": {
    6542                     "dev-main": "3.3-dev"
     6533                    "dev-main": "3.0-dev"
    65436534                },
    65446535                "thanks": {
     
    65506541                "psr-4": {
    65516542                    "Symfony\\Contracts\\Service\\": ""
    6552                 },
    6553                 "exclude-from-classmap": [
    6554                     "/Test/"
    6555                 ]
     6543                }
    65566544            },
    65576545            "notification-url": "https://packagist.org/downloads/",
     
    65806568            ],
    65816569            "support": {
    6582                 "source": "https://github.com/symfony/service-contracts/tree/v3.2.1"
     6570                "source": "https://github.com/symfony/service-contracts/tree/v3.0.2"
    65836571            },
    65846572            "funding": [
     
    65966584                }
    65976585            ],
    6598             "time": "2023-03-01T10:32:47+00:00"
     6586            "time": "2022-05-30T19:17:58+00:00"
    65996587        },
    66006588        {
    66016589            "name": "symfony/stopwatch",
    6602             "version": "v6.2.7",
     6590            "version": "v6.0.19",
    66036591            "source": {
    66046592                "type": "git",
    66056593                "url": "https://github.com/symfony/stopwatch.git",
    6606                 "reference": "f3adc98c1061875dd2edcd45e5b04e63d0e29f8f"
    6607             },
    6608             "dist": {
    6609                 "type": "zip",
    6610                 "url": "https://api.github.com/repos/symfony/stopwatch/zipball/f3adc98c1061875dd2edcd45e5b04e63d0e29f8f",
    6611                 "reference": "f3adc98c1061875dd2edcd45e5b04e63d0e29f8f",
    6612                 "shasum": ""
    6613             },
    6614             "require": {
    6615                 "php": ">=8.1",
     6594                "reference": "011e781839dd1d2eb8119f65ac516a530f60226d"
     6595            },
     6596            "dist": {
     6597                "type": "zip",
     6598                "url": "https://api.github.com/repos/symfony/stopwatch/zipball/011e781839dd1d2eb8119f65ac516a530f60226d",
     6599                "reference": "011e781839dd1d2eb8119f65ac516a530f60226d",
     6600                "shasum": ""
     6601            },
     6602            "require": {
     6603                "php": ">=8.0.2",
    66166604                "symfony/service-contracts": "^1|^2|^3"
    66176605            },
     
    66426630            "homepage": "https://symfony.com",
    66436631            "support": {
    6644                 "source": "https://github.com/symfony/stopwatch/tree/v6.2.7"
     6632                "source": "https://github.com/symfony/stopwatch/tree/v6.0.19"
    66456633            },
    66466634            "funding": [
     
    66586646                }
    66596647            ],
    6660             "time": "2023-02-14T08:44:56+00:00"
     6648            "time": "2023-01-01T08:36:10+00:00"
    66616649        },
    66626650        {
    66636651            "name": "symfony/string",
    6664             "version": "v6.2.8",
     6652            "version": "v6.0.19",
    66656653            "source": {
    66666654                "type": "git",
    66676655                "url": "https://github.com/symfony/string.git",
    6668                 "reference": "193e83bbd6617d6b2151c37fff10fa7168ebddef"
    6669             },
    6670             "dist": {
    6671                 "type": "zip",
    6672                 "url": "https://api.github.com/repos/symfony/string/zipball/193e83bbd6617d6b2151c37fff10fa7168ebddef",
    6673                 "reference": "193e83bbd6617d6b2151c37fff10fa7168ebddef",
    6674                 "shasum": ""
    6675             },
    6676             "require": {
    6677                 "php": ">=8.1",
     6656                "reference": "d9e72497367c23e08bf94176d2be45b00a9d232a"
     6657            },
     6658            "dist": {
     6659                "type": "zip",
     6660                "url": "https://api.github.com/repos/symfony/string/zipball/d9e72497367c23e08bf94176d2be45b00a9d232a",
     6661                "reference": "d9e72497367c23e08bf94176d2be45b00a9d232a",
     6662                "shasum": ""
     6663            },
     6664            "require": {
     6665                "php": ">=8.0.2",
    66786666                "symfony/polyfill-ctype": "~1.8",
    66796667                "symfony/polyfill-intl-grapheme": "~1.0",
     
    66876675                "symfony/error-handler": "^5.4|^6.0",
    66886676                "symfony/http-client": "^5.4|^6.0",
    6689                 "symfony/intl": "^6.2",
    66906677                "symfony/translation-contracts": "^2.0|^3.0",
    66916678                "symfony/var-exporter": "^5.4|^6.0"
     
    67286715            ],
    67296716            "support": {
    6730                 "source": "https://github.com/symfony/string/tree/v6.2.8"
     6717                "source": "https://github.com/symfony/string/tree/v6.0.19"
    67316718            },
    67326719            "funding": [
     
    67446731                }
    67456732            ],
    6746             "time": "2023-03-20T16:06:02+00:00"
    6747         },
    6748         {
    6749             "name": "symfony/var-exporter",
    6750             "version": "v6.2.10",
    6751             "source": {
    6752                 "type": "git",
    6753                 "url": "https://github.com/symfony/var-exporter.git",
    6754                 "reference": "9a07920c2058bafee921ce4d90aeef2193837d63"
    6755             },
    6756             "dist": {
    6757                 "type": "zip",
    6758                 "url": "https://api.github.com/repos/symfony/var-exporter/zipball/9a07920c2058bafee921ce4d90aeef2193837d63",
    6759                 "reference": "9a07920c2058bafee921ce4d90aeef2193837d63",
    6760                 "shasum": ""
    6761             },
    6762             "require": {
    6763                 "php": ">=8.1"
    6764             },
    6765             "require-dev": {
    6766                 "symfony/var-dumper": "^5.4|^6.0"
    6767             },
     6733            "time": "2023-01-01T08:36:10+00:00"
     6734        },
     6735        {
     6736            "name": "symfony/yaml",
     6737            "version": "v6.0.19",
     6738            "source": {
     6739                "type": "git",
     6740                "url": "https://github.com/symfony/yaml.git",
     6741                "reference": "deec3a812a0305a50db8ae689b183f43d915c884"
     6742            },
     6743            "dist": {
     6744                "type": "zip",
     6745                "url": "https://api.github.com/repos/symfony/yaml/zipball/deec3a812a0305a50db8ae689b183f43d915c884",
     6746                "reference": "deec3a812a0305a50db8ae689b183f43d915c884",
     6747                "shasum": ""
     6748            },
     6749            "require": {
     6750                "php": ">=8.0.2",
     6751                "symfony/polyfill-ctype": "^1.8"
     6752            },
     6753            "conflict": {
     6754                "symfony/console": "<5.4"
     6755            },
     6756            "require-dev": {
     6757                "symfony/console": "^5.4|^6.0"
     6758            },
     6759            "suggest": {
     6760                "symfony/console": "For validating YAML files using the lint command"
     6761            },
     6762            "bin": [
     6763                "Resources/bin/yaml-lint"
     6764            ],
    67686765            "type": "library",
    67696766            "autoload": {
    67706767                "psr-4": {
    6771                     "Symfony\\Component\\VarExporter\\": ""
     6768                    "Symfony\\Component\\Yaml\\": ""
    67726769                },
    67736770                "exclude-from-classmap": [
     
    67816778            "authors": [
    67826779                {
    6783                     "name": "Nicolas Grekas",
    6784                     "email": "p@tchwork.com"
     6780                    "name": "Fabien Potencier",
     6781                    "email": "fabien@symfony.com"
    67856782                },
    67866783                {
     
    67896786                }
    67906787            ],
    6791             "description": "Allows exporting any serializable PHP data structure to plain PHP code",
     6788            "description": "Loads and dumps YAML files",
    67926789            "homepage": "https://symfony.com",
    6793             "keywords": [
    6794                 "clone",
    6795                 "construct",
    6796                 "export",
    6797                 "hydrate",
    6798                 "instantiate",
    6799                 "lazy-loading",
    6800                 "proxy",
    6801                 "serialize"
    6802             ],
    6803             "support": {
    6804                 "source": "https://github.com/symfony/var-exporter/tree/v6.2.10"
     6790            "support": {
     6791                "source": "https://github.com/symfony/yaml/tree/v6.0.19"
    68056792            },
    68066793            "funding": [
     
    68186805                }
    68196806            ],
    6820             "time": "2023-04-21T08:33:05+00:00"
    6821         },
    6822         {
    6823             "name": "symfony/yaml",
    6824             "version": "v6.2.10",
    6825             "source": {
    6826                 "type": "git",
    6827                 "url": "https://github.com/symfony/yaml.git",
    6828                 "reference": "61916f3861b1e9705b18cfde723921a71dd1559d"
    6829             },
    6830             "dist": {
    6831                 "type": "zip",
    6832                 "url": "https://api.github.com/repos/symfony/yaml/zipball/61916f3861b1e9705b18cfde723921a71dd1559d",
    6833                 "reference": "61916f3861b1e9705b18cfde723921a71dd1559d",
    6834                 "shasum": ""
    6835             },
    6836             "require": {
    6837                 "php": ">=8.1",
    6838                 "symfony/polyfill-ctype": "^1.8"
    6839             },
    6840             "conflict": {
    6841                 "symfony/console": "<5.4"
    6842             },
    6843             "require-dev": {
    6844                 "symfony/console": "^5.4|^6.0"
    6845             },
    6846             "suggest": {
    6847                 "symfony/console": "For validating YAML files using the lint command"
    6848             },
    6849             "bin": [
    6850                 "Resources/bin/yaml-lint"
    6851             ],
    6852             "type": "library",
    6853             "autoload": {
    6854                 "psr-4": {
    6855                     "Symfony\\Component\\Yaml\\": ""
    6856                 },
    6857                 "exclude-from-classmap": [
    6858                     "/Tests/"
    6859                 ]
    6860             },
    6861             "notification-url": "https://packagist.org/downloads/",
    6862             "license": [
    6863                 "MIT"
    6864             ],
    6865             "authors": [
    6866                 {
    6867                     "name": "Fabien Potencier",
    6868                     "email": "[email protected]"
    6869                 },
    6870                 {
    6871                     "name": "Symfony Community",
    6872                     "homepage": "https://symfony.com/contributors"
    6873                 }
    6874             ],
    6875             "description": "Loads and dumps YAML files",
    6876             "homepage": "https://symfony.com",
    6877             "support": {
    6878                 "source": "https://github.com/symfony/yaml/tree/v6.2.10"
    6879             },
    6880             "funding": [
    6881                 {
    6882                     "url": "https://symfony.com/sponsor",
    6883                     "type": "custom"
    6884                 },
    6885                 {
    6886                     "url": "https://github.com/fabpot",
    6887                     "type": "github"
    6888                 },
    6889                 {
    6890                     "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
    6891                     "type": "tidelift"
    6892                 }
    6893             ],
    6894             "time": "2023-04-28T13:25:36+00:00"
     6807            "time": "2023-01-11T11:50:03+00:00"
    68956808        },
    68966809        {
  • splash-connector/tags/2.0.6/vendor/splash/phpcore/docker-compose.yml

    r2865644 r2947048  
    2424
    2525services:
     26
     27    ################################################################################
     28    # PHP 8.2
     29    php-8.2:
     30        image:          registry.gitlab.com/badpixxel-projects/php-sdk:php-8.2
     31        container_name: php-core-8.2
     32        volumes:
     33            - ./:/var/www/html
     34            - vendor-php82:/var/www/html/vendor
    2635
    2736    ################################################################################
     
    5362
    5463volumes:
     64    vendor-php82: ~
    5565    vendor-php81: ~
    5666    vendor-php80: ~
  • splash-connector/trunk/README.md

    r2865644 r2947048  
    2121
    2222* PHP 7.4 || 8.0+
    23 * Wordpress 5.9+
     23* Wordpress 6.1+
    2424* An active Splash Sync User Account
    2525
  • splash-connector/trunk/readme.txt

    r2914866 r2947048  
    33Donate link: http://www.splashsync.com
    44Tags: wordpress, woocommerce, splash, synchronization, e-commerce, ERP, prestashop, magento, dolibarr
    5 Requires at least: 6.0
     5Requires at least: 6.1
    66Tested up to: 6.2
    7 Stable tag: 2.0.3
     7Stable tag: 2.0.6
    88License: MIT
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    186186* Added:       PHO 8.0 && 8.1 Compatibility
    187187
     188= 2.0.6 =
     189* 2023-08-03
     190* Refactor:    Order Class Imports
     191* Added:       Colissimo Statuses Compatibility
     192* Added:       Orders & Invoices Status Encoding in Lists
     193
    188194== Upgrade Notice ==
    189195
  • splash-connector/trunk/splash.php

    r2919687 r2947048  
    1414 */
    1515
    16 /*
     16/**
    1717 * Plugin Name: Splash Connector
    18  * Version: 2.0.2
     18 * Version: 2.0.6
    1919 * Plugin URI: https://github.com/SplashSync/Wordpress
    2020 * Description: Splash Sync Wordpress plugin.
    2121 * Author: Splash Sync
    2222 * Author URI: http://www.splashsync.com
    23  * Requires at least: 5.9
     23 * Requires at least: 6.0
    2424 * Tested up to: 6.2
    2525 *
     
    2828 *
    2929 * @package WordPress
     30 *
    3031 * @author Splash Sync
     32 *
    3133 * @since 0.0.1
    3234 */
     
    3941}
    4042
    41 define("SPLASH_SYNC_VERSION", "2.0.4");
     43define("SPLASH_SYNC_VERSION", "2.0.6");
    4244
    4345// Load plugin class files
  • splash-connector/trunk/src/Core/InvoiceStatusManager.php

    r2865644 r2947048  
    3131            "completed", "processing",
    3232            "awaiting-shipment", "shipped",
     33            "lpc_ready_to_ship", "lpc_transit", "lpc_partial_exp", "lpc_anomaly", "lpc_delivered"
    3334        ),
    3435        InvoiceStatus::CANCELED => array(
  • splash-connector/trunk/src/Core/OrderStatusManager.php

    r2865644 r2947048  
    3232        OrderStatus::PROCESSED => array("awaiting-shipment"),
    3333        OrderStatus::OUT_OF_STOCK => array("awaiting-shipment"),
    34         OrderStatus::TO_SHIP => array("awaiting-shipment"),
    35         OrderStatus::IN_TRANSIT => array("shipped"),
     34        OrderStatus::TO_SHIP => array("awaiting-shipment", "lpc_ready_to_ship"),
     35        OrderStatus::IN_TRANSIT => array("shipped", "lpc_transit", "lpc_partial_exp"),
    3636        OrderStatus::PICKUP => array("shipped"),
    37         OrderStatus::PROBLEM => array("shipped"),
    38         OrderStatus::DELIVERED => array("completed"),
     37        OrderStatus::PROBLEM => array("shipped", "lpc_anomaly"),
     38        OrderStatus::DELIVERED => array("completed", "lpc_delivered"),
    3939        OrderStatus::CANCELED => array("cancelled", "refunded", "failed", "trash"),
    4040    );
  • splash-connector/trunk/src/Objects/Order.php

    r2865644 r2947048  
    1818use Exception;
    1919use Splash\Core\SplashCore      as Splash;
    20 use Splash\Local\Core\PrivacyManager;
     20use Splash\Local\Core as Managers;
    2121use Splash\Models\AbstractObject;
    22 use Splash\Models\Objects\GenericFieldsTrait;
    23 use Splash\Models\Objects\ImagesTrait;
    24 use Splash\Models\Objects\IntelParserTrait;
    25 use Splash\Models\Objects\ListsTrait;
    26 use Splash\Models\Objects\PricesTrait;
    27 use Splash\Models\Objects\SimpleFieldsTrait;
     22use Splash\Models\Objects;
    2823use WC_Order;
    2924use WP_Post;
     
    3631    //====================================================================//
    3732    // Splash Php Core Traits
    38     use IntelParserTrait;
    39     use SimpleFieldsTrait;
    40     use GenericFieldsTrait;
    41     use PricesTrait;
    42     use ImagesTrait;
    43     use ListsTrait;
     33    use Objects\IntelParserTrait;
     34    use Objects\SimpleFieldsTrait;
     35    use Objects\GenericFieldsTrait;
     36    use Objects\PricesTrait;
     37    use Objects\ImagesTrait;
     38    use Objects\ListsTrait;
    4439
    4540    //====================================================================//
     
    184179            //====================================================================//
    185180            // Prepare Status Prefix
    186             $statusPrefix = PrivacyManager::isAnonymizeById($wcOrder->ID) ? "[A] " : "";
     181            $statusPrefix = Managers\PrivacyManager::isAnonymizeById($wcOrder->ID) ? "[A] " : "";
     182            $orderStatus = str_replace("wc-", "", $wcOrder->post_status);
    187183            //====================================================================//
    188184            // Prepare List Data
     
    192188                "post_name" => $wcOrder->post_name,
    193189                "post_status" => ($stats[$wcOrder->post_status] ?? "...?"),
    194                 "status" => $statusPrefix.$wcOrder->post_status,
     190                "status" => $statusPrefix.(Managers\OrderStatusManager::encode($orderStatus) ?? $orderStatus),
     191                "invoice_status" => $statusPrefix.(Managers\InvoiceStatusManager::encode($orderStatus) ?? $orderStatus),
    195192                "total" => get_post_meta($wcOrder->ID, "_order_total", true),
    196193                "reference" => "#".$wcOrder->ID
  • splash-connector/trunk/src/Objects/Order/StatusTrait.php

    r2865644 r2947048  
    6060            ->group(__("Status"))
    6161            ->microData("http://schema.org/Invoice", "paymentStatus")
     62            ->isListed()
    6263            ->isReadOnly()
    6364        ;
  • splash-connector/trunk/vendor/autoload.php

    r2919687 r2947048  
    2323require_once __DIR__ . '/composer/autoload_real.php';
    2424
    25 return ComposerAutoloaderInit370a618e464ad2fa73d6bf8d9ccff1f1::getLoader();
     25return ComposerAutoloaderInitbd37bba058c052c6ccdb5e1ddba225d8::getLoader();
  • splash-connector/trunk/vendor/composer/ClassLoader.php

    r2914866 r2947048  
    4646    private static $includeFile;
    4747
    48     /** @var ?string */
     48    /** @var string|null */
    4949    private $vendorDir;
    5050
    5151    // PSR-4
    5252    /**
    53      * @var array[]
    54      * @psalm-var array<string, array<string, int>>
     53     * @var array<string, array<string, int>>
    5554     */
    5655    private $prefixLengthsPsr4 = array();
    5756    /**
    58      * @var array[]
    59      * @psalm-var array<string, array<int, string>>
     57     * @var array<string, list<string>>
    6058     */
    6159    private $prefixDirsPsr4 = array();
    6260    /**
    63      * @var array[]
    64      * @psalm-var array<string, string>
     61     * @var list<string>
    6562     */
    6663    private $fallbackDirsPsr4 = array();
     
    6865    // PSR-0
    6966    /**
    70      * @var array[]
    71      * @psalm-var array<string, array<string, string[]>>
     67     * List of PSR-0 prefixes
     68     *
     69     * Structured as array('F (first letter)' => array('Foo\Bar (full prefix)' => array('path', 'path2')))
     70     *
     71     * @var array<string, array<string, list<string>>>
    7272     */
    7373    private $prefixesPsr0 = array();
    7474    /**
    75      * @var array[]
    76      * @psalm-var array<string, string>
     75     * @var list<string>
    7776     */
    7877    private $fallbackDirsPsr0 = array();
     
    8281
    8382    /**
    84      * @var string[]
    85      * @psalm-var array<string, string>
     83     * @var array<string, string>
    8684     */
    8785    private $classMap = array();
     
    9189
    9290    /**
    93      * @var bool[]
    94      * @psalm-var array<string, bool>
     91     * @var array<string, bool>
    9592     */
    9693    private $missingClasses = array();
    9794
    98     /** @var ?string */
     95    /** @var string|null */
    9996    private $apcuPrefix;
    10097
    10198    /**
    102      * @var self[]
     99     * @var array<string, self>
    103100     */
    104101    private static $registeredLoaders = array();
    105102
    106103    /**
    107      * @param ?string $vendorDir
     104     * @param string|null $vendorDir
    108105     */
    109106    public function __construct($vendorDir = null)
     
    114111
    115112    /**
    116      * @return string[]
     113     * @return array<string, list<string>>
    117114     */
    118115    public function getPrefixes()
     
    126123
    127124    /**
    128      * @return array[]
    129      * @psalm-return array<string, array<int, string>>
     125     * @return array<string, list<string>>
    130126     */
    131127    public function getPrefixesPsr4()
     
    135131
    136132    /**
    137      * @return array[]
    138      * @psalm-return array<string, string>
     133     * @return list<string>
    139134     */
    140135    public function getFallbackDirs()
     
    144139
    145140    /**
    146      * @return array[]
    147      * @psalm-return array<string, string>
     141     * @return list<string>
    148142     */
    149143    public function getFallbackDirsPsr4()
     
    153147
    154148    /**
    155      * @return string[] Array of classname => path
    156      * @psalm-return array<string, string>
     149     * @return array<string, string> Array of classname => path
    157150     */
    158151    public function getClassMap()
     
    162155
    163156    /**
    164      * @param string[] $classMap Class to filename map
    165      * @psalm-param array<string, string> $classMap
     157     * @param array<string, string> $classMap Class to filename map
    166158     *
    167159     * @return void
     
    180172     * appending or prepending to the ones previously set for this prefix.
    181173     *
    182      * @param string          $prefix  The prefix
    183      * @param string[]|string $paths   The PSR-0 root directories
    184      * @param bool            $prepend Whether to prepend the directories
     174     * @param string              $prefix  The prefix
     175     * @param list<string>|string $paths   The PSR-0 root directories
     176     * @param bool                $prepend Whether to prepend the directories
    185177     *
    186178     * @return void
     
    188180    public function add($prefix, $paths, $prepend = false)
    189181    {
     182        $paths = (array) $paths;
    190183        if (!$prefix) {
    191184            if ($prepend) {
    192185                $this->fallbackDirsPsr0 = array_merge(
    193                     (array) $paths,
     186                    $paths,
    194187                    $this->fallbackDirsPsr0
    195188                );
     
    197190                $this->fallbackDirsPsr0 = array_merge(
    198191                    $this->fallbackDirsPsr0,
    199                     (array) $paths
     192                    $paths
    200193                );
    201194            }
     
    206199        $first = $prefix[0];
    207200        if (!isset($this->prefixesPsr0[$first][$prefix])) {
    208             $this->prefixesPsr0[$first][$prefix] = (array) $paths;
     201            $this->prefixesPsr0[$first][$prefix] = $paths;
    209202
    210203            return;
     
    212205        if ($prepend) {
    213206            $this->prefixesPsr0[$first][$prefix] = array_merge(
    214                 (array) $paths,
     207                $paths,
    215208                $this->prefixesPsr0[$first][$prefix]
    216209            );
     
    218211            $this->prefixesPsr0[$first][$prefix] = array_merge(
    219212                $this->prefixesPsr0[$first][$prefix],
    220                 (array) $paths
     213                $paths
    221214            );
    222215        }
     
    227220     * appending or prepending to the ones previously set for this namespace.
    228221     *
    229      * @param string          $prefix  The prefix/namespace, with trailing '\\'
    230      * @param string[]|string $paths   The PSR-4 base directories
    231      * @param bool            $prepend Whether to prepend the directories
     222     * @param string              $prefix  The prefix/namespace, with trailing '\\'
     223     * @param list<string>|string $paths   The PSR-4 base directories
     224     * @param bool                $prepend Whether to prepend the directories
    232225     *
    233226     * @throws \InvalidArgumentException
     
    237230    public function addPsr4($prefix, $paths, $prepend = false)
    238231    {
     232        $paths = (array) $paths;
    239233        if (!$prefix) {
    240234            // Register directories for the root namespace.
    241235            if ($prepend) {
    242236                $this->fallbackDirsPsr4 = array_merge(
    243                     (array) $paths,
     237                    $paths,
    244238                    $this->fallbackDirsPsr4
    245239                );
     
    247241                $this->fallbackDirsPsr4 = array_merge(
    248242                    $this->fallbackDirsPsr4,
    249                     (array) $paths
     243                    $paths
    250244                );
    251245            }
     
    257251            }
    258252            $this->prefixLengthsPsr4[$prefix[0]][$prefix] = $length;
    259             $this->prefixDirsPsr4[$prefix] = (array) $paths;
     253            $this->prefixDirsPsr4[$prefix] = $paths;
    260254        } elseif ($prepend) {
    261255            // Prepend directories for an already registered namespace.
    262256            $this->prefixDirsPsr4[$prefix] = array_merge(
    263                 (array) $paths,
     257                $paths,
    264258                $this->prefixDirsPsr4[$prefix]
    265259            );
     
    268262            $this->prefixDirsPsr4[$prefix] = array_merge(
    269263                $this->prefixDirsPsr4[$prefix],
    270                 (array) $paths
     264                $paths
    271265            );
    272266        }
     
    277271     * replacing any others previously set for this prefix.
    278272     *
    279      * @param string          $prefix The prefix
    280      * @param string[]|string $paths  The PSR-0 base directories
     273     * @param string              $prefix The prefix
     274     * @param list<string>|string $paths  The PSR-0 base directories
    281275     *
    282276     * @return void
     
    295289     * replacing any others previously set for this namespace.
    296290     *
    297      * @param string          $prefix The prefix/namespace, with trailing '\\'
    298      * @param string[]|string $paths  The PSR-4 base directories
     291     * @param string              $prefix The prefix/namespace, with trailing '\\'
     292     * @param list<string>|string $paths  The PSR-4 base directories
    299293     *
    300294     * @throws \InvalidArgumentException
     
    482476
    483477    /**
    484      * Returns the currently registered loaders indexed by their corresponding vendor directories.
    485      *
    486      * @return self[]
     478     * Returns the currently registered loaders keyed by their corresponding vendor directories.
     479     *
     480     * @return array<string, self>
    487481     */
    488482    public static function getRegisteredLoaders()
  • splash-connector/trunk/vendor/composer/autoload_real.php

    r2919687 r2947048  
    33// autoload_real.php @generated by Composer
    44
    5 class ComposerAutoloaderInit370a618e464ad2fa73d6bf8d9ccff1f1
     5class ComposerAutoloaderInitbd37bba058c052c6ccdb5e1ddba225d8
    66{
    77    private static $loader;
     
    2525        require __DIR__ . '/platform_check.php';
    2626
    27         spl_autoload_register(array('ComposerAutoloaderInit370a618e464ad2fa73d6bf8d9ccff1f1', 'loadClassLoader'), true, true);
     27        spl_autoload_register(array('ComposerAutoloaderInitbd37bba058c052c6ccdb5e1ddba225d8', 'loadClassLoader'), true, true);
    2828        self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
    29         spl_autoload_unregister(array('ComposerAutoloaderInit370a618e464ad2fa73d6bf8d9ccff1f1', 'loadClassLoader'));
     29        spl_autoload_unregister(array('ComposerAutoloaderInitbd37bba058c052c6ccdb5e1ddba225d8', 'loadClassLoader'));
    3030
    3131        require __DIR__ . '/autoload_static.php';
    32         call_user_func(\Composer\Autoload\ComposerStaticInit370a618e464ad2fa73d6bf8d9ccff1f1::getInitializer($loader));
     32        call_user_func(\Composer\Autoload\ComposerStaticInitbd37bba058c052c6ccdb5e1ddba225d8::getInitializer($loader));
    3333
    3434        $loader->register(true);
  • splash-connector/trunk/vendor/composer/autoload_static.php

    r2919687 r2947048  
    55namespace Composer\Autoload;
    66
    7 class ComposerStaticInit370a618e464ad2fa73d6bf8d9ccff1f1
     7class ComposerStaticInitbd37bba058c052c6ccdb5e1ddba225d8
    88{
    99    public static $prefixLengthsPsr4 = array (
     
    3434    {
    3535        return \Closure::bind(function () use ($loader) {
    36             $loader->prefixLengthsPsr4 = ComposerStaticInit370a618e464ad2fa73d6bf8d9ccff1f1::$prefixLengthsPsr4;
    37             $loader->prefixDirsPsr4 = ComposerStaticInit370a618e464ad2fa73d6bf8d9ccff1f1::$prefixDirsPsr4;
    38             $loader->classMap = ComposerStaticInit370a618e464ad2fa73d6bf8d9ccff1f1::$classMap;
     36            $loader->prefixLengthsPsr4 = ComposerStaticInitbd37bba058c052c6ccdb5e1ddba225d8::$prefixLengthsPsr4;
     37            $loader->prefixDirsPsr4 = ComposerStaticInitbd37bba058c052c6ccdb5e1ddba225d8::$prefixDirsPsr4;
     38            $loader->classMap = ComposerStaticInitbd37bba058c052c6ccdb5e1ddba225d8::$classMap;
    3939
    4040        }, null, ClassLoader::class);
  • splash-connector/trunk/vendor/composer/installed.json

    r2914866 r2947048  
    88                "type": "git",
    99                "url": "https://github.com/SplashSync/Php-Core.git",
    10                 "reference": "0ec7190d3ed142297ca5d309b87ac00124b48873"
     10                "reference": "fecb3893316a649dc5ebd2f516f69977f1ff052f"
    1111            },
    1212            "dist": {
    1313                "type": "zip",
    14                 "url": "https://api.github.com/repos/SplashSync/Php-Core/zipball/0ec7190d3ed142297ca5d309b87ac00124b48873",
    15                 "reference": "0ec7190d3ed142297ca5d309b87ac00124b48873",
     14                "url": "https://api.github.com/repos/SplashSync/Php-Core/zipball/fecb3893316a649dc5ebd2f516f69977f1ff052f",
     15                "reference": "fecb3893316a649dc5ebd2f516f69977f1ff052f",
    1616                "shasum": ""
    1717            },
     
    3030                "splash/console": "dev-master"
    3131            },
    32             "time": "2023-05-09T14:53:59+00:00",
     32            "time": "2023-06-26T22:42:33+00:00",
    3333            "default-branch": true,
    3434            "type": "package",
     
    6060            "support": {
    6161                "issues": "https://github.com/SplashSync/Php-Core/issues",
    62                 "source": "https://github.com/SplashSync/Php-Core/tree/2.0.2"
     62                "source": "https://github.com/SplashSync/Php-Core/tree/2.0.3"
    6363            },
    6464            "install-path": "../splash/phpcore"
  • splash-connector/trunk/vendor/composer/installed.php

    r2919687 r2947048  
    22    'root' => array(
    33        'name' => 'splash/wordpress',
    4         'pretty_version' => '2.0.4',
    5         'version' => '2.0.4.0',
    6         'reference' => 'a66baa2b93a77dc09be82a04c70a442baf01cf4f',
     4        'pretty_version' => '2.0.6',
     5        'version' => '2.0.6.0',
     6        'reference' => '39b23ff857559815ebb6c482c61b84728fe4c122',
    77        'type' => 'library',
    88        'install_path' => __DIR__ . '/../../',
     
    1414            'pretty_version' => 'dev-master',
    1515            'version' => 'dev-master',
    16             'reference' => '0ec7190d3ed142297ca5d309b87ac00124b48873',
     16            'reference' => 'fecb3893316a649dc5ebd2f516f69977f1ff052f',
    1717            'type' => 'package',
    1818            'install_path' => __DIR__ . '/../splash/phpcore',
     
    2323        ),
    2424        'splash/wordpress' => array(
    25             'pretty_version' => '2.0.4',
    26             'version' => '2.0.4.0',
    27             'reference' => 'a66baa2b93a77dc09be82a04c70a442baf01cf4f',
     25            'pretty_version' => '2.0.6',
     26            'version' => '2.0.6.0',
     27            'reference' => '39b23ff857559815ebb6c482c61b84728fe4c122',
    2828            'type' => 'library',
    2929            'install_path' => __DIR__ . '/../../',
  • splash-connector/trunk/vendor/splash/phpcore/.gitlab-ci.yml

    r2865644 r2947048  
    6060      - curl -s https://raw.githubusercontent.com/BadPixxel/Php-Sdk/main/ci/after.sh | sh
    6161
     62#tests:php-8.2:
     63#    image: registry.gitlab.com/badpixxel-projects/php-sdk:php-8.2
     64#    <<: *core_tests
     65
    6266tests:php-8.1:
    6367    image: registry.gitlab.com/badpixxel-projects/php-sdk:php-8.1
  • splash-connector/trunk/vendor/splash/phpcore/Components/BlocksFactory.php

    r2865644 r2947048  
    6767
    6868    /**
    69      *  @abstract   Set Block Data Array Key
    70      *
    71      *  @param      string      $name
    72      *  @param      array|string      $value
    73      *
    74      *  @return    $this
     69     * Set Block Data Array Key
     70     *
     71     * @param string       $name
     72     * @param array|string $value
     73     *
     74     * @return $this
    7575     */
    7676    public function setData($name, $value)
     
    8686
    8787    /**
    88      *  @abstract   Extract Block Data From Content Input Array
    89      *
    90      *  @param      array       $input
    91      *  @param      string      $index
    92      *
    93      *  @return    $this
     88     * Extract Block Data From Content Input Array
     89     *
     90     * @param array  $input
     91     * @param string $index
     92     *
     93     * @return $this
    9494     */
    9595    public function extractData($input, $index)
     
    103103
    104104    /**
    105      *  @abstract   Set Block Options Array Key
    106      *
    107      *  @param      string      $name
    108      *  @param      array       $value
    109      *
    110      *  @return    $this
     105     * Set Block Options Array Key
     106     *
     107     * @param string $name
     108     * @param array  $value
     109     *
     110     * @return $this
    111111     */
    112112    public function setOption($name, $value)
     
    151151
    152152    /**
    153      *  @abstract   Create a new Text Block
    154      *
    155      *  @param      string      $text           Block Content Text
    156      *  @param      array       $blockOptions  Block Options
    157      *
    158      *  @return    $this
     153     * Create a new Text Block
     154     *
     155     * @param string $text         Block Content Text
     156     * @param array  $blockOptions Block Options
     157     *
     158     * @return $this
    159159     */
    160160    public function addTextBlock($text, $blockOptions = self::COMMONS_OPTIONS)
     
    171171
    172172    /**
    173      *  @abstract   Create a new Notification Block
    174      *
    175      *  @param      array   $contents           Block Contents
    176      *                          ["error"]       Error Message
    177      *                          ["warning"]     Warning Message
    178      *                          ["info"]        Info Message
    179      *                          ["success"]     Success Message
    180      *  @param      array   $blockOptions      Block Options
    181      *
    182      *  @return    $this
     173     * Create a new Notification Block
     174     *
     175     * @param array $contents     Block Contents
     176     *                            ["error"]       Error Message
     177     *                            ["warning"]     Warning Message
     178     *                            ["info"]        Info Message
     179     *                            ["success"]     Success Message
     180     * @param array $blockOptions Block Options
     181     *
     182     * @return $this
    183183     */
    184184    public function addNotificationsBlock($contents, $blockOptions = self::COMMONS_OPTIONS)
     
    210210
    211211    /**
    212      *  @abstract   Create a new Table Block
    213      *
    214      *  @param      array   $contents           Array of Rows Contents (Text or Html)
    215      *  @param      array   $blockOptions      Block Options
    216      *
    217      *  @return    $this
     212     * Create a new Table Block
     213     *
     214     * @param array $contents     Array of Rows Contents (Text or Html)
     215     * @param array $blockOptions Block Options
     216     *
     217     * @return $this
    218218     */
    219219    public function addTableBlock($contents, $blockOptions = self::COMMONS_OPTIONS)
     
    230230
    231231    /**
    232      *  @abstract   Create a new Table Block
    233      *
    234      *  @param      array   $contents           Array of Rows Contents (Text or Html)
    235      *  @param      array   $blockOptions      Block Options
    236      *
    237      *  @return    $this
     232     * Create a new Table Block
     233     *
     234     * @param array $contents     Array of Rows Contents (Text or Html)
     235     * @param array $blockOptions Block Options
     236     *
     237     * @return $this
    238238     */
    239239    public function addSparkInfoBlock($contents, $blockOptions = self::COMMONS_OPTIONS)
     
    322322
    323323    /**
    324      *  @abstract   Create a new block with default parameters
    325      *
    326      *  @param      string      $blockType       Standard Widget Block Type
    327      *  @param      array       $blockOptions    Block Options
    328      *
    329      *  @return    $this
     324     * Create a new block with default parameters
     325     *
     326     * @param string $blockType    Standard Widget Block Type
     327     * @param array  $blockOptions Block Options
     328     *
     329     * @return $this
    330330     */
    331331    private function addBlock($blockType, $blockOptions = null)
     
    356356
    357357    /**
    358      *  @abstract   Save Current New Block in list & Clean
    359      *
    360      *  @return    bool
     358     * Save Current New Block in list & Clean
     359     *
     360     * @return bool
    361361     */
    362362    private function commit()
  • splash-connector/trunk/vendor/splash/phpcore/Components/Logger.php

    r2865644 r2947048  
    654654        if (!isset($this->{$logType})) {
    655655            $this->{$logType} = $logArray;
    656         //====================================================================//
    657         // Really merge Logs
    658656        } else {
     657            //====================================================================//
     658            // Really Merge Logs
    659659            foreach ($logArray as $message) {
    660660                $this->{$logType}[] = $message;
  • splash-connector/trunk/vendor/splash/phpcore/Components/Validator.php

    r2865644 r2947048  
    484484        }
    485485
    486         $extensions = array('xml', 'soap', 'curl', 'json');
     486        $extensions = array('xml', 'soap', 'curl', 'json', 'iconv');
    487487        foreach ($extensions as $extension) {
    488488            if (!extension_loaded($extension)) {
  • splash-connector/trunk/vendor/splash/phpcore/Components/Webservice.php

    r2870565 r2947048  
    190190        if (!$noEncryption) {
    191191            $out = $this->crypt('encrypt', $serial, (string) $this->key, (string) $this->id);
    192         //====================================================================//
    193         // Else, switch to base64
    194         } else {
     192        } else {
     193            //====================================================================//
     194            // Else, switch to base64
    195195            $out = base64_encode($serial);
    196196        }
     
    227227        if (!empty($data) && !$noEncryption) {
    228228            $decode = $this->crypt('decrypt', $data, (string) $this->key, (string) $this->id);
    229         //====================================================================//
    230         // Else, switch from base64
    231         } else {
     229        } else {
     230            //====================================================================//
     231            // Else, switch from base64
    232232            $decode = base64_decode($data, true);
    233233        }
     
    699699                (string) openssl_encrypt($data, Splash::configuration()->WsCrypt, $cryptKey, 0, $cryptIv)
    700700            );
    701         //====================================================================//
    702         // Open SSL Decryption
    703         } else {
     701        } else {
     702            //====================================================================//
     703            // Open SSL Decryption
    704704            $out = openssl_decrypt(
    705705                (string) base64_decode($data, true),
  • splash-connector/trunk/vendor/splash/phpcore/Components/XmlManager.php

    r2914866 r2947048  
    213213                $key = self::keysFilter($key, 'string-');
    214214
    215             //====================================================================//
    216             // Insert Numeric
    217             //====================================================================//
     215                //====================================================================//
     216                // Insert Numeric
     217                //====================================================================//
    218218            } elseif (is_numeric($value)) {
    219219                //====================================================================//
     
    221221                $key = self::keysFilter($key, 'int-');
    222222
    223             //====================================================================//
    224             // Insert Boolean
    225             //====================================================================//
     223                //====================================================================//
     224                // Insert Boolean
     225                //====================================================================//
    226226            } elseif (is_bool($value)) {
    227227                //====================================================================//
  • splash-connector/trunk/vendor/splash/phpcore/Core/ObjectsCoreTrait.php

    r2865644 r2947048  
    1919use Splash\Components\ExtensionsManager;
    2020use Splash\Components\FilesLoader;
    21 use Splash\Components\Router;
    22 use Splash\Local\Local;
    2321use Splash\Models\Objects\ObjectInterface;
    2422use Splash\Models\ObjectsProviderInterface;
  • splash-connector/trunk/vendor/splash/phpcore/Core/WidgetsCoreTrait.php

    r2865644 r2947048  
    1717
    1818use Exception;
    19 use Splash\Components\Router;
    20 use Splash\Local\Local;
    2119use Splash\Models\Widgets\WidgetInterface;
    2220use Splash\Models\WidgetsProviderInterface;
  • splash-connector/trunk/vendor/splash/phpcore/Server/SplashServer.php

    r2865644 r2947048  
    205205            // Process methods & Return the results.
    206206            Splash::com()->handle();
    207         //====================================================================//
    208         // Non Fatal Error
    209207        } else {
     208            //====================================================================//
     209            // Non Fatal Error
    210210            Splash::log()->war($error["message"]." on File ".$error["file"]." Line ".$error["line"]);
    211211        }
  • splash-connector/trunk/vendor/splash/phpcore/Tests/Managers/C60UnitsConverterTest.php

    r2865644 r2947048  
    2020
    2121/**
    22  * Componants Test Suite - Unit Converter Verifications
     22 * Components Test Suite - Unit Converter Verifications
    2323 */
    2424class C60UnitsConverterTest extends TestCase
  • splash-connector/trunk/vendor/splash/phpcore/Tests/Tools/AbstractBaseCase.php

    r2914866 r2947048  
    8282        if ($types) {
    8383            $allowed = (array) explode(",", $types);
    84             if (!empty($allowed) && !in_array($objectType, $allowed, true)) {
     84            if (!in_array($objectType, $allowed, true)) {
    8585                return false;
    8686            }
  • splash-connector/trunk/vendor/splash/phpcore/Tests/Tools/Traits/ObjectsDataTrait.php

    r2865644 r2947048  
    8181     * @param null|string $comment Comment on this Test
    8282     *
    83      *@throws Exception
     83     * @throws Exception
    8484     *
    8585     * @return bool
     
    112112                    $comment."->".$field['id']
    113113                );
    114 
    115             //====================================================================//
    116             // Compare Single Fields
    117114            } else {
     115                //====================================================================//
     116                // Compare Single Fields
    118117                $this->assertIsArray($data1);
    119118                $this->assertIsArray($data2);
  • splash-connector/trunk/vendor/splash/phpcore/Tests/WsObjects/O05DeleteTest.php

    r2865644 r2947048  
    237237     * @param array|scalar $data
    238238     *
    239      *@throws Exception
     239     * @throws Exception
    240240     *
    241241     * @return void
  • splash-connector/trunk/vendor/splash/phpcore/ci/verify.sh

    r2865644 r2947048  
    4545docker-compose exec php-8.1 php vendor/bin/grumphp run --testsuite=csfixer
    4646docker-compose exec php-8.1 php vendor/bin/grumphp run --testsuite=phpstan
     47
     48################################################################################
     49# PHP 8.2
     50echo '===> Checks Php 8.2'
     51docker-compose exec php-8.2 composer update -q
     52docker-compose exec php-8.2 php vendor/bin/grumphp run --testsuite=travis
     53docker-compose exec php-8.2 php vendor/bin/grumphp run --testsuite=csfixer
     54docker-compose exec php-8.2 php vendor/bin/grumphp run --testsuite=phpstan
  • splash-connector/trunk/vendor/splash/phpcore/composer.lock

    r2914866 r2947048  
    628628        {
    629629            "name": "composer/ca-bundle",
    630             "version": "1.3.5",
     630            "version": "1.3.6",
    631631            "source": {
    632632                "type": "git",
    633633                "url": "https://github.com/composer/ca-bundle.git",
    634                 "reference": "74780ccf8c19d6acb8d65c5f39cd72110e132bbd"
    635             },
    636             "dist": {
    637                 "type": "zip",
    638                 "url": "https://api.github.com/repos/composer/ca-bundle/zipball/74780ccf8c19d6acb8d65c5f39cd72110e132bbd",
    639                 "reference": "74780ccf8c19d6acb8d65c5f39cd72110e132bbd",
     634                "reference": "90d087e988ff194065333d16bc5cf649872d9cdb"
     635            },
     636            "dist": {
     637                "type": "zip",
     638                "url": "https://api.github.com/repos/composer/ca-bundle/zipball/90d087e988ff194065333d16bc5cf649872d9cdb",
     639                "reference": "90d087e988ff194065333d16bc5cf649872d9cdb",
    640640                "shasum": ""
    641641            },
     
    684684                "irc": "irc://irc.freenode.org/composer",
    685685                "issues": "https://github.com/composer/ca-bundle/issues",
    686                 "source": "https://github.com/composer/ca-bundle/tree/1.3.5"
     686                "source": "https://github.com/composer/ca-bundle/tree/1.3.6"
    687687            },
    688688            "funding": [
     
    700700                }
    701701            ],
    702             "time": "2023-01-11T08:27:00+00:00"
     702            "time": "2023-06-06T12:02:59+00:00"
    703703        },
    704704        {
     
    777777        {
    778778            "name": "composer/composer",
    779             "version": "2.5.5",
     779            "version": "2.5.8",
    780780            "source": {
    781781                "type": "git",
    782782                "url": "https://github.com/composer/composer.git",
    783                 "reference": "c7cffaad16a60636a776017eac5bd8cd0095c32f"
    784             },
    785             "dist": {
    786                 "type": "zip",
    787                 "url": "https://api.github.com/repos/composer/composer/zipball/c7cffaad16a60636a776017eac5bd8cd0095c32f",
    788                 "reference": "c7cffaad16a60636a776017eac5bd8cd0095c32f",
     783                "reference": "4c516146167d1392c8b9b269bb7c24115d262164"
     784            },
     785            "dist": {
     786                "type": "zip",
     787                "url": "https://api.github.com/repos/composer/composer/zipball/4c516146167d1392c8b9b269bb7c24115d262164",
     788                "reference": "4c516146167d1392c8b9b269bb7c24115d262164",
    789789                "shasum": ""
    790790            },
     
    870870                "irc": "ircs://irc.libera.chat:6697/composer",
    871871                "issues": "https://github.com/composer/composer/issues",
    872                 "source": "https://github.com/composer/composer/tree/2.5.5"
     872                "source": "https://github.com/composer/composer/tree/2.5.8"
    873873            },
    874874            "funding": [
     
    886886                }
    887887            ],
    888             "time": "2023-03-21T10:50:05+00:00"
     888            "time": "2023-06-09T15:13:21+00:00"
    889889        },
    890890        {
     
    13331333        {
    13341334            "name": "doctrine/collections",
    1335             "version": "2.1.2",
     1335            "version": "1.8.0",
    13361336            "source": {
    13371337                "type": "git",
    13381338                "url": "https://github.com/doctrine/collections.git",
    1339                 "reference": "db8cda536a034337f7dd63febecc713d4957f9ee"
    1340             },
    1341             "dist": {
    1342                 "type": "zip",
    1343                 "url": "https://api.github.com/repos/doctrine/collections/zipball/db8cda536a034337f7dd63febecc713d4957f9ee",
    1344                 "reference": "db8cda536a034337f7dd63febecc713d4957f9ee",
    1345                 "shasum": ""
    1346             },
    1347             "require": {
    1348                 "doctrine/deprecations": "^1",
    1349                 "php": "^8.1"
    1350             },
    1351             "require-dev": {
    1352                 "doctrine/coding-standard": "^10.0",
    1353                 "ext-json": "*",
    1354                 "phpstan/phpstan": "^1.8",
    1355                 "phpstan/phpstan-phpunit": "^1.0",
    1356                 "phpunit/phpunit": "^9.5",
     1339                "reference": "2b44dd4cbca8b5744327de78bafef5945c7e7b5e"
     1340            },
     1341            "dist": {
     1342                "type": "zip",
     1343                "url": "https://api.github.com/repos/doctrine/collections/zipball/2b44dd4cbca8b5744327de78bafef5945c7e7b5e",
     1344                "reference": "2b44dd4cbca8b5744327de78bafef5945c7e7b5e",
     1345                "shasum": ""
     1346            },
     1347            "require": {
     1348                "doctrine/deprecations": "^0.5.3 || ^1",
     1349                "php": "^7.1.3 || ^8.0"
     1350            },
     1351            "require-dev": {
     1352                "doctrine/coding-standard": "^9.0 || ^10.0",
     1353                "phpstan/phpstan": "^1.4.8",
     1354                "phpunit/phpunit": "^7.5 || ^8.5 || ^9.1.5",
    13571355                "vimeo/psalm": "^4.22"
    13581356            },
     
    13601358            "autoload": {
    13611359                "psr-4": {
    1362                     "Doctrine\\Common\\Collections\\": "src"
     1360                    "Doctrine\\Common\\Collections\\": "lib/Doctrine/Common/Collections"
    13631361                }
    13641362            },
     
    13991397            "support": {
    14001398                "issues": "https://github.com/doctrine/collections/issues",
    1401                 "source": "https://github.com/doctrine/collections/tree/2.1.2"
    1402             },
    1403             "funding": [
    1404                 {
    1405                     "url": "https://www.doctrine-project.org/sponsorship.html",
    1406                     "type": "custom"
    1407                 },
    1408                 {
    1409                     "url": "https://www.patreon.com/phpdoctrine",
    1410                     "type": "patreon"
    1411                 },
    1412                 {
    1413                     "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcollections",
    1414                     "type": "tidelift"
    1415                 }
    1416             ],
    1417             "time": "2022-12-27T23:41:38+00:00"
     1399                "source": "https://github.com/doctrine/collections/tree/1.8.0"
     1400            },
     1401            "time": "2022-09-01T20:12:10+00:00"
    14181402        },
    14191403        {
    14201404            "name": "doctrine/deprecations",
    1421             "version": "v1.0.0",
     1405            "version": "v1.1.1",
    14221406            "source": {
    14231407                "type": "git",
    14241408                "url": "https://github.com/doctrine/deprecations.git",
    1425                 "reference": "0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de"
    1426             },
    1427             "dist": {
    1428                 "type": "zip",
    1429                 "url": "https://api.github.com/repos/doctrine/deprecations/zipball/0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de",
    1430                 "reference": "0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de",
    1431                 "shasum": ""
    1432             },
    1433             "require": {
    1434                 "php": "^7.1|^8.0"
     1409                "reference": "612a3ee5ab0d5dd97b7cf3874a6efe24325efac3"
     1410            },
     1411            "dist": {
     1412                "type": "zip",
     1413                "url": "https://api.github.com/repos/doctrine/deprecations/zipball/612a3ee5ab0d5dd97b7cf3874a6efe24325efac3",
     1414                "reference": "612a3ee5ab0d5dd97b7cf3874a6efe24325efac3",
     1415                "shasum": ""
     1416            },
     1417            "require": {
     1418                "php": "^7.1 || ^8.0"
    14351419            },
    14361420            "require-dev": {
    14371421                "doctrine/coding-standard": "^9",
    1438                 "phpunit/phpunit": "^7.5|^8.5|^9.5",
    1439                 "psr/log": "^1|^2|^3"
     1422                "phpstan/phpstan": "1.4.10 || 1.10.15",
     1423                "phpstan/phpstan-phpunit": "^1.0",
     1424                "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
     1425                "psalm/plugin-phpunit": "0.18.4",
     1426                "psr/log": "^1 || ^2 || ^3",
     1427                "vimeo/psalm": "4.30.0 || 5.12.0"
    14401428            },
    14411429            "suggest": {
     
    14561444            "support": {
    14571445                "issues": "https://github.com/doctrine/deprecations/issues",
    1458                 "source": "https://github.com/doctrine/deprecations/tree/v1.0.0"
    1459             },
    1460             "time": "2022-05-02T15:47:09+00:00"
     1446                "source": "https://github.com/doctrine/deprecations/tree/v1.1.1"
     1447            },
     1448            "time": "2023-06-03T09:27:29+00:00"
    14611449        },
    14621450        {
    14631451            "name": "doctrine/instantiator",
    1464             "version": "2.0.0",
     1452            "version": "1.5.0",
    14651453            "source": {
    14661454                "type": "git",
    14671455                "url": "https://github.com/doctrine/instantiator.git",
    1468                 "reference": "c6222283fa3f4ac679f8b9ced9a4e23f163e80d0"
    1469             },
    1470             "dist": {
    1471                 "type": "zip",
    1472                 "url": "https://api.github.com/repos/doctrine/instantiator/zipball/c6222283fa3f4ac679f8b9ced9a4e23f163e80d0",
    1473                 "reference": "c6222283fa3f4ac679f8b9ced9a4e23f163e80d0",
    1474                 "shasum": ""
    1475             },
    1476             "require": {
    1477                 "php": "^8.1"
    1478             },
    1479             "require-dev": {
    1480                 "doctrine/coding-standard": "^11",
     1456                "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b"
     1457            },
     1458            "dist": {
     1459                "type": "zip",
     1460                "url": "https://api.github.com/repos/doctrine/instantiator/zipball/0a0fa9780f5d4e507415a065172d26a98d02047b",
     1461                "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b",
     1462                "shasum": ""
     1463            },
     1464            "require": {
     1465                "php": "^7.1 || ^8.0"
     1466            },
     1467            "require-dev": {
     1468                "doctrine/coding-standard": "^9 || ^11",
    14811469                "ext-pdo": "*",
    14821470                "ext-phar": "*",
    1483                 "phpbench/phpbench": "^1.2",
    1484                 "phpstan/phpstan": "^1.9.4",
    1485                 "phpstan/phpstan-phpunit": "^1.3",
    1486                 "phpunit/phpunit": "^9.5.27",
    1487                 "vimeo/psalm": "^5.4"
     1471                "phpbench/phpbench": "^0.16 || ^1",
     1472                "phpstan/phpstan": "^1.4",
     1473                "phpstan/phpstan-phpunit": "^1",
     1474                "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
     1475                "vimeo/psalm": "^4.30 || ^5.4"
    14881476            },
    14891477            "type": "library",
     
    15121500            "support": {
    15131501                "issues": "https://github.com/doctrine/instantiator/issues",
    1514                 "source": "https://github.com/doctrine/instantiator/tree/2.0.0"
     1502                "source": "https://github.com/doctrine/instantiator/tree/1.5.0"
    15151503            },
    15161504            "funding": [
     
    15281516                }
    15291517            ],
    1530             "time": "2022-12-30T00:23:10+00:00"
     1518            "time": "2022-12-30T00:15:36+00:00"
    15311519        },
    15321520        {
    15331521            "name": "doctrine/lexer",
    1534             "version": "3.0.0",
     1522            "version": "2.1.0",
    15351523            "source": {
    15361524                "type": "git",
    15371525                "url": "https://github.com/doctrine/lexer.git",
    1538                 "reference": "84a527db05647743d50373e0ec53a152f2cde568"
    1539             },
    1540             "dist": {
    1541                 "type": "zip",
    1542                 "url": "https://api.github.com/repos/doctrine/lexer/zipball/84a527db05647743d50373e0ec53a152f2cde568",
    1543                 "reference": "84a527db05647743d50373e0ec53a152f2cde568",
    1544                 "shasum": ""
    1545             },
    1546             "require": {
    1547                 "php": "^8.1"
    1548             },
    1549             "require-dev": {
    1550                 "doctrine/coding-standard": "^10",
    1551                 "phpstan/phpstan": "^1.9",
    1552                 "phpunit/phpunit": "^9.5",
     1526                "reference": "39ab8fcf5a51ce4b85ca97c7a7d033eb12831124"
     1527            },
     1528            "dist": {
     1529                "type": "zip",
     1530                "url": "https://api.github.com/repos/doctrine/lexer/zipball/39ab8fcf5a51ce4b85ca97c7a7d033eb12831124",
     1531                "reference": "39ab8fcf5a51ce4b85ca97c7a7d033eb12831124",
     1532                "shasum": ""
     1533            },
     1534            "require": {
     1535                "doctrine/deprecations": "^1.0",
     1536                "php": "^7.1 || ^8.0"
     1537            },
     1538            "require-dev": {
     1539                "doctrine/coding-standard": "^9 || ^10",
     1540                "phpstan/phpstan": "^1.3",
     1541                "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
    15531542                "psalm/plugin-phpunit": "^0.18.3",
    1554                 "vimeo/psalm": "^5.0"
     1543                "vimeo/psalm": "^4.11 || ^5.0"
    15551544            },
    15561545            "type": "library",
     
    15891578            "support": {
    15901579                "issues": "https://github.com/doctrine/lexer/issues",
    1591                 "source": "https://github.com/doctrine/lexer/tree/3.0.0"
     1580                "source": "https://github.com/doctrine/lexer/tree/2.1.0"
    15921581            },
    15931582            "funding": [
     
    16051594                }
    16061595            ],
    1607             "time": "2022-12-15T16:57:16+00:00"
     1596            "time": "2022-12-14T08:49:07+00:00"
    16081597        },
    16091598        {
    16101599            "name": "friendsofphp/php-cs-fixer",
    1611             "version": "v3.16.0",
     1600            "version": "v3.19.2",
    16121601            "source": {
    16131602                "type": "git",
    16141603                "url": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer.git",
    1615                 "reference": "d40f9436e1c448d309fa995ab9c14c5c7a96f2dc"
    1616             },
    1617             "dist": {
    1618                 "type": "zip",
    1619                 "url": "https://api.github.com/repos/PHP-CS-Fixer/PHP-CS-Fixer/zipball/d40f9436e1c448d309fa995ab9c14c5c7a96f2dc",
    1620                 "reference": "d40f9436e1c448d309fa995ab9c14c5c7a96f2dc",
     1604                "reference": "210dd89560edb27a8e0d5086b734ac5b5fd4e0e4"
     1605            },
     1606            "dist": {
     1607                "type": "zip",
     1608                "url": "https://api.github.com/repos/PHP-CS-Fixer/PHP-CS-Fixer/zipball/210dd89560edb27a8e0d5086b734ac5b5fd4e0e4",
     1609                "reference": "210dd89560edb27a8e0d5086b734ac5b5fd4e0e4",
    16211610                "shasum": ""
    16221611            },
     
    16931682            "support": {
    16941683                "issues": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/issues",
    1695                 "source": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/tree/v3.16.0"
     1684                "source": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/tree/v3.19.2"
    16961685            },
    16971686            "funding": [
     
    17011690                }
    17021691            ],
    1703             "time": "2023-04-02T19:30:06+00:00"
     1692            "time": "2023-06-25T16:42:58+00:00"
    17041693        },
    17051694        {
     
    17581747        {
    17591748            "name": "gitonomy/gitlib",
    1760             "version": "v1.3.7",
     1749            "version": "v1.3.8",
    17611750            "source": {
    17621751                "type": "git",
    17631752                "url": "https://github.com/gitonomy/gitlib.git",
    1764                 "reference": "00b57b79f02396aa4c7c163f76fe2bc48faebbb7"
    1765             },
    1766             "dist": {
    1767                 "type": "zip",
    1768                 "url": "https://api.github.com/repos/gitonomy/gitlib/zipball/00b57b79f02396aa4c7c163f76fe2bc48faebbb7",
    1769                 "reference": "00b57b79f02396aa4c7c163f76fe2bc48faebbb7",
     1753                "reference": "9fea656e75ad6e3452feb2cac46a6c1239cd7f74"
     1754            },
     1755            "dist": {
     1756                "type": "zip",
     1757                "url": "https://api.github.com/repos/gitonomy/gitlib/zipball/9fea656e75ad6e3452feb2cac46a6c1239cd7f74",
     1758                "reference": "9fea656e75ad6e3452feb2cac46a6c1239cd7f74",
    17701759                "shasum": ""
    17711760            },
     
    18211810            "support": {
    18221811                "issues": "https://github.com/gitonomy/gitlib/issues",
    1823                 "source": "https://github.com/gitonomy/gitlib/tree/v1.3.7"
     1812                "source": "https://github.com/gitonomy/gitlib/tree/v1.3.8"
    18241813            },
    18251814            "funding": [
     
    18291818                }
    18301819            ],
    1831             "time": "2022-10-04T14:20:15+00:00"
     1820            "time": "2023-05-11T08:29:06+00:00"
    18321821        },
    18331822        {
     
    20292018        {
    20302019            "name": "monolog/monolog",
    2031             "version": "3.3.1",
     2020            "version": "2.9.1",
    20322021            "source": {
    20332022                "type": "git",
    20342023                "url": "https://github.com/Seldaek/monolog.git",
    2035                 "reference": "9b5daeaffce5b926cac47923798bba91059e60e2"
    2036             },
    2037             "dist": {
    2038                 "type": "zip",
    2039                 "url": "https://api.github.com/repos/Seldaek/monolog/zipball/9b5daeaffce5b926cac47923798bba91059e60e2",
    2040                 "reference": "9b5daeaffce5b926cac47923798bba91059e60e2",
    2041                 "shasum": ""
    2042             },
    2043             "require": {
    2044                 "php": ">=8.1",
    2045                 "psr/log": "^2.0 || ^3.0"
     2024                "reference": "f259e2b15fb95494c83f52d3caad003bbf5ffaa1"
     2025            },
     2026            "dist": {
     2027                "type": "zip",
     2028                "url": "https://api.github.com/repos/Seldaek/monolog/zipball/f259e2b15fb95494c83f52d3caad003bbf5ffaa1",
     2029                "reference": "f259e2b15fb95494c83f52d3caad003bbf5ffaa1",
     2030                "shasum": ""
     2031            },
     2032            "require": {
     2033                "php": ">=7.2",
     2034                "psr/log": "^1.0.1 || ^2.0 || ^3.0"
    20462035            },
    20472036            "provide": {
    2048                 "psr/log-implementation": "3.0.0"
    2049             },
    2050             "require-dev": {
    2051                 "aws/aws-sdk-php": "^3.0",
     2037                "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0"
     2038            },
     2039            "require-dev": {
     2040                "aws/aws-sdk-php": "^2.4.9 || ^3.0",
    20522041                "doctrine/couchdb": "~1.0@dev",
    20532042                "elasticsearch/elasticsearch": "^7 || ^8",
    20542043                "ext-json": "*",
    20552044                "graylog2/gelf-php": "^1.4.2 || ^2@dev",
    2056                 "guzzlehttp/guzzle": "^7.4.5",
     2045                "guzzlehttp/guzzle": "^7.4",
    20572046                "guzzlehttp/psr7": "^2.2",
    20582047                "mongodb/mongodb": "^1.8",
    20592048                "php-amqplib/php-amqplib": "~2.4 || ^3",
    2060                 "phpstan/phpstan": "^1.9",
    2061                 "phpstan/phpstan-deprecation-rules": "^1.0",
    2062                 "phpstan/phpstan-strict-rules": "^1.4",
    2063                 "phpunit/phpunit": "^9.5.26",
    2064                 "predis/predis": "^1.1 || ^2",
     2049                "phpspec/prophecy": "^1.15",
     2050                "phpstan/phpstan": "^0.12.91",
     2051                "phpunit/phpunit": "^8.5.14",
     2052                "predis/predis": "^1.1 || ^2.0",
     2053                "rollbar/rollbar": "^1.3 || ^2 || ^3",
    20652054                "ruflin/elastica": "^7",
     2055                "swiftmailer/swiftmailer": "^5.3|^6.0",
    20662056                "symfony/mailer": "^5.4 || ^6",
    20672057                "symfony/mime": "^5.4 || ^6"
     
    20862076            "extra": {
    20872077                "branch-alias": {
    2088                     "dev-main": "3.x-dev"
     2078                    "dev-main": "2.x-dev"
    20892079                }
    20902080            },
     
    21142104            "support": {
    21152105                "issues": "https://github.com/Seldaek/monolog/issues",
    2116                 "source": "https://github.com/Seldaek/monolog/tree/3.3.1"
     2106                "source": "https://github.com/Seldaek/monolog/tree/2.9.1"
    21172107            },
    21182108            "funding": [
     
    21262116                }
    21272117            ],
    2128             "time": "2023-02-06T13:46:10+00:00"
     2118            "time": "2023-02-06T13:44:46+00:00"
    21292119        },
    21302120        {
     
    21892179        {
    21902180            "name": "nikic/php-parser",
    2191             "version": "v4.15.4",
     2181            "version": "v4.16.0",
    21922182            "source": {
    21932183                "type": "git",
    21942184                "url": "https://github.com/nikic/PHP-Parser.git",
    2195                 "reference": "6bb5176bc4af8bcb7d926f88718db9b96a2d4290"
    2196             },
    2197             "dist": {
    2198                 "type": "zip",
    2199                 "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/6bb5176bc4af8bcb7d926f88718db9b96a2d4290",
    2200                 "reference": "6bb5176bc4af8bcb7d926f88718db9b96a2d4290",
     2185                "reference": "19526a33fb561ef417e822e85f08a00db4059c17"
     2186            },
     2187            "dist": {
     2188                "type": "zip",
     2189                "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/19526a33fb561ef417e822e85f08a00db4059c17",
     2190                "reference": "19526a33fb561ef417e822e85f08a00db4059c17",
    22012191                "shasum": ""
    22022192            },
     
    22392229            "support": {
    22402230                "issues": "https://github.com/nikic/PHP-Parser/issues",
    2241                 "source": "https://github.com/nikic/PHP-Parser/tree/v4.15.4"
    2242             },
    2243             "time": "2023-03-05T19:49:14+00:00"
     2231                "source": "https://github.com/nikic/PHP-Parser/tree/v4.16.0"
     2232            },
     2233            "time": "2023-06-25T14:52:30+00:00"
    22442234        },
    22452235        {
     
    23232313        {
    23242314            "name": "pdepend/pdepend",
    2325             "version": "2.13.0",
     2315            "version": "2.14.0",
    23262316            "source": {
    23272317                "type": "git",
    23282318                "url": "https://github.com/pdepend/pdepend.git",
    2329                 "reference": "31be7cd4f305f3f7b52af99c1cb13fc938d1cfad"
    2330             },
    2331             "dist": {
    2332                 "type": "zip",
    2333                 "url": "https://api.github.com/repos/pdepend/pdepend/zipball/31be7cd4f305f3f7b52af99c1cb13fc938d1cfad",
    2334                 "reference": "31be7cd4f305f3f7b52af99c1cb13fc938d1cfad",
     2319                "reference": "1121d4b04af06e33e9659bac3a6741b91cab1de1"
     2320            },
     2321            "dist": {
     2322                "type": "zip",
     2323                "url": "https://api.github.com/repos/pdepend/pdepend/zipball/1121d4b04af06e33e9659bac3a6741b91cab1de1",
     2324                "reference": "1121d4b04af06e33e9659bac3a6741b91cab1de1",
    23352325                "shasum": ""
    23362326            },
     
    23662356            ],
    23672357            "description": "Official version of pdepend to be handled with Composer",
     2358            "keywords": [
     2359                "PHP Depend",
     2360                "PHP_Depend",
     2361                "dev",
     2362                "pdepend"
     2363            ],
    23682364            "support": {
    23692365                "issues": "https://github.com/pdepend/pdepend/issues",
    2370                 "source": "https://github.com/pdepend/pdepend/tree/2.13.0"
     2366                "source": "https://github.com/pdepend/pdepend/tree/2.14.0"
    23712367            },
    23722368            "funding": [
     
    23762372                }
    23772373            ],
    2378             "time": "2023-02-28T20:56:15+00:00"
     2374            "time": "2023-05-26T13:15:18+00:00"
    23792375        },
    23802376        {
     
    27492745        {
    27502746            "name": "phpstan/phpstan",
    2751             "version": "1.10.14",
     2747            "version": "1.10.21",
    27522748            "source": {
    27532749                "type": "git",
    27542750                "url": "https://github.com/phpstan/phpstan.git",
    2755                 "reference": "d232901b09e67538e5c86a724be841bea5768a7c"
    2756             },
    2757             "dist": {
    2758                 "type": "zip",
    2759                 "url": "https://api.github.com/repos/phpstan/phpstan/zipball/d232901b09e67538e5c86a724be841bea5768a7c",
    2760                 "reference": "d232901b09e67538e5c86a724be841bea5768a7c",
     2751                "reference": "b2a30186be2e4d97dce754ae4e65eb0ec2f04eb5"
     2752            },
     2753            "dist": {
     2754                "type": "zip",
     2755                "url": "https://api.github.com/repos/phpstan/phpstan/zipball/b2a30186be2e4d97dce754ae4e65eb0ec2f04eb5",
     2756                "reference": "b2a30186be2e4d97dce754ae4e65eb0ec2f04eb5",
    27612757                "shasum": ""
    27622758            },
     
    28072803                }
    28082804            ],
    2809             "time": "2023-04-19T13:47:27+00:00"
     2805            "time": "2023-06-21T20:07:58+00:00"
    28102806        },
    28112807        {
    28122808            "name": "phpstan/phpstan-doctrine",
    2813             "version": "1.3.38",
     2809            "version": "1.3.40",
    28142810            "source": {
    28152811                "type": "git",
    28162812                "url": "https://github.com/phpstan/phpstan-doctrine.git",
    2817                 "reference": "f1499e54358052fef17d349881ee87a7c4cc4c67"
    2818             },
    2819             "dist": {
    2820                 "type": "zip",
    2821                 "url": "https://api.github.com/repos/phpstan/phpstan-doctrine/zipball/f1499e54358052fef17d349881ee87a7c4cc4c67",
    2822                 "reference": "f1499e54358052fef17d349881ee87a7c4cc4c67",
     2813                "reference": "f741919a720af6f84249abc62befeb15eee7bc88"
     2814            },
     2815            "dist": {
     2816                "type": "zip",
     2817                "url": "https://api.github.com/repos/phpstan/phpstan-doctrine/zipball/f741919a720af6f84249abc62befeb15eee7bc88",
     2818                "reference": "f741919a720af6f84249abc62befeb15eee7bc88",
    28232819                "shasum": ""
    28242820            },
     
    28752871            "support": {
    28762872                "issues": "https://github.com/phpstan/phpstan-doctrine/issues",
    2877                 "source": "https://github.com/phpstan/phpstan-doctrine/tree/1.3.38"
    2878             },
    2879             "time": "2023-05-04T10:53:10+00:00"
     2873                "source": "https://github.com/phpstan/phpstan-doctrine/tree/1.3.40"
     2874            },
     2875            "time": "2023-05-11T11:26:04+00:00"
    28802876        },
    28812877        {
    28822878            "name": "phpstan/phpstan-phpunit",
    2883             "version": "1.3.11",
     2879            "version": "1.3.13",
    28842880            "source": {
    28852881                "type": "git",
    28862882                "url": "https://github.com/phpstan/phpstan-phpunit.git",
    2887                 "reference": "9e1b9de6d260461f6e99b6a8f2dbb0bbb98b579c"
    2888             },
    2889             "dist": {
    2890                 "type": "zip",
    2891                 "url": "https://api.github.com/repos/phpstan/phpstan-phpunit/zipball/9e1b9de6d260461f6e99b6a8f2dbb0bbb98b579c",
    2892                 "reference": "9e1b9de6d260461f6e99b6a8f2dbb0bbb98b579c",
     2883                "reference": "d8bdab0218c5eb0964338d24a8511b65e9c94fa5"
     2884            },
     2885            "dist": {
     2886                "type": "zip",
     2887                "url": "https://api.github.com/repos/phpstan/phpstan-phpunit/zipball/d8bdab0218c5eb0964338d24a8511b65e9c94fa5",
     2888                "reference": "d8bdab0218c5eb0964338d24a8511b65e9c94fa5",
    28932889                "shasum": ""
    28942890            },
     
    29272923            "support": {
    29282924                "issues": "https://github.com/phpstan/phpstan-phpunit/issues",
    2929                 "source": "https://github.com/phpstan/phpstan-phpunit/tree/1.3.11"
    2930             },
    2931             "time": "2023-03-25T19:42:13+00:00"
     2925                "source": "https://github.com/phpstan/phpstan-phpunit/tree/1.3.13"
     2926            },
     2927            "time": "2023-05-26T11:05:59+00:00"
    29322928        },
    29332929        {
     
    29822978        {
    29832979            "name": "phpstan/phpstan-symfony",
    2984             "version": "1.3.1",
     2980            "version": "1.3.2",
    29852981            "source": {
    29862982                "type": "git",
    29872983                "url": "https://github.com/phpstan/phpstan-symfony.git",
    2988                 "reference": "7e78605a699d183f5a6936cf91904f4c16ca79b2"
    2989             },
    2990             "dist": {
    2991                 "type": "zip",
    2992                 "url": "https://api.github.com/repos/phpstan/phpstan-symfony/zipball/7e78605a699d183f5a6936cf91904f4c16ca79b2",
    2993                 "reference": "7e78605a699d183f5a6936cf91904f4c16ca79b2",
     2984                "reference": "7332b90dfc291ac5b4b83fbca2081936faa1e3f9"
     2985            },
     2986            "dist": {
     2987                "type": "zip",
     2988                "url": "https://api.github.com/repos/phpstan/phpstan-symfony/zipball/7332b90dfc291ac5b4b83fbca2081936faa1e3f9",
     2989                "reference": "7332b90dfc291ac5b4b83fbca2081936faa1e3f9",
    29942990                "shasum": ""
    29952991            },
     
    30473043            "support": {
    30483044                "issues": "https://github.com/phpstan/phpstan-symfony/issues",
    3049                 "source": "https://github.com/phpstan/phpstan-symfony/tree/1.3.1"
    3050             },
    3051             "time": "2023-04-14T16:59:18+00:00"
     3045                "source": "https://github.com/phpstan/phpstan-symfony/tree/1.3.2"
     3046            },
     3047            "time": "2023-05-16T12:46:15+00:00"
    30523048        },
    30533049        {
     
    33713367        {
    33723368            "name": "phpunit/phpunit",
    3373             "version": "9.6.7",
     3369            "version": "9.6.9",
    33743370            "source": {
    33753371                "type": "git",
    33763372                "url": "https://github.com/sebastianbergmann/phpunit.git",
    3377                 "reference": "c993f0d3b0489ffc42ee2fe0bd645af1538a63b2"
    3378             },
    3379             "dist": {
    3380                 "type": "zip",
    3381                 "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/c993f0d3b0489ffc42ee2fe0bd645af1538a63b2",
    3382                 "reference": "c993f0d3b0489ffc42ee2fe0bd645af1538a63b2",
     3373                "reference": "a9aceaf20a682aeacf28d582654a1670d8826778"
     3374            },
     3375            "dist": {
     3376                "type": "zip",
     3377                "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/a9aceaf20a682aeacf28d582654a1670d8826778",
     3378                "reference": "a9aceaf20a682aeacf28d582654a1670d8826778",
    33833379                "shasum": ""
    33843380            },
     
    34543450                "issues": "https://github.com/sebastianbergmann/phpunit/issues",
    34553451                "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
    3456                 "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.7"
     3452                "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.9"
    34573453            },
    34583454            "funding": [
     
    34703466                }
    34713467            ],
    3472             "time": "2023-04-14T08:58:40+00:00"
     3468            "time": "2023-06-11T06:13:56+00:00"
    34733469        },
    34743470        {
     
    48324828        {
    48334829            "name": "seld/jsonlint",
    4834             "version": "1.9.0",
     4830            "version": "1.10.0",
    48354831            "source": {
    48364832                "type": "git",
    48374833                "url": "https://github.com/Seldaek/jsonlint.git",
    4838                 "reference": "4211420d25eba80712bff236a98960ef68b866b7"
    4839             },
    4840             "dist": {
    4841                 "type": "zip",
    4842                 "url": "https://api.github.com/repos/Seldaek/jsonlint/zipball/4211420d25eba80712bff236a98960ef68b866b7",
    4843                 "reference": "4211420d25eba80712bff236a98960ef68b866b7",
     4834                "reference": "594fd6462aad8ecee0b45ca5045acea4776667f1"
     4835            },
     4836            "dist": {
     4837                "type": "zip",
     4838                "url": "https://api.github.com/repos/Seldaek/jsonlint/zipball/594fd6462aad8ecee0b45ca5045acea4776667f1",
     4839                "reference": "594fd6462aad8ecee0b45ca5045acea4776667f1",
    48444840                "shasum": ""
    48454841            },
     
    48804876            "support": {
    48814877                "issues": "https://github.com/Seldaek/jsonlint/issues",
    4882                 "source": "https://github.com/Seldaek/jsonlint/tree/1.9.0"
     4878                "source": "https://github.com/Seldaek/jsonlint/tree/1.10.0"
    48834879            },
    48844880            "funding": [
     
    48924888                }
    48934889            ],
    4894             "time": "2022-04-01T13:37:23+00:00"
     4890            "time": "2023-05-11T13:16:46+00:00"
    48954891        },
    48964892        {
     
    51235119        {
    51245120            "name": "symfony/config",
    5125             "version": "v6.2.7",
     5121            "version": "v6.0.19",
    51265122            "source": {
    51275123                "type": "git",
    51285124                "url": "https://github.com/symfony/config.git",
    5129                 "reference": "249271da6f545d6579e0663374f8249a80be2893"
    5130             },
    5131             "dist": {
    5132                 "type": "zip",
    5133                 "url": "https://api.github.com/repos/symfony/config/zipball/249271da6f545d6579e0663374f8249a80be2893",
    5134                 "reference": "249271da6f545d6579e0663374f8249a80be2893",
    5135                 "shasum": ""
    5136             },
    5137             "require": {
    5138                 "php": ">=8.1",
     5125                "reference": "db4fc45c24e0c3e2198e68ada9d7f90daa1f97e3"
     5126            },
     5127            "dist": {
     5128                "type": "zip",
     5129                "url": "https://api.github.com/repos/symfony/config/zipball/db4fc45c24e0c3e2198e68ada9d7f90daa1f97e3",
     5130                "reference": "db4fc45c24e0c3e2198e68ada9d7f90daa1f97e3",
     5131                "shasum": ""
     5132            },
     5133            "require": {
     5134                "php": ">=8.0.2",
    51395135                "symfony/deprecation-contracts": "^2.1|^3",
    51405136                "symfony/filesystem": "^5.4|^6.0",
    5141                 "symfony/polyfill-ctype": "~1.8"
     5137                "symfony/polyfill-ctype": "~1.8",
     5138                "symfony/polyfill-php81": "^1.22"
    51425139            },
    51435140            "conflict": {
    5144                 "symfony/finder": "<5.4"
     5141                "symfony/finder": "<4.4"
    51455142            },
    51465143            "require-dev": {
     
    51805177            "homepage": "https://symfony.com",
    51815178            "support": {
    5182                 "source": "https://github.com/symfony/config/tree/v6.2.7"
     5179                "source": "https://github.com/symfony/config/tree/v6.0.19"
    51835180            },
    51845181            "funding": [
     
    51965193                }
    51975194            ],
    5198             "time": "2023-02-14T08:44:56+00:00"
     5195            "time": "2023-01-09T04:36:00+00:00"
    51995196        },
    52005197        {
    52015198            "name": "symfony/console",
    5202             "version": "v5.4.23",
     5199            "version": "v5.4.24",
    52035200            "source": {
    52045201                "type": "git",
    52055202                "url": "https://github.com/symfony/console.git",
    5206                 "reference": "90f21e27d0d88ce38720556dd164d4a1e4c3934c"
    5207             },
    5208             "dist": {
    5209                 "type": "zip",
    5210                 "url": "https://api.github.com/repos/symfony/console/zipball/90f21e27d0d88ce38720556dd164d4a1e4c3934c",
    5211                 "reference": "90f21e27d0d88ce38720556dd164d4a1e4c3934c",
     5203                "reference": "560fc3ed7a43e6d30ea94a07d77f9a60b8ed0fb8"
     5204            },
     5205            "dist": {
     5206                "type": "zip",
     5207                "url": "https://api.github.com/repos/symfony/console/zipball/560fc3ed7a43e6d30ea94a07d77f9a60b8ed0fb8",
     5208                "reference": "560fc3ed7a43e6d30ea94a07d77f9a60b8ed0fb8",
    52125209                "shasum": ""
    52135210            },
     
    52795276            ],
    52805277            "support": {
    5281                 "source": "https://github.com/symfony/console/tree/v5.4.23"
     5278                "source": "https://github.com/symfony/console/tree/v5.4.24"
    52825279            },
    52835280            "funding": [
     
    52955292                }
    52965293            ],
    5297             "time": "2023-04-24T18:47:29+00:00"
     5294            "time": "2023-05-26T05:13:16+00:00"
    52985295        },
    52995296        {
    53005297            "name": "symfony/dependency-injection",
    5301             "version": "v6.2.10",
     5298            "version": "v6.0.20",
    53025299            "source": {
    53035300                "type": "git",
    53045301                "url": "https://github.com/symfony/dependency-injection.git",
    5305                 "reference": "d732a66a2672669232c0b4536c8c96724a679780"
    5306             },
    5307             "dist": {
    5308                 "type": "zip",
    5309                 "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/d732a66a2672669232c0b4536c8c96724a679780",
    5310                 "reference": "d732a66a2672669232c0b4536c8c96724a679780",
    5311                 "shasum": ""
    5312             },
    5313             "require": {
    5314                 "php": ">=8.1",
     5302                "reference": "359806e1adebd1c43e18e5ea22acd14bef7fcf8c"
     5303            },
     5304            "dist": {
     5305                "type": "zip",
     5306                "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/359806e1adebd1c43e18e5ea22acd14bef7fcf8c",
     5307                "reference": "359806e1adebd1c43e18e5ea22acd14bef7fcf8c",
     5308                "shasum": ""
     5309            },
     5310            "require": {
     5311                "php": ">=8.0.2",
    53155312                "psr/container": "^1.1|^2.0",
    53165313                "symfony/deprecation-contracts": "^2.1|^3",
    5317                 "symfony/service-contracts": "^1.1.6|^2.0|^3.0",
    5318                 "symfony/var-exporter": "^6.2.7"
     5314                "symfony/polyfill-php81": "^1.22",
     5315                "symfony/service-contracts": "^1.1.6|^2.0|^3.0"
    53195316            },
    53205317            "conflict": {
    53215318                "ext-psr": "<1.1|>=2",
    5322                 "symfony/config": "<6.1",
     5319                "symfony/config": "<5.4",
    53235320                "symfony/finder": "<5.4",
    5324                 "symfony/proxy-manager-bridge": "<6.2",
     5321                "symfony/proxy-manager-bridge": "<5.4",
    53255322                "symfony/yaml": "<5.4"
    53265323            },
     
    53305327            },
    53315328            "require-dev": {
    5332                 "symfony/config": "^6.1",
     5329                "symfony/config": "^5.4|^6.0",
    53335330                "symfony/expression-language": "^5.4|^6.0",
    53345331                "symfony/yaml": "^5.4|^6.0"
     
    53385335                "symfony/expression-language": "For using expressions in service container configuration",
    53395336                "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required",
     5337                "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them",
    53405338                "symfony/yaml": ""
    53415339            },
     
    53665364            "homepage": "https://symfony.com",
    53675365            "support": {
    5368                 "source": "https://github.com/symfony/dependency-injection/tree/v6.2.10"
     5366                "source": "https://github.com/symfony/dependency-injection/tree/v6.0.20"
    53695367            },
    53705368            "funding": [
     
    53825380                }
    53835381            ],
    5384             "time": "2023-04-21T15:42:15+00:00"
     5382            "time": "2023-01-30T15:41:07+00:00"
    53855383        },
    53865384        {
    53875385            "name": "symfony/deprecation-contracts",
    5388             "version": "v3.2.1",
     5386            "version": "v3.0.2",
    53895387            "source": {
    53905388                "type": "git",
    53915389                "url": "https://github.com/symfony/deprecation-contracts.git",
    5392                 "reference": "e2d1534420bd723d0ef5aec58a22c5fe60ce6f5e"
    5393             },
    5394             "dist": {
    5395                 "type": "zip",
    5396                 "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/e2d1534420bd723d0ef5aec58a22c5fe60ce6f5e",
    5397                 "reference": "e2d1534420bd723d0ef5aec58a22c5fe60ce6f5e",
    5398                 "shasum": ""
    5399             },
    5400             "require": {
    5401                 "php": ">=8.1"
     5390                "reference": "26954b3d62a6c5fd0ea8a2a00c0353a14978d05c"
     5391            },
     5392            "dist": {
     5393                "type": "zip",
     5394                "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/26954b3d62a6c5fd0ea8a2a00c0353a14978d05c",
     5395                "reference": "26954b3d62a6c5fd0ea8a2a00c0353a14978d05c",
     5396                "shasum": ""
     5397            },
     5398            "require": {
     5399                "php": ">=8.0.2"
    54025400            },
    54035401            "type": "library",
    54045402            "extra": {
    54055403                "branch-alias": {
    5406                     "dev-main": "3.3-dev"
     5404                    "dev-main": "3.0-dev"
    54075405                },
    54085406                "thanks": {
     
    54335431            "homepage": "https://symfony.com",
    54345432            "support": {
    5435                 "source": "https://github.com/symfony/deprecation-contracts/tree/v3.2.1"
     5433                "source": "https://github.com/symfony/deprecation-contracts/tree/v3.0.2"
    54365434            },
    54375435            "funding": [
     
    54495447                }
    54505448            ],
    5451             "time": "2023-03-01T10:25:55+00:00"
     5449            "time": "2022-01-02T09:55:41+00:00"
    54525450        },
    54535451        {
    54545452            "name": "symfony/dotenv",
    5455             "version": "v6.2.8",
     5453            "version": "v6.0.19",
    54565454            "source": {
    54575455                "type": "git",
    54585456                "url": "https://github.com/symfony/dotenv.git",
    5459                 "reference": "4481aa45be7a11d2335c1d5b5bbe2f0c6199b105"
    5460             },
    5461             "dist": {
    5462                 "type": "zip",
    5463                 "url": "https://api.github.com/repos/symfony/dotenv/zipball/4481aa45be7a11d2335c1d5b5bbe2f0c6199b105",
    5464                 "reference": "4481aa45be7a11d2335c1d5b5bbe2f0c6199b105",
    5465                 "shasum": ""
    5466             },
    5467             "require": {
    5468                 "php": ">=8.1"
    5469             },
    5470             "conflict": {
    5471                 "symfony/console": "<5.4",
    5472                 "symfony/process": "<5.4"
     5457                "reference": "9cee123707e689f7e06c09624c145d206468bcf2"
     5458            },
     5459            "dist": {
     5460                "type": "zip",
     5461                "url": "https://api.github.com/repos/symfony/dotenv/zipball/9cee123707e689f7e06c09624c145d206468bcf2",
     5462                "reference": "9cee123707e689f7e06c09624c145d206468bcf2",
     5463                "shasum": ""
     5464            },
     5465            "require": {
     5466                "php": ">=8.0.2"
    54735467            },
    54745468            "require-dev": {
     
    55075501            ],
    55085502            "support": {
    5509                 "source": "https://github.com/symfony/dotenv/tree/v6.2.8"
     5503                "source": "https://github.com/symfony/dotenv/tree/v6.0.19"
    55105504            },
    55115505            "funding": [
     
    55235517                }
    55245518            ],
    5525             "time": "2023-03-10T10:06:03+00:00"
     5519            "time": "2023-01-01T08:36:10+00:00"
    55265520        },
    55275521        {
    55285522            "name": "symfony/event-dispatcher",
    5529             "version": "v6.2.8",
     5523            "version": "v6.0.19",
    55305524            "source": {
    55315525                "type": "git",
    55325526                "url": "https://github.com/symfony/event-dispatcher.git",
    5533                 "reference": "04046f35fd7d72f9646e721fc2ecb8f9c67d3339"
    5534             },
    5535             "dist": {
    5536                 "type": "zip",
    5537                 "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/04046f35fd7d72f9646e721fc2ecb8f9c67d3339",
    5538                 "reference": "04046f35fd7d72f9646e721fc2ecb8f9c67d3339",
    5539                 "shasum": ""
    5540             },
    5541             "require": {
    5542                 "php": ">=8.1",
     5527                "reference": "2eaf8e63bc5b8cefabd4a800157f0d0c094f677a"
     5528            },
     5529            "dist": {
     5530                "type": "zip",
     5531                "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/2eaf8e63bc5b8cefabd4a800157f0d0c094f677a",
     5532                "reference": "2eaf8e63bc5b8cefabd4a800157f0d0c094f677a",
     5533                "shasum": ""
     5534            },
     5535            "require": {
     5536                "php": ">=8.0.2",
    55435537                "symfony/event-dispatcher-contracts": "^2|^3"
    55445538            },
     
    55905584            "homepage": "https://symfony.com",
    55915585            "support": {
    5592                 "source": "https://github.com/symfony/event-dispatcher/tree/v6.2.8"
     5586                "source": "https://github.com/symfony/event-dispatcher/tree/v6.0.19"
    55935587            },
    55945588            "funding": [
     
    56065600                }
    56075601            ],
    5608             "time": "2023-03-20T16:06:02+00:00"
     5602            "time": "2023-01-01T08:36:10+00:00"
    56095603        },
    56105604        {
    56115605            "name": "symfony/event-dispatcher-contracts",
    5612             "version": "v3.2.1",
     5606            "version": "v3.0.2",
    56135607            "source": {
    56145608                "type": "git",
    56155609                "url": "https://github.com/symfony/event-dispatcher-contracts.git",
    5616                 "reference": "0ad3b6f1e4e2da5690fefe075cd53a238646d8dd"
    5617             },
    5618             "dist": {
    5619                 "type": "zip",
    5620                 "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/0ad3b6f1e4e2da5690fefe075cd53a238646d8dd",
    5621                 "reference": "0ad3b6f1e4e2da5690fefe075cd53a238646d8dd",
    5622                 "shasum": ""
    5623             },
    5624             "require": {
    5625                 "php": ">=8.1",
     5610                "reference": "7bc61cc2db649b4637d331240c5346dcc7708051"
     5611            },
     5612            "dist": {
     5613                "type": "zip",
     5614                "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/7bc61cc2db649b4637d331240c5346dcc7708051",
     5615                "reference": "7bc61cc2db649b4637d331240c5346dcc7708051",
     5616                "shasum": ""
     5617            },
     5618            "require": {
     5619                "php": ">=8.0.2",
    56265620                "psr/event-dispatcher": "^1"
    56275621            },
     
    56325626            "extra": {
    56335627                "branch-alias": {
    5634                     "dev-main": "3.3-dev"
     5628                    "dev-main": "3.0-dev"
    56355629                },
    56365630                "thanks": {
     
    56695663            ],
    56705664            "support": {
    5671                 "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.2.1"
     5665                "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.0.2"
    56725666            },
    56735667            "funding": [
     
    56855679                }
    56865680            ],
    5687             "time": "2023-03-01T10:32:47+00:00"
     5681            "time": "2022-01-02T09:55:41+00:00"
    56885682        },
    56895683        {
    56905684            "name": "symfony/filesystem",
    5691             "version": "v6.2.10",
     5685            "version": "v6.0.19",
    56925686            "source": {
    56935687                "type": "git",
    56945688                "url": "https://github.com/symfony/filesystem.git",
    5695                 "reference": "fd588debf7d1bc16a2c84b4b3b71145d9946b894"
    5696             },
    5697             "dist": {
    5698                 "type": "zip",
    5699                 "url": "https://api.github.com/repos/symfony/filesystem/zipball/fd588debf7d1bc16a2c84b4b3b71145d9946b894",
    5700                 "reference": "fd588debf7d1bc16a2c84b4b3b71145d9946b894",
    5701                 "shasum": ""
    5702             },
    5703             "require": {
    5704                 "php": ">=8.1",
     5689                "reference": "3d49eec03fda1f0fc19b7349fbbe55ebc1004214"
     5690            },
     5691            "dist": {
     5692                "type": "zip",
     5693                "url": "https://api.github.com/repos/symfony/filesystem/zipball/3d49eec03fda1f0fc19b7349fbbe55ebc1004214",
     5694                "reference": "3d49eec03fda1f0fc19b7349fbbe55ebc1004214",
     5695                "shasum": ""
     5696            },
     5697            "require": {
     5698                "php": ">=8.0.2",
    57055699                "symfony/polyfill-ctype": "~1.8",
    57065700                "symfony/polyfill-mbstring": "~1.8"
     
    57325726            "homepage": "https://symfony.com",
    57335727            "support": {
    5734                 "source": "https://github.com/symfony/filesystem/tree/v6.2.10"
     5728                "source": "https://github.com/symfony/filesystem/tree/v6.0.19"
    57355729            },
    57365730            "funding": [
     
    57485742                }
    57495743            ],
    5750             "time": "2023-04-18T13:46:08+00:00"
     5744            "time": "2023-01-20T17:44:14+00:00"
    57515745        },
    57525746        {
    57535747            "name": "symfony/finder",
    5754             "version": "v6.2.7",
     5748            "version": "v6.0.19",
    57555749            "source": {
    57565750                "type": "git",
    57575751                "url": "https://github.com/symfony/finder.git",
    5758                 "reference": "20808dc6631aecafbe67c186af5dcb370be3a0eb"
    5759             },
    5760             "dist": {
    5761                 "type": "zip",
    5762                 "url": "https://api.github.com/repos/symfony/finder/zipball/20808dc6631aecafbe67c186af5dcb370be3a0eb",
    5763                 "reference": "20808dc6631aecafbe67c186af5dcb370be3a0eb",
    5764                 "shasum": ""
    5765             },
    5766             "require": {
    5767                 "php": ">=8.1"
    5768             },
    5769             "require-dev": {
    5770                 "symfony/filesystem": "^6.0"
     5752                "reference": "5cc9cac6586fc0c28cd173780ca696e419fefa11"
     5753            },
     5754            "dist": {
     5755                "type": "zip",
     5756                "url": "https://api.github.com/repos/symfony/finder/zipball/5cc9cac6586fc0c28cd173780ca696e419fefa11",
     5757                "reference": "5cc9cac6586fc0c28cd173780ca696e419fefa11",
     5758                "shasum": ""
     5759            },
     5760            "require": {
     5761                "php": ">=8.0.2"
    57715762            },
    57725763            "type": "library",
     
    57965787            "homepage": "https://symfony.com",
    57975788            "support": {
    5798                 "source": "https://github.com/symfony/finder/tree/v6.2.7"
     5789                "source": "https://github.com/symfony/finder/tree/v6.0.19"
    57995790            },
    58005791            "funding": [
     
    58125803                }
    58135804            ],
    5814             "time": "2023-02-16T09:57:23+00:00"
     5805            "time": "2023-01-20T17:44:14+00:00"
    58155806        },
    58165807        {
    58175808            "name": "symfony/options-resolver",
    5818             "version": "v6.2.7",
     5809            "version": "v6.0.19",
    58195810            "source": {
    58205811                "type": "git",
    58215812                "url": "https://github.com/symfony/options-resolver.git",
    5822                 "reference": "aa0e85b53bbb2b4951960efd61d295907eacd629"
    5823             },
    5824             "dist": {
    5825                 "type": "zip",
    5826                 "url": "https://api.github.com/repos/symfony/options-resolver/zipball/aa0e85b53bbb2b4951960efd61d295907eacd629",
    5827                 "reference": "aa0e85b53bbb2b4951960efd61d295907eacd629",
    5828                 "shasum": ""
    5829             },
    5830             "require": {
    5831                 "php": ">=8.1",
     5813                "reference": "6a180d1c45e0d9797470ca9eb46215692de00fa3"
     5814            },
     5815            "dist": {
     5816                "type": "zip",
     5817                "url": "https://api.github.com/repos/symfony/options-resolver/zipball/6a180d1c45e0d9797470ca9eb46215692de00fa3",
     5818                "reference": "6a180d1c45e0d9797470ca9eb46215692de00fa3",
     5819                "shasum": ""
     5820            },
     5821            "require": {
     5822                "php": ">=8.0.2",
    58325823                "symfony/deprecation-contracts": "^2.1|^3"
    58335824            },
     
    58635854            ],
    58645855            "support": {
    5865                 "source": "https://github.com/symfony/options-resolver/tree/v6.2.7"
     5856                "source": "https://github.com/symfony/options-resolver/tree/v6.0.19"
    58665857            },
    58675858            "funding": [
     
    58795870                }
    58805871            ],
    5881             "time": "2023-02-14T08:44:56+00:00"
     5872            "time": "2023-01-01T08:36:10+00:00"
    58825873        },
    58835874        {
     
    64546445        {
    64556446            "name": "symfony/process",
    6456             "version": "v6.2.10",
     6447            "version": "v6.0.19",
    64576448            "source": {
    64586449                "type": "git",
    64596450                "url": "https://github.com/symfony/process.git",
    6460                 "reference": "b34cdbc9c5e75d45a3703e63a48ad07aafa8bf2e"
    6461             },
    6462             "dist": {
    6463                 "type": "zip",
    6464                 "url": "https://api.github.com/repos/symfony/process/zipball/b34cdbc9c5e75d45a3703e63a48ad07aafa8bf2e",
    6465                 "reference": "b34cdbc9c5e75d45a3703e63a48ad07aafa8bf2e",
    6466                 "shasum": ""
    6467             },
    6468             "require": {
    6469                 "php": ">=8.1"
     6451                "reference": "2114fd60f26a296cc403a7939ab91478475a33d4"
     6452            },
     6453            "dist": {
     6454                "type": "zip",
     6455                "url": "https://api.github.com/repos/symfony/process/zipball/2114fd60f26a296cc403a7939ab91478475a33d4",
     6456                "reference": "2114fd60f26a296cc403a7939ab91478475a33d4",
     6457                "shasum": ""
     6458            },
     6459            "require": {
     6460                "php": ">=8.0.2"
    64706461            },
    64716462            "type": "library",
     
    64956486            "homepage": "https://symfony.com",
    64966487            "support": {
    6497                 "source": "https://github.com/symfony/process/tree/v6.2.10"
     6488                "source": "https://github.com/symfony/process/tree/v6.0.19"
    64986489            },
    64996490            "funding": [
     
    65116502                }
    65126503            ],
    6513             "time": "2023-04-18T13:56:57+00:00"
     6504            "time": "2023-01-01T08:36:10+00:00"
    65146505        },
    65156506        {
    65166507            "name": "symfony/service-contracts",
    6517             "version": "v3.2.1",
     6508            "version": "v3.0.2",
    65186509            "source": {
    65196510                "type": "git",
    65206511                "url": "https://github.com/symfony/service-contracts.git",
    6521                 "reference": "a8c9cedf55f314f3a186041d19537303766df09a"
    6522             },
    6523             "dist": {
    6524                 "type": "zip",
    6525                 "url": "https://api.github.com/repos/symfony/service-contracts/zipball/a8c9cedf55f314f3a186041d19537303766df09a",
    6526                 "reference": "a8c9cedf55f314f3a186041d19537303766df09a",
    6527                 "shasum": ""
    6528             },
    6529             "require": {
    6530                 "php": ">=8.1",
     6512                "reference": "d78d39c1599bd1188b8e26bb341da52c3c6d8a66"
     6513            },
     6514            "dist": {
     6515                "type": "zip",
     6516                "url": "https://api.github.com/repos/symfony/service-contracts/zipball/d78d39c1599bd1188b8e26bb341da52c3c6d8a66",
     6517                "reference": "d78d39c1599bd1188b8e26bb341da52c3c6d8a66",
     6518                "shasum": ""
     6519            },
     6520            "require": {
     6521                "php": ">=8.0.2",
    65316522                "psr/container": "^2.0"
    65326523            },
     
    65406531            "extra": {
    65416532                "branch-alias": {
    6542                     "dev-main": "3.3-dev"
     6533                    "dev-main": "3.0-dev"
    65436534                },
    65446535                "thanks": {
     
    65506541                "psr-4": {
    65516542                    "Symfony\\Contracts\\Service\\": ""
    6552                 },
    6553                 "exclude-from-classmap": [
    6554                     "/Test/"
    6555                 ]
     6543                }
    65566544            },
    65576545            "notification-url": "https://packagist.org/downloads/",
     
    65806568            ],
    65816569            "support": {
    6582                 "source": "https://github.com/symfony/service-contracts/tree/v3.2.1"
     6570                "source": "https://github.com/symfony/service-contracts/tree/v3.0.2"
    65836571            },
    65846572            "funding": [
     
    65966584                }
    65976585            ],
    6598             "time": "2023-03-01T10:32:47+00:00"
     6586            "time": "2022-05-30T19:17:58+00:00"
    65996587        },
    66006588        {
    66016589            "name": "symfony/stopwatch",
    6602             "version": "v6.2.7",
     6590            "version": "v6.0.19",
    66036591            "source": {
    66046592                "type": "git",
    66056593                "url": "https://github.com/symfony/stopwatch.git",
    6606                 "reference": "f3adc98c1061875dd2edcd45e5b04e63d0e29f8f"
    6607             },
    6608             "dist": {
    6609                 "type": "zip",
    6610                 "url": "https://api.github.com/repos/symfony/stopwatch/zipball/f3adc98c1061875dd2edcd45e5b04e63d0e29f8f",
    6611                 "reference": "f3adc98c1061875dd2edcd45e5b04e63d0e29f8f",
    6612                 "shasum": ""
    6613             },
    6614             "require": {
    6615                 "php": ">=8.1",
     6594                "reference": "011e781839dd1d2eb8119f65ac516a530f60226d"
     6595            },
     6596            "dist": {
     6597                "type": "zip",
     6598                "url": "https://api.github.com/repos/symfony/stopwatch/zipball/011e781839dd1d2eb8119f65ac516a530f60226d",
     6599                "reference": "011e781839dd1d2eb8119f65ac516a530f60226d",
     6600                "shasum": ""
     6601            },
     6602            "require": {
     6603                "php": ">=8.0.2",
    66166604                "symfony/service-contracts": "^1|^2|^3"
    66176605            },
     
    66426630            "homepage": "https://symfony.com",
    66436631            "support": {
    6644                 "source": "https://github.com/symfony/stopwatch/tree/v6.2.7"
     6632                "source": "https://github.com/symfony/stopwatch/tree/v6.0.19"
    66456633            },
    66466634            "funding": [
     
    66586646                }
    66596647            ],
    6660             "time": "2023-02-14T08:44:56+00:00"
     6648            "time": "2023-01-01T08:36:10+00:00"
    66616649        },
    66626650        {
    66636651            "name": "symfony/string",
    6664             "version": "v6.2.8",
     6652            "version": "v6.0.19",
    66656653            "source": {
    66666654                "type": "git",
    66676655                "url": "https://github.com/symfony/string.git",
    6668                 "reference": "193e83bbd6617d6b2151c37fff10fa7168ebddef"
    6669             },
    6670             "dist": {
    6671                 "type": "zip",
    6672                 "url": "https://api.github.com/repos/symfony/string/zipball/193e83bbd6617d6b2151c37fff10fa7168ebddef",
    6673                 "reference": "193e83bbd6617d6b2151c37fff10fa7168ebddef",
    6674                 "shasum": ""
    6675             },
    6676             "require": {
    6677                 "php": ">=8.1",
     6656                "reference": "d9e72497367c23e08bf94176d2be45b00a9d232a"
     6657            },
     6658            "dist": {
     6659                "type": "zip",
     6660                "url": "https://api.github.com/repos/symfony/string/zipball/d9e72497367c23e08bf94176d2be45b00a9d232a",
     6661                "reference": "d9e72497367c23e08bf94176d2be45b00a9d232a",
     6662                "shasum": ""
     6663            },
     6664            "require": {
     6665                "php": ">=8.0.2",
    66786666                "symfony/polyfill-ctype": "~1.8",
    66796667                "symfony/polyfill-intl-grapheme": "~1.0",
     
    66876675                "symfony/error-handler": "^5.4|^6.0",
    66886676                "symfony/http-client": "^5.4|^6.0",
    6689                 "symfony/intl": "^6.2",
    66906677                "symfony/translation-contracts": "^2.0|^3.0",
    66916678                "symfony/var-exporter": "^5.4|^6.0"
     
    67286715            ],
    67296716            "support": {
    6730                 "source": "https://github.com/symfony/string/tree/v6.2.8"
     6717                "source": "https://github.com/symfony/string/tree/v6.0.19"
    67316718            },
    67326719            "funding": [
     
    67446731                }
    67456732            ],
    6746             "time": "2023-03-20T16:06:02+00:00"
    6747         },
    6748         {
    6749             "name": "symfony/var-exporter",
    6750             "version": "v6.2.10",
    6751             "source": {
    6752                 "type": "git",
    6753                 "url": "https://github.com/symfony/var-exporter.git",
    6754                 "reference": "9a07920c2058bafee921ce4d90aeef2193837d63"
    6755             },
    6756             "dist": {
    6757                 "type": "zip",
    6758                 "url": "https://api.github.com/repos/symfony/var-exporter/zipball/9a07920c2058bafee921ce4d90aeef2193837d63",
    6759                 "reference": "9a07920c2058bafee921ce4d90aeef2193837d63",
    6760                 "shasum": ""
    6761             },
    6762             "require": {
    6763                 "php": ">=8.1"
    6764             },
    6765             "require-dev": {
    6766                 "symfony/var-dumper": "^5.4|^6.0"
    6767             },
     6733            "time": "2023-01-01T08:36:10+00:00"
     6734        },
     6735        {
     6736            "name": "symfony/yaml",
     6737            "version": "v6.0.19",
     6738            "source": {
     6739                "type": "git",
     6740                "url": "https://github.com/symfony/yaml.git",
     6741                "reference": "deec3a812a0305a50db8ae689b183f43d915c884"
     6742            },
     6743            "dist": {
     6744                "type": "zip",
     6745                "url": "https://api.github.com/repos/symfony/yaml/zipball/deec3a812a0305a50db8ae689b183f43d915c884",
     6746                "reference": "deec3a812a0305a50db8ae689b183f43d915c884",
     6747                "shasum": ""
     6748            },
     6749            "require": {
     6750                "php": ">=8.0.2",
     6751                "symfony/polyfill-ctype": "^1.8"
     6752            },
     6753            "conflict": {
     6754                "symfony/console": "<5.4"
     6755            },
     6756            "require-dev": {
     6757                "symfony/console": "^5.4|^6.0"
     6758            },
     6759            "suggest": {
     6760                "symfony/console": "For validating YAML files using the lint command"
     6761            },
     6762            "bin": [
     6763                "Resources/bin/yaml-lint"
     6764            ],
    67686765            "type": "library",
    67696766            "autoload": {
    67706767                "psr-4": {
    6771                     "Symfony\\Component\\VarExporter\\": ""
     6768                    "Symfony\\Component\\Yaml\\": ""
    67726769                },
    67736770                "exclude-from-classmap": [
     
    67816778            "authors": [
    67826779                {
    6783                     "name": "Nicolas Grekas",
    6784                     "email": "p@tchwork.com"
     6780                    "name": "Fabien Potencier",
     6781                    "email": "fabien@symfony.com"
    67856782                },
    67866783                {
     
    67896786                }
    67906787            ],
    6791             "description": "Allows exporting any serializable PHP data structure to plain PHP code",
     6788            "description": "Loads and dumps YAML files",
    67926789            "homepage": "https://symfony.com",
    6793             "keywords": [
    6794                 "clone",
    6795                 "construct",
    6796                 "export",
    6797                 "hydrate",
    6798                 "instantiate",
    6799                 "lazy-loading",
    6800                 "proxy",
    6801                 "serialize"
    6802             ],
    6803             "support": {
    6804                 "source": "https://github.com/symfony/var-exporter/tree/v6.2.10"
     6790            "support": {
     6791                "source": "https://github.com/symfony/yaml/tree/v6.0.19"
    68056792            },
    68066793            "funding": [
     
    68186805                }
    68196806            ],
    6820             "time": "2023-04-21T08:33:05+00:00"
    6821         },
    6822         {
    6823             "name": "symfony/yaml",
    6824             "version": "v6.2.10",
    6825             "source": {
    6826                 "type": "git",
    6827                 "url": "https://github.com/symfony/yaml.git",
    6828                 "reference": "61916f3861b1e9705b18cfde723921a71dd1559d"
    6829             },
    6830             "dist": {
    6831                 "type": "zip",
    6832                 "url": "https://api.github.com/repos/symfony/yaml/zipball/61916f3861b1e9705b18cfde723921a71dd1559d",
    6833                 "reference": "61916f3861b1e9705b18cfde723921a71dd1559d",
    6834                 "shasum": ""
    6835             },
    6836             "require": {
    6837                 "php": ">=8.1",
    6838                 "symfony/polyfill-ctype": "^1.8"
    6839             },
    6840             "conflict": {
    6841                 "symfony/console": "<5.4"
    6842             },
    6843             "require-dev": {
    6844                 "symfony/console": "^5.4|^6.0"
    6845             },
    6846             "suggest": {
    6847                 "symfony/console": "For validating YAML files using the lint command"
    6848             },
    6849             "bin": [
    6850                 "Resources/bin/yaml-lint"
    6851             ],
    6852             "type": "library",
    6853             "autoload": {
    6854                 "psr-4": {
    6855                     "Symfony\\Component\\Yaml\\": ""
    6856                 },
    6857                 "exclude-from-classmap": [
    6858                     "/Tests/"
    6859                 ]
    6860             },
    6861             "notification-url": "https://packagist.org/downloads/",
    6862             "license": [
    6863                 "MIT"
    6864             ],
    6865             "authors": [
    6866                 {
    6867                     "name": "Fabien Potencier",
    6868                     "email": "[email protected]"
    6869                 },
    6870                 {
    6871                     "name": "Symfony Community",
    6872                     "homepage": "https://symfony.com/contributors"
    6873                 }
    6874             ],
    6875             "description": "Loads and dumps YAML files",
    6876             "homepage": "https://symfony.com",
    6877             "support": {
    6878                 "source": "https://github.com/symfony/yaml/tree/v6.2.10"
    6879             },
    6880             "funding": [
    6881                 {
    6882                     "url": "https://symfony.com/sponsor",
    6883                     "type": "custom"
    6884                 },
    6885                 {
    6886                     "url": "https://github.com/fabpot",
    6887                     "type": "github"
    6888                 },
    6889                 {
    6890                     "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
    6891                     "type": "tidelift"
    6892                 }
    6893             ],
    6894             "time": "2023-04-28T13:25:36+00:00"
     6807            "time": "2023-01-11T11:50:03+00:00"
    68956808        },
    68966809        {
  • splash-connector/trunk/vendor/splash/phpcore/docker-compose.yml

    r2865644 r2947048  
    2424
    2525services:
     26
     27    ################################################################################
     28    # PHP 8.2
     29    php-8.2:
     30        image:          registry.gitlab.com/badpixxel-projects/php-sdk:php-8.2
     31        container_name: php-core-8.2
     32        volumes:
     33            - ./:/var/www/html
     34            - vendor-php82:/var/www/html/vendor
    2635
    2736    ################################################################################
     
    5362
    5463volumes:
     64    vendor-php82: ~
    5565    vendor-php81: ~
    5666    vendor-php80: ~
Note: See TracChangeset for help on using the changeset viewer.