From cee7d634cd9845783c19725d93fa4ddae7e71c77 Mon Sep 17 00:00:00 2001 From: Cody Cook Date: Tue, 14 May 2024 09:24:08 -0700 Subject: [PATCH] Adjust phpunit and coverage --- composer.json | 2 +- composer.lock | 1680 ++++++++++++++++++++++++++++++++++++++++++++++++- composer.phar | Bin 2985953 -> 2989019 bytes 3 files changed, 1671 insertions(+), 11 deletions(-) diff --git a/composer.json b/composer.json index bd19761..7136bf3 100644 --- a/composer.json +++ b/composer.json @@ -15,6 +15,6 @@ "yosymfony/toml": "*", "ext-mysqli": "*", "ext-curl": "*", - "phpunit/phpunit": "*" + "phpunit/phpunit": ">8.5.1.0" } } \ No newline at end of file diff --git a/composer.lock b/composer.lock index e393547..c561621 100644 --- a/composer.lock +++ b/composer.lock @@ -4,11 +4,1667 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "30cbda5947197fc974540cf5949444a9", + "content-hash": "c891b4f6d2749c8df8c478b2acaf7679", "packages": [ + { + "name": "myclabs/deep-copy", + "version": "1.x-dev", + "source": { + "type": "git", + "url": "https://github.com/myclabs/DeepCopy.git", + "reference": "2f5294676c802a62b0549f6bc8983f14294ce369" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/2f5294676c802a62b0549f6bc8983f14294ce369", + "reference": "2f5294676c802a62b0549f6bc8983f14294ce369", + "shasum": "" + }, + "require": { + "php": "^7.1 || ^8.0" + }, + "conflict": { + "doctrine/collections": "<1.6.8", + "doctrine/common": "<2.13.3 || >=3 <3.2.2" + }, + "require-dev": { + "doctrine/collections": "^1.6.8", + "doctrine/common": "^2.13.3 || ^3.2.2", + "phpspec/prophecy": "^1.10", + "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13" + }, + "default-branch": true, + "type": "library", + "autoload": { + "files": [ + "src/DeepCopy/deep_copy.php" + ], + "psr-4": { + "DeepCopy\\": "src/DeepCopy/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "Create deep copies (clones) of your objects", + "keywords": [ + "clone", + "copy", + "duplicate", + "object", + "object graph" + ], + "support": { + "issues": "https://github.com/myclabs/DeepCopy/issues", + "source": "https://github.com/myclabs/DeepCopy/tree/1.x" + }, + "funding": [ + { + "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy", + "type": "tidelift" + } + ], + "time": "2024-02-10T11:10:03+00:00" + }, + { + "name": "nikic/php-parser", + "version": "dev-master", + "source": { + "type": "git", + "url": "https://github.com/nikic/PHP-Parser.git", + "reference": "c5ee33df86c06b3278c670f64273b1ba768a0744" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/c5ee33df86c06b3278c670f64273b1ba768a0744", + "reference": "c5ee33df86c06b3278c670f64273b1ba768a0744", + "shasum": "" + }, + "require": { + "ext-ctype": "*", + "ext-json": "*", + "ext-tokenizer": "*", + "php": ">=7.4" + }, + "require-dev": { + "ircmaxell/php-yacc": "^0.0.7", + "phpunit/phpunit": "^9.0" + }, + "default-branch": true, + "bin": [ + "bin/php-parse" + ], + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "5.0-dev" + } + }, + "autoload": { + "psr-4": { + "PhpParser\\": "lib/PhpParser" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Nikita Popov" + } + ], + "description": "A PHP parser written in PHP", + "keywords": [ + "parser", + "php" + ], + "support": { + "issues": "https://github.com/nikic/PHP-Parser/issues", + "source": "https://github.com/nikic/PHP-Parser/tree/master" + }, + "time": "2024-04-19T12:04:10+00:00" + }, + { + "name": "phar-io/manifest", + "version": "dev-master", + "source": { + "type": "git", + "url": "https://github.com/phar-io/manifest.git", + "reference": "54750ef60c58e43759730615a392c31c80e23176" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176", + "reference": "54750ef60c58e43759730615a392c31c80e23176", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-libxml": "*", + "ext-phar": "*", + "ext-xmlwriter": "*", + "phar-io/version": "^3.0.1", + "php": "^7.2 || ^8.0" + }, + "default-branch": true, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0.x-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Arne Blankerts", + "email": "arne@blankerts.de", + "role": "Developer" + }, + { + "name": "Sebastian Heuer", + "email": "sebastian@phpeople.de", + "role": "Developer" + }, + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "Developer" + } + ], + "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)", + "support": { + "issues": "https://github.com/phar-io/manifest/issues", + "source": "https://github.com/phar-io/manifest/tree/2.0.4" + }, + "funding": [ + { + "url": "https://github.com/theseer", + "type": "github" + } + ], + "time": "2024-03-03T12:33:53+00:00" + }, + { + "name": "phar-io/version", + "version": "3.2.1", + "source": { + "type": "git", + "url": "https://github.com/phar-io/version.git", + "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74", + "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74", + "shasum": "" + }, + "require": { + "php": "^7.2 || ^8.0" + }, + "type": "library", + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Arne Blankerts", + "email": "arne@blankerts.de", + "role": "Developer" + }, + { + "name": "Sebastian Heuer", + "email": "sebastian@phpeople.de", + "role": "Developer" + }, + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "Developer" + } + ], + "description": "Library for handling version information and constraints", + "support": { + "issues": "https://github.com/phar-io/version/issues", + "source": "https://github.com/phar-io/version/tree/3.2.1" + }, + "time": "2022-02-21T01:04:05+00:00" + }, + { + "name": "phpunit/php-code-coverage", + "version": "dev-main", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-code-coverage.git", + "reference": "cafa435d750d52e5e7c9c671341483d12d260c45" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/cafa435d750d52e5e7c9c671341483d12d260c45", + "reference": "cafa435d750d52e5e7c9c671341483d12d260c45", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-libxml": "*", + "ext-xmlwriter": "*", + "nikic/php-parser": "^5.0", + "php": ">=8.2", + "phpunit/php-file-iterator": "^5.0", + "phpunit/php-text-template": "^4.0", + "sebastian/code-unit-reverse-lookup": "^4.0", + "sebastian/complexity": "^4.0", + "sebastian/environment": "^7.0", + "sebastian/lines-of-code": "^3.0", + "sebastian/version": "^5.0", + "theseer/tokenizer": "^1.2.0" + }, + "require-dev": { + "phpunit/phpunit": "^11.0" + }, + "suggest": { + "ext-pcov": "PHP extension that provides line coverage", + "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage" + }, + "default-branch": true, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "11.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.", + "homepage": "https://github.com/sebastianbergmann/php-code-coverage", + "keywords": [ + "coverage", + "testing", + "xunit" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues", + "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy", + "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/main" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-03-22T13:49:53+00:00" + }, + { + "name": "phpunit/php-file-iterator", + "version": "dev-main", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-file-iterator.git", + "reference": "17bc6a26ceb3b67795b077c30f64eb34ac567940" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/17bc6a26ceb3b67795b077c30f64eb34ac567940", + "reference": "17bc6a26ceb3b67795b077c30f64eb34ac567940", + "shasum": "" + }, + "require": { + "php": ">=8.2" + }, + "require-dev": { + "phpunit/phpunit": "^11.0" + }, + "default-branch": true, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "5.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "FilterIterator implementation that filters files based on a list of suffixes.", + "homepage": "https://github.com/sebastianbergmann/php-file-iterator/", + "keywords": [ + "filesystem", + "iterator" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues", + "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy", + "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/main" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-03-22T13:50:31+00:00" + }, + { + "name": "phpunit/php-invoker", + "version": "dev-main", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-invoker.git", + "reference": "ae870f44c9f8c65db178de7dcb206117669d85c8" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/ae870f44c9f8c65db178de7dcb206117669d85c8", + "reference": "ae870f44c9f8c65db178de7dcb206117669d85c8", + "shasum": "" + }, + "require": { + "php": ">=8.2" + }, + "require-dev": { + "ext-pcntl": "*", + "phpunit/phpunit": "^11.0" + }, + "suggest": { + "ext-pcntl": "*" + }, + "default-branch": true, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "5.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Invoke callables with a timeout", + "homepage": "https://github.com/sebastianbergmann/php-invoker/", + "keywords": [ + "process" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/php-invoker/issues", + "security": "https://github.com/sebastianbergmann/php-invoker/security/policy", + "source": "https://github.com/sebastianbergmann/php-invoker/tree/main" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-03-22T13:51:25+00:00" + }, + { + "name": "phpunit/php-text-template", + "version": "dev-main", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-text-template.git", + "reference": "12a457719941dff82067d119e39767cb3d63f515" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/12a457719941dff82067d119e39767cb3d63f515", + "reference": "12a457719941dff82067d119e39767cb3d63f515", + "shasum": "" + }, + "require": { + "php": ">=8.2" + }, + "require-dev": { + "phpunit/phpunit": "^11.0" + }, + "default-branch": true, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "4.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Simple template engine.", + "homepage": "https://github.com/sebastianbergmann/php-text-template/", + "keywords": [ + "template" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/php-text-template/issues", + "security": "https://github.com/sebastianbergmann/php-text-template/security/policy", + "source": "https://github.com/sebastianbergmann/php-text-template/tree/main" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-03-22T13:51:58+00:00" + }, + { + "name": "phpunit/php-timer", + "version": "dev-main", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-timer.git", + "reference": "e8331ed6a4f21053ac7ba41f337ed5ef447c6378" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/e8331ed6a4f21053ac7ba41f337ed5ef447c6378", + "reference": "e8331ed6a4f21053ac7ba41f337ed5ef447c6378", + "shasum": "" + }, + "require": { + "php": ">=8.2" + }, + "require-dev": { + "phpunit/phpunit": "^11.0" + }, + "default-branch": true, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "7.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Utility class for timing", + "homepage": "https://github.com/sebastianbergmann/php-timer/", + "keywords": [ + "timer" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/php-timer/issues", + "security": "https://github.com/sebastianbergmann/php-timer/security/policy", + "source": "https://github.com/sebastianbergmann/php-timer/tree/main" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-03-22T13:52:26+00:00" + }, + { + "name": "phpunit/phpunit", + "version": "dev-main", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/phpunit.git", + "reference": "450ca7684a02adb4eed46c4e9f64ef57fc7ac57b" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/450ca7684a02adb4eed46c4e9f64ef57fc7ac57b", + "reference": "450ca7684a02adb4eed46c4e9f64ef57fc7ac57b", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-json": "*", + "ext-libxml": "*", + "ext-mbstring": "*", + "ext-xml": "*", + "ext-xmlwriter": "*", + "myclabs/deep-copy": "^1.10.1", + "phar-io/manifest": "^2.0.3", + "phar-io/version": "^3.0.2", + "php": ">=8.2", + "phpunit/php-code-coverage": "^11.0", + "phpunit/php-file-iterator": "^5.0", + "phpunit/php-invoker": "^5.0", + "phpunit/php-text-template": "^4.0", + "phpunit/php-timer": "^7.0", + "sebastian/cli-parser": "^3.0", + "sebastian/code-unit": "^3.0", + "sebastian/comparator": "^6.0", + "sebastian/diff": "^6.0", + "sebastian/environment": "^7.0", + "sebastian/exporter": "^6.0", + "sebastian/global-state": "^7.0", + "sebastian/object-enumerator": "^6.0", + "sebastian/type": "^5.0", + "sebastian/version": "^5.0" + }, + "suggest": { + "ext-soap": "To be able to generate mocks based on WSDL files" + }, + "default-branch": true, + "bin": [ + "phpunit" + ], + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "11.2-dev" + } + }, + "autoload": { + "files": [ + "src/Framework/Assert/Functions.php" + ], + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "The PHP Unit Testing framework.", + "homepage": "https://phpunit.de/", + "keywords": [ + "phpunit", + "testing", + "xunit" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/phpunit/issues", + "security": "https://github.com/sebastianbergmann/phpunit/security/policy", + "source": "https://github.com/sebastianbergmann/phpunit/tree/main" + }, + "funding": [ + { + "url": "https://phpunit.de/sponsors.html", + "type": "custom" + }, + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit", + "type": "tidelift" + } + ], + "time": "2024-05-14T14:32:54+00:00" + }, + { + "name": "sebastian/cli-parser", + "version": "dev-main", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/cli-parser.git", + "reference": "47c93ee55891788203dcb8efefa5abe46472266b" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/47c93ee55891788203dcb8efefa5abe46472266b", + "reference": "47c93ee55891788203dcb8efefa5abe46472266b", + "shasum": "" + }, + "require": { + "php": ">=8.2" + }, + "require-dev": { + "phpunit/phpunit": "^11.0" + }, + "default-branch": true, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "3.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Library for parsing CLI options", + "homepage": "https://github.com/sebastianbergmann/cli-parser", + "support": { + "issues": "https://github.com/sebastianbergmann/cli-parser/issues", + "security": "https://github.com/sebastianbergmann/cli-parser/security/policy", + "source": "https://github.com/sebastianbergmann/cli-parser/tree/main" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-04-04T08:53:05+00:00" + }, + { + "name": "sebastian/code-unit", + "version": "dev-main", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/code-unit.git", + "reference": "2a4919d2c7eb2e17379ea1e878fc8c176042ecf4" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/2a4919d2c7eb2e17379ea1e878fc8c176042ecf4", + "reference": "2a4919d2c7eb2e17379ea1e878fc8c176042ecf4", + "shasum": "" + }, + "require": { + "php": ">=8.2" + }, + "require-dev": { + "phpunit/phpunit": "^11.0" + }, + "default-branch": true, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "3.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Collection of value objects that represent the PHP code units", + "homepage": "https://github.com/sebastianbergmann/code-unit", + "support": { + "issues": "https://github.com/sebastianbergmann/code-unit/issues", + "security": "https://github.com/sebastianbergmann/code-unit/security/policy", + "source": "https://github.com/sebastianbergmann/code-unit/tree/main" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-04-03T07:55:50+00:00" + }, + { + "name": "sebastian/code-unit-reverse-lookup", + "version": "dev-main", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git", + "reference": "1a47d8a852f23d8320d5f401384260bea8b0b90b" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/1a47d8a852f23d8320d5f401384260bea8b0b90b", + "reference": "1a47d8a852f23d8320d5f401384260bea8b0b90b", + "shasum": "" + }, + "require": { + "php": ">=8.2" + }, + "require-dev": { + "phpunit/phpunit": "^11.0" + }, + "default-branch": true, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "4.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Looks up which function or method a line of code belongs to", + "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/", + "support": { + "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues", + "security": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/security/policy", + "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/main" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-03-22T13:41:37+00:00" + }, + { + "name": "sebastian/comparator", + "version": "dev-main", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/comparator.git", + "reference": "332f4a7ab51027ff603d1d8802e67dd76d055690" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/332f4a7ab51027ff603d1d8802e67dd76d055690", + "reference": "332f4a7ab51027ff603d1d8802e67dd76d055690", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-mbstring": "*", + "php": ">=8.2", + "sebastian/diff": "^6.0", + "sebastian/exporter": "^6.0" + }, + "require-dev": { + "phpunit/phpunit": "^11.0" + }, + "default-branch": true, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "6.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + }, + { + "name": "Jeff Welch", + "email": "whatthejeff@gmail.com" + }, + { + "name": "Volker Dusch", + "email": "github@wallbash.com" + }, + { + "name": "Bernhard Schussek", + "email": "bschussek@2bepublished.at" + } + ], + "description": "Provides the functionality to compare PHP values for equality", + "homepage": "https://github.com/sebastianbergmann/comparator", + "keywords": [ + "comparator", + "compare", + "equality" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/comparator/issues", + "security": "https://github.com/sebastianbergmann/comparator/security/policy", + "source": "https://github.com/sebastianbergmann/comparator/tree/main" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-03-22T13:42:26+00:00" + }, + { + "name": "sebastian/complexity", + "version": "dev-main", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/complexity.git", + "reference": "6046d9b01615fd134232aaca1324390f89f5532c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/6046d9b01615fd134232aaca1324390f89f5532c", + "reference": "6046d9b01615fd134232aaca1324390f89f5532c", + "shasum": "" + }, + "require": { + "nikic/php-parser": "^5.0", + "php": ">=8.2" + }, + "require-dev": { + "phpunit/phpunit": "^11.0" + }, + "default-branch": true, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "4.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Library for calculating the complexity of PHP code units", + "homepage": "https://github.com/sebastianbergmann/complexity", + "support": { + "issues": "https://github.com/sebastianbergmann/complexity/issues", + "security": "https://github.com/sebastianbergmann/complexity/security/policy", + "source": "https://github.com/sebastianbergmann/complexity/tree/main" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-03-22T13:42:56+00:00" + }, + { + "name": "sebastian/diff", + "version": "dev-main", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/diff.git", + "reference": "367ce918f5d43d068889655f9720e2baf3325d62" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/367ce918f5d43d068889655f9720e2baf3325d62", + "reference": "367ce918f5d43d068889655f9720e2baf3325d62", + "shasum": "" + }, + "require": { + "php": ">=8.2" + }, + "require-dev": { + "phpunit/phpunit": "^11.0", + "symfony/process": "^4.2 || ^5" + }, + "default-branch": true, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "6.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + }, + { + "name": "Kore Nordmann", + "email": "mail@kore-nordmann.de" + } + ], + "description": "Diff implementation", + "homepage": "https://github.com/sebastianbergmann/diff", + "keywords": [ + "diff", + "udiff", + "unidiff", + "unified diff" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/diff/issues", + "security": "https://github.com/sebastianbergmann/diff/security/policy", + "source": "https://github.com/sebastianbergmann/diff/tree/main" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-03-22T13:44:09+00:00" + }, + { + "name": "sebastian/environment", + "version": "dev-main", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/environment.git", + "reference": "ff8e9b0dc10315e13f3a7951eec6b227e66997e7" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/ff8e9b0dc10315e13f3a7951eec6b227e66997e7", + "reference": "ff8e9b0dc10315e13f3a7951eec6b227e66997e7", + "shasum": "" + }, + "require": { + "php": ">=8.2" + }, + "require-dev": { + "phpunit/phpunit": "^11.0" + }, + "suggest": { + "ext-posix": "*" + }, + "default-branch": true, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "7.2-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Provides functionality to handle HHVM/PHP environments", + "homepage": "https://github.com/sebastianbergmann/environment", + "keywords": [ + "Xdebug", + "environment", + "hhvm" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/environment/issues", + "security": "https://github.com/sebastianbergmann/environment/security/policy", + "source": "https://github.com/sebastianbergmann/environment/tree/main" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-03-23T13:07:37+00:00" + }, + { + "name": "sebastian/exporter", + "version": "dev-main", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/exporter.git", + "reference": "b9c7cad904c5c2596beb29ceb8fb794be3edc539" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/b9c7cad904c5c2596beb29ceb8fb794be3edc539", + "reference": "b9c7cad904c5c2596beb29ceb8fb794be3edc539", + "shasum": "" + }, + "require": { + "ext-mbstring": "*", + "php": ">=8.2", + "sebastian/recursion-context": "^6.0" + }, + "require-dev": { + "phpunit/phpunit": "^11.0" + }, + "default-branch": true, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "6.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + }, + { + "name": "Jeff Welch", + "email": "whatthejeff@gmail.com" + }, + { + "name": "Volker Dusch", + "email": "github@wallbash.com" + }, + { + "name": "Adam Harvey", + "email": "aharvey@php.net" + }, + { + "name": "Bernhard Schussek", + "email": "bschussek@gmail.com" + } + ], + "description": "Provides the functionality to export PHP variables for visualization", + "homepage": "https://www.github.com/sebastianbergmann/exporter", + "keywords": [ + "export", + "exporter" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/exporter/issues", + "security": "https://github.com/sebastianbergmann/exporter/security/policy", + "source": "https://github.com/sebastianbergmann/exporter/tree/main" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-04-04T06:31:26+00:00" + }, + { + "name": "sebastian/global-state", + "version": "dev-main", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/global-state.git", + "reference": "8e38c9f37278523a7484c1f11830a4e323d3b179" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/8e38c9f37278523a7484c1f11830a4e323d3b179", + "reference": "8e38c9f37278523a7484c1f11830a4e323d3b179", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "sebastian/object-reflector": "^4.0", + "sebastian/recursion-context": "^6.0" + }, + "require-dev": { + "ext-dom": "*", + "phpunit/phpunit": "^11.0" + }, + "default-branch": true, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "7.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Snapshotting of global state", + "homepage": "https://www.github.com/sebastianbergmann/global-state", + "keywords": [ + "global state" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/global-state/issues", + "security": "https://github.com/sebastianbergmann/global-state/security/policy", + "source": "https://github.com/sebastianbergmann/global-state/tree/main" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-03-22T13:46:11+00:00" + }, + { + "name": "sebastian/lines-of-code", + "version": "dev-main", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/lines-of-code.git", + "reference": "b60275143e48815ee6a3673f0227676774bca056" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/b60275143e48815ee6a3673f0227676774bca056", + "reference": "b60275143e48815ee6a3673f0227676774bca056", + "shasum": "" + }, + "require": { + "nikic/php-parser": "^5.0", + "php": ">=8.2" + }, + "require-dev": { + "phpunit/phpunit": "^11.0" + }, + "default-branch": true, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "3.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Library for counting the lines of code in PHP source code", + "homepage": "https://github.com/sebastianbergmann/lines-of-code", + "support": { + "issues": "https://github.com/sebastianbergmann/lines-of-code/issues", + "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy", + "source": "https://github.com/sebastianbergmann/lines-of-code/tree/main" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-03-22T13:46:58+00:00" + }, + { + "name": "sebastian/object-enumerator", + "version": "dev-main", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/object-enumerator.git", + "reference": "ab4ee4ea2987e495c755b5ace9aaa913124e1df7" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/ab4ee4ea2987e495c755b5ace9aaa913124e1df7", + "reference": "ab4ee4ea2987e495c755b5ace9aaa913124e1df7", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "sebastian/object-reflector": "^4.0", + "sebastian/recursion-context": "^6.0" + }, + "require-dev": { + "phpunit/phpunit": "^11.0" + }, + "default-branch": true, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "6.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Traverses array structures and object graphs to enumerate all referenced objects", + "homepage": "https://github.com/sebastianbergmann/object-enumerator/", + "support": { + "issues": "https://github.com/sebastianbergmann/object-enumerator/issues", + "security": "https://github.com/sebastianbergmann/object-enumerator/security/policy", + "source": "https://github.com/sebastianbergmann/object-enumerator/tree/main" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-03-22T13:47:32+00:00" + }, + { + "name": "sebastian/object-reflector", + "version": "dev-main", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/object-reflector.git", + "reference": "ab3861c3fc853c753d9822e139e0d8be4fe364e5" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/ab3861c3fc853c753d9822e139e0d8be4fe364e5", + "reference": "ab3861c3fc853c753d9822e139e0d8be4fe364e5", + "shasum": "" + }, + "require": { + "php": ">=8.2" + }, + "require-dev": { + "phpunit/phpunit": "^11.0" + }, + "default-branch": true, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "4.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Allows reflection of object attributes, including inherited and non-public ones", + "homepage": "https://github.com/sebastianbergmann/object-reflector/", + "support": { + "issues": "https://github.com/sebastianbergmann/object-reflector/issues", + "security": "https://github.com/sebastianbergmann/object-reflector/security/policy", + "source": "https://github.com/sebastianbergmann/object-reflector/tree/main" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-03-22T13:48:42+00:00" + }, + { + "name": "sebastian/recursion-context", + "version": "dev-main", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/recursion-context.git", + "reference": "396fdbbdb95420649b3d0c4766b992da686c22fc" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/396fdbbdb95420649b3d0c4766b992da686c22fc", + "reference": "396fdbbdb95420649b3d0c4766b992da686c22fc", + "shasum": "" + }, + "require": { + "php": ">=8.2" + }, + "require-dev": { + "phpunit/phpunit": "^11.0" + }, + "default-branch": true, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "6.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + }, + { + "name": "Jeff Welch", + "email": "whatthejeff@gmail.com" + }, + { + "name": "Adam Harvey", + "email": "aharvey@php.net" + } + ], + "description": "Provides functionality to recursively process PHP variables", + "homepage": "https://github.com/sebastianbergmann/recursion-context", + "support": { + "issues": "https://github.com/sebastianbergmann/recursion-context/issues", + "security": "https://github.com/sebastianbergmann/recursion-context/security/policy", + "source": "https://github.com/sebastianbergmann/recursion-context/tree/main" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-03-29T09:41:38+00:00" + }, + { + "name": "sebastian/type", + "version": "dev-main", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/type.git", + "reference": "fa5a3eb73ada9ec9c2014399287147e1b4a18db7" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/fa5a3eb73ada9ec9c2014399287147e1b4a18db7", + "reference": "fa5a3eb73ada9ec9c2014399287147e1b4a18db7", + "shasum": "" + }, + "require": { + "php": ">=8.2" + }, + "require-dev": { + "phpunit/phpunit": "^11.0" + }, + "default-branch": true, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "5.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Collection of value objects that represent the types of the PHP type system", + "homepage": "https://github.com/sebastianbergmann/type", + "support": { + "issues": "https://github.com/sebastianbergmann/type/issues", + "security": "https://github.com/sebastianbergmann/type/security/policy", + "source": "https://github.com/sebastianbergmann/type/tree/main" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-03-22T13:53:47+00:00" + }, + { + "name": "sebastian/version", + "version": "dev-main", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/version.git", + "reference": "975de64e70a76a46e743bac6e3210c6953068323" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/975de64e70a76a46e743bac6e3210c6953068323", + "reference": "975de64e70a76a46e743bac6e3210c6953068323", + "shasum": "" + }, + "require": { + "php": ">=8.2" + }, + "default-branch": true, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "5.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Library that helps with managing the version number of Git-hosted PHP projects", + "homepage": "https://github.com/sebastianbergmann/version", + "support": { + "issues": "https://github.com/sebastianbergmann/version/issues", + "security": "https://github.com/sebastianbergmann/version/security/policy", + "source": "https://github.com/sebastianbergmann/version/tree/main" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-03-22T13:54:56+00:00" + }, + { + "name": "theseer/tokenizer", + "version": "1.2.3", + "source": { + "type": "git", + "url": "https://github.com/theseer/tokenizer.git", + "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2", + "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-tokenizer": "*", + "ext-xmlwriter": "*", + "php": "^7.2 || ^8.0" + }, + "type": "library", + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Arne Blankerts", + "email": "arne@blankerts.de", + "role": "Developer" + } + ], + "description": "A small library for converting tokenized PHP source code into XML and potentially other formats", + "support": { + "issues": "https://github.com/theseer/tokenizer/issues", + "source": "https://github.com/theseer/tokenizer/tree/1.2.3" + }, + "funding": [ + { + "url": "https://github.com/theseer", + "type": "github" + } + ], + "time": "2024-03-03T12:36:25+00:00" + }, { "name": "yosymfony/parser-utils", - "version": "v2.0.0", + "version": "dev-master", "source": { "type": "git", "url": "https://github.com/yosymfony/parser-utils.git", @@ -26,6 +1682,7 @@ "require-dev": { "phpunit/phpunit": "^6" }, + "default-branch": true, "type": "library", "extra": { "branch-alias": { @@ -56,22 +1713,22 @@ ], "support": { "issues": "https://github.com/yosymfony/parser-utils/issues", - "source": "https://github.com/yosymfony/parser-utils/tree/master" + "source": "https://github.com/yosymfony/parser-utils/tree/v2.0.0" }, "time": "2018-06-29T15:31:11+00:00" }, { "name": "yosymfony/toml", - "version": "v1.0.4", + "version": "dev-master", "source": { "type": "git", "url": "https://github.com/yosymfony/toml.git", - "reference": "bdab92ad920d0e36810a3a3e4a998d23f3498f8e" + "reference": "007aad4582663ab48bd8fbe1076b1d261e1677be" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/yosymfony/toml/zipball/bdab92ad920d0e36810a3a3e4a998d23f3498f8e", - "reference": "bdab92ad920d0e36810a3a3e4a998d23f3498f8e", + "url": "https://api.github.com/repos/yosymfony/toml/zipball/007aad4582663ab48bd8fbe1076b1d261e1677be", + "reference": "007aad4582663ab48bd8fbe1076b1d261e1677be", "shasum": "" }, "require": { @@ -81,6 +1738,7 @@ "require-dev": { "phpunit/phpunit": "^7.1" }, + "default-branch": true, "type": "library", "extra": { "branch-alias": { @@ -114,17 +1772,19 @@ "issues": "https://github.com/yosymfony/toml/issues", "source": "https://github.com/yosymfony/toml/tree/master" }, - "time": "2018-08-08T15:08:14+00:00" + "time": "2020-08-08T20:48:53+00:00" } ], "packages-dev": [], "aliases": [], - "minimum-stability": "stable", + "minimum-stability": "dev", "stability-flags": [], "prefer-stable": false, "prefer-lowest": false, "platform": { - "php": ">=8.2.0" + "php": ">=8.2.0", + "ext-mysqli": "*", + "ext-curl": "*" }, "platform-dev": [], "plugin-api-version": "2.6.0" diff --git a/composer.phar b/composer.phar index 9b28eb4b6535bff6bd912935d34e783c65d3dbaf..53f8b81265150bcfe95e433a7310d2e8652e88dc 100644 GIT binary patch delta 11446 zcmb_CXINBc))xz9U|^^-G`SQRdhbX_rAt#$L>OQY!Y~8FpkhOfi4_%I^%@&kBgQT( z_L4+XOpGSGZi<_YU$Vx;*pf|FqcPvP=Zvh$=6jy+$HwP<&b;?M@9FJca--*{$!7yc zO%4tlZpF66)IIg#xPukaD0X9vGy86s1&bK&fd{2SInLVa)V;xjj^Q3d;Rf3}JOkm^ z!!r?vm=bI=4aNPdrpX9znWiEPG^4%7ED85}&Bh{wSPza<-<$i8-H3N)Us#zl-rOD! zm>b9WnRJ;UXYruQoX3MICyw)YG|Irz>|EJuGgG$D+!;x}W1fakYLO`0*35CDVj}GQ zYS%9IAc)AfTeu<8dJB^4GmA8&+F!wO@tYn!V25mpYPQ4`4?eWxxX(tOX&w}?OF{zL zTXEdD@3w{w9$YmZoVVt<=&HBJvLdM`v$b?Ye*TuEcY_i3SrY&6EJ^4vE0RMG>;kdtV$lAbc zL!DW#ojto{FGqwS4h0BH93~>%=TME%&aoC@yW=E;e{r0EFvN-W%bX@4;U2KY_1K#` zkZ_p7fjP^a@L&sYd}wm{1{xU-taUm~NOOI2FL+H%yy@~RBzRt)gV0)$iT55BaNPgA z{e3ukRg`p@!UhpGDaa3BDCk14Gi9p5IUg@3xpG|N1%=6=ijSPht3N`dZL(^&XI*}z zdzK3YlFB6)DIahliceg~)akC{@cA0oQiQi%vyekDaCqk%6NX7R-`$ecxRK8~+=#$? zZluE=C2A89`BbX#~k?>p@l-?@@%5`#k9RJ&&=tkLPLM!Bf&~H03y#v3BDJ z2|nP7poM2TUMTR)kXa0)02Sfa-MU9?t7kSI-tifHE2nXG1tUrz-Ni159eQ{|Au z&fP&0ruDOz-SDR~5kB?L&w#)qv)u&N`y+)FVo?;4hxn7Oyg!`>fW5~|{_2xw#Pa;D zS&zR3GJVaT@_!!SaPP1A3+oN^W_$qE%)|gnrk4XK8r}_{sw@qpeNiAqfe=VJ^Lb!C z5)BE8MOYs+3gN3k39`>(NqQ01@lVwd?NmO)gDG7)f=kd=^UOJJ*VlWq*g;b$qfzGU z*I=@jQ%E6FYcRr7Arw94p?P?*1WLoN-=*AzObuYmLMexKh0>)*p~Piu7zJ=w*cc@C zX&6c25>BdAh12uCa8mJ3IOSkM1gW?nA_niBFz!tv3z7LEh|pX4Pu7YyMyYM0%-Bnj zc8I(ok}_Q^Uh*;NJE&=cYBo_kB1A+LAQhpI<9hr%9y60{qOvcF0_jXtJR<%aMbViO zO|JbKT1#5Ox=d&SE=(3-#`Z^3+3thtC(^F=VN@Sh}z%mP9xgOYJTgIILcH&YNAycV<3u6fr4r2`J~BI0`G6 zFSrffHHlaxo8!&dy*N+Q^dKCJdGg5))Kol3iYHAA;>jT^1vFmm0tevFp7pClDNI&NZXDK?*%VAc_v&*h|2RBkIMSECMyU}>?=?0%9Z zD^4ckw+KAvo3ol=afr>0P%^`%g`{UwE3#kf>@z9E&AwSp|25*qLnbrA{6(x~V7 zr&0Lo(n$8>X>?&CbnjcXwtgscVTPk{a_SHZlz9h?uA#XcGM7XuQ}xhT>Za(RtbTX#&QNsBrKYDeD+xi&7i{6-t*addO6nO7_MW z%C(QjXjP2-6b^udAmvs>A@f)Q*(Hg(

_oh^03z|L zokf|f6T(8g<(xw@hvY<{6g4@~2sawxM>*kmaiaytrH>f86x*M8F(g+m`v4{yafTOR zxJykN46{TvB-et?$(13cRk@_l2f3+8Ne}j%?d|)J%oP}P%pr0P9rLq8}Re}W7i!5-(?B0rn_NWAq6G`yb2*4vrMxDiZ~ zufT^H5H+<5tM!AV_UBXdzLlSV2w#9}RuwDC28FnrZ)RJf(;L)!G0iT3jAF=U6i|Da zTM#K5Lvvr92p7lZEC$1q4IdWJWRNf}7HK~L+E@Ou_8g{;sNlwNl#?gMk@4@1BcBHr z(!Q!Nj+|lKUopbrMFB`q0tBzV8T>Z(sX|k0mpq-SmIVDdgUfM1ApoQLt>{Rl*hFzLQzGEV$Sk>Fa>L>Fc*wvnj=)D9FlUs(c?9p{yhkpBI!+ zW$Y@U+IzVq!BGs1i;%fDETd2D0JDq#d9xeEZY;jk8p($#IBvPMVK=Lq?8fewN?3cT zB_51`Yhx|UDp~kyd$xM21s)zPrAWP0N_EC|Jk`pw@l?omkDq|Dm`tF3(FAJdyo}>Q zMEI}rcGMcKy=cl*dev7Hr+Ow%;et5XFjOy6+GAf}VljwEn9#~+M=~w5NYP=f@ zEgQ}@O`_C)eG(1Nwv$PAE&;tr)vAAdN()h;U+5#Y7YXFxcrScBuSAn0>pKFFDN)fqdeD zw1TF%z>4vRZ~)@r@M!tZMg&*(Mg?Wh^$HR!d@AMmO(=^=fEc{G(e zP+Dd3pts*DDQ;q2tL)j9O3Gd*NG7kQkG>U!6uw>LX3fm1ToBzF%qZ!a$+MOYdzM;7 zfvK;ei69XCaqY|0Qg(iUJ-bpBEHds^QC-hbQA7F=-aHPOyl+7Lbt-#yNkw&Lb`Zy{ zyKD6mO8u*fq*hi>L+QJ!n-H4R)F7Nzqd{>_L1_QV7j0r;)mcngOZG^ut-`}Epex_* zu3W?JtFzcYYpLJZs2h;NY$Nq)F-^%~qis;@*?-ay3PYS7_6{sj`d&j_6xrz5jAh{dG(ug%z8%@}s0ktU)U@US5G z`*PM?Gm7;#NLZ=H9jO>J%?Q8N5Z9un8MwdH)JR;kFCg5dtwku+(fehsZZhuA>&R%z zW|Br|uEOU(H`D$47J}DWNZTC!6g=#5f$HCoHpekg;g`DrZfNrS>)X1Na0eu9s6-6byD+o%Cd@fsw)TDY4F!Wwk?=h zc?c6|#4LK1E1g9n<<42ue*ZCxhOCg;)RdZMQ&yaqO;-DU_9QfM!5q5RGlypG+jD53 z^n*B0{%rbO$Qr10b7?9_2EBf5>FMcS@4ybsbwL8}&80M#&LfK!&!Zx?dL9wHK92+# z(Ln;#cjV%|qaD=zzV9G&#LcJYFV8Q+^H1l~4D1MLVm?>c$&ydOcfc1dS;+#*EA0Xz zcx*v78r=r$*b+VM1*Y0fh>;7GNU36B8Ny==%Mfuq*w6J+<�g6$>p{{)=viqa8AW6}#KkA^<-X4$`6Ghs za*C#1fM9>=uURP6mgRK&{Br8po8a(fiR39eztEfAT_$1qD=3YY!@+jTeWh(E#Ql|aEWeZZGA=r(8jyXlSMoH#{ZQvV3?1n;$Q_+vMf3u{IdOU0)oma_B4T1uwC zb!4mA>xi&7ymnZu@Qj3_>dle`OZIdf$^8V9XzbB{?q-z`X32sxa+@rWWe*6%?Oy^7 zF5&CRB6HT0G;gn`D%%CQJ>_rrs?m=ruaF<@Aj6h^`>%cs!<1L71!bR)lPS{McZP`rf zezTbZAX>?B?V5l6lO^wTWnc72Sk)G5l&xh8T|BpiJ`sKjO1!%<@gQ1z^A#mD@>;J=^L2qwQqLoE_xlo*k4ok9Nc(|LC2gFcFVHMRRMli0WSN z%0gc?V?8^q@O=MHifEHvB;UkcRATq@})8 zA<#*79qTKDY;tAiUQ^)LiwGL0*{0XX1@*AcJ==Z^=2BPIyI0Qmy)sn)Q+Unklx}ol zRTt<$yVnwV&)G|MytJ3>=(dltKxB8x&7%c zAMIBoR2^tRj<4L}INchxKh#M#mbzczP_5G$S`B(tv-lox8_XoW%lIB7^S2))cb`5; z6N2d>DucC$C@jt$qE7cEe8~B!y>cyUI+Vg*IBbh7=N+ax@%CY=4}bOKxG$w4SIK@y zerLb5i=zE37~gNomK>2Hh4n|M3ztI;&sQA2ZZxupBu9jVesa<5{#4wb>8C$2*n`3I zw{zL7Y8O%!s!|o+W^Wm_EB}+x?|-7;u{b&vZ@+Mq-epRGUDvf4!ZUW_ZBs#)sgRoe z4E7fdWHCUDa|VcU=KvYxn*nk|?lJm4^-o~A53Rih|DL)EZ|(&hLJ2R{L|v0VsLW2@3ahCn((41J!M= zA19y&B31j7)C59KQVnlDN!51GNt&G2g27JfJKsUy$WBpyM4uuDcATQ5diNAH1lehd zhDoRC%h8%?9QRFnNhTA0c=@CSd-JqCiuLJf3ZvjNWSymFD4gCuLwdQLrK-|=mc)PO zEcyEgh%fw9YlZGhJ?qR==g8l)&yj}?147fIJ%5IHgETm6$1Ki!BgfG5G+6~i!QaGl zq>rIGx^};5#-f$Z9Qf$aY61!_Za7b(bQUmWQx3Kb2+ZlwH={j*OeP(wN6#|W`L0LqIOFAiM1 zXrlja81L)L3&A>DMX*Y*SG89*v{q^wS`B_aHEnvmT5Fh~(zL1lMXcYP3wdu1aTD^6 z3>hKh28^^2@(vC$clVhtBJ+X#Z!RZF=8FG>bEk$Vgu*jJoCS}gLre#@9~qLmY-pQa zv-oDx(1Dvt!zMLa1@X!@ZG*PepweiBE1pB07MJ!7gEf4hw9j;ZkV%X%^qOgbG&(pe zijRm)2#ZVzj}{L6%~U?ncFpwh6oI!NCLhp6nmv#Y@skKuxn{1V5|G@pu0f-&RL=yx zTK$xv`ZjH7NR3WwP&H`PpyPC<{~usYSLy!{)89W)IFxJVIMAJImga6E5mbdkM+%om zS^8(GLH-(Dty<}yDDly&>okRWU2|}9tD3Cn=K~1Yq@7xykTANqcwBL1X>nRXN#VHS z(#p|g8KVnJv&R)Ie!t!fmN_hof%oerVGY9D+sxdA<^(fyk0y0%t7@8>PvX72g7^ll z0jv!?VILJ17Q_pyj(Hafr;bXU24o*fa?65zRBZ;G20!k#rmO38dJ(m?SyTD!d1YOj zw#Lw))3*8zOboD8d)P>P8nwC^+U#2Je?wh^aJAgdq2n34TK|lUs+IR?RJZd<$sj_t zKR^3-_W-lp$57wU8k{^$ZO8zhR;y|npHWroA;zlxD?plZC6G}f9rz&{(TGdWYN{&| zB^`4mqU@@gdfxBCT48)r zr_!{l;qhEv4L^Xs;PHu*Vx*{cqU1M*86-kykb(mzvn{7O2=NC!90l1P`{5mb=#c~- z+I@p|nq;=oh?TTQcZovk)rK~`mRHtk6OnL0uyjk81ztG2to!othCa>CnBE#`D<1mKFL7pP|%^6m-}c{O=^nI za0^N9Jx~rw}D%)O2?c0Hz*0C`lL#WARda9LEokxsOghVx3CT3 zVbIj@J~LFU#8t4_>7l6hsZ|+N&nL{3Rzoc&4L@fN|DUJNiH*A9^(5X8qsX5wKu!&E z;gf{G!%}A<Kf;w2WO3oaLk9;zm+uJw>p^z+_ypsA^Apk1kJK~3m7{EP;ThObuhZLR8B zu{9X#)w~$|Jk(wB_aL1henveE0ucD>T0pIC=M4~xPy$1EAd9qsoK|P}EsN(U@Eu6_ z8Atd-TEldpRHxT9A*&2sQ?ssBt>>Ge1B%@n(f!mRz@myWHdK66#m~^SX+Q*ZjSd8@ z0uh7pImAop^CA<0CRMwrAShl-nuE@UdS0hTsB1GIbEHzmH^W5IFf)i(X=_nG(I6^= zXdP0qsjbxjO6r?bFaR2#shXQ%gwZ#s3~Eh#i0~lR-C6j&Np2zW5+$2itFCSn9{eD; z7gnE=I}U7al&={gT+Vkh8yY;zAf##K-opGYd8ofmEiwZeK2zUVV)@BX6hSelg|&Q% zs!lCj{n*V#_*;`)BHZ~oGkI=l;ZP-ARR$jQpEGjNK zCOSTPV7ZlIRp#K%vq+I^@@yw`PBC#8Ru?Na4L*r1QM^33Iai{X^=vbcR;oBYcyqvH zg5npaXJ^9jCPmTUrlLua^=z|vZ<7L+Gb|Tat^<3U+#Wxc$0&m&%IPpSK&;{@ql|z& zj1eB_+#Qv5s_NSK_~_WU$m*EL$he63y4t9SxG;4@Y(zv{RCQ#0b&N_K8z$U%(LF(! z+~m#=l)m8JKIFegbTJTxH3F6gEFP98EH7BzuzX;RgyjoM3CjqcR=coTK*~D1p delta 9182 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