diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index b7c3a752..ad86ccee 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -1,140 +1,113 @@ # https://docs.github.com/en/actions -name: "CI" +name: CI on: - pull_request: ~ - push: - branches: - - "master" - -env: - COMPOSER_ROOT_VERSION: 1.99 + pull_request: ~ + push: + branches: + - master jobs: - coding-standards: - name: "Coding Standards" - - runs-on: "ubuntu-latest" - - steps: - - name: "Checkout" - uses: "actions/checkout@v3" - - - name: "Install PHP" - uses: "shivammathur/setup-php@2.9.0" - with: - coverage: "none" - extensions: "mbstring" - php-version: "7.4" - tools: "composer-normalize" - - - name: "Validate composer.json" - run: "composer validate --strict" - - - name: "Normalize composer.json" - run: "composer-normalize --dry-run" - - - name: "PHP-CS-Fixer" - uses: "docker://oskarstark/php-cs-fixer-ga:2.18.0" - with: - args: "--dry-run --diff-format udiff" - - static-code-analysis: - name: "Static Code Analysis" - - runs-on: "ubuntu-latest" - - steps: - - name: "Checkout" - uses: "actions/checkout@v3" - - - name: "Install PHP" - uses: "shivammathur/setup-php@2.9.0" - with: - coverage: "none" - extensions: "mbstring" - php-version: "7.4" - - - name: "Install dependencies with composer" - run: "composer update --no-interaction --no-progress && composer i --working-dir=ci" - - - name: "Run vimeo/psalm" - run: "ci/vendor/bin/psalm --threads=4" - - roave-bc-check: - name: "Roave BC Check" - - runs-on: "ubuntu-latest" - - steps: - - name: "Checkout code" - uses: "actions/checkout@v3" - - - name: "Install PHP" - uses: "shivammathur/setup-php@2.9.0" - - - name: "Install Roave BC check" - run: "composer require --dev roave/backward-compatibility-check" - - - name: "Run Roave BC check" - run: "vendor/bin/roave-backward-compatibility-check" - - tests: - name: "Tests" - - runs-on: "ubuntu-latest" - - strategy: - matrix: - php-version: - - "7.2" - - "7.3" - - "7.4" - - "8.0" - - "8.1" - - "8.2" - - steps: - - name: "Checkout" - uses: "actions/checkout@v3" - - - name: "Install PHP" - uses: "shivammathur/setup-php@2.9.0" - with: - coverage: "none" - extensions: "mbstring" - php-version: "${{ matrix.php-version }}" - - - name: "Install dependencies with composer" - run: "composer update --no-interaction --no-progress" - - - name: "Run unit tests" - run: "vendor/bin/phpunit" - - windows-tests: - name: "Windows tests" - - runs-on: "windows-latest" - - strategy: - matrix: - php-version: - - "7.4" - - steps: - - name: "Checkout" - uses: "actions/checkout@v3" - - - name: "Install PHP" - uses: "shivammathur/setup-php@2.9.0" - with: - coverage: "none" - extensions: "mbstring" - php-version: "${{ matrix.php-version }}" - - - name: "Install dependencies with composer" - run: "composer update --no-interaction --no-progress" - - name: "Run unit tests" - run: "vendor/bin/phpunit tests/AssertTest.php" + static-code-analysis: + name: Static Code Analysis + + runs-on: ubuntu-latest + + steps: + - name: Checkout + uses: actions/checkout@v4 + with: + fetch-depth: 0 + + - name: Install PHP + uses: shivammathur/setup-php@v2 + with: + php-version: '8.3' + coverage: none + extensions: mbstring + + - name: Install dependencies + run: >- + composer install + + - name: Install tools + run: >- + composer run install-tools + + - name: Run code style check + run: >- + composer run cs-check + + - name: Run backwards compatibility check + run: >- + composer run bc-check + + - name: Run static analysis + run: >- + composer run static-analysis + + tests: + name: Tests + + runs-on: ubuntu-latest + + strategy: + matrix: + php-version: + - "7.2" + - "7.3" + - "7.4" + - "8.0" + - "8.1" + - "8.2" + - "8.3" + - "8.4" + + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Install PHP + uses: shivammathur/setup-php@v2 + with: + php-version: "${{ matrix.php-version }}" + coverage: none + extensions: mbstring + tools: phpunit:8 + + - name: Install dependencies + run: composer install + + - name: Run unit tests + run: phpunit + + windows-tests: + name: Windows tests + + runs-on: windows-latest + + strategy: + matrix: + php-version: + - "7.4" + - "8.3" + + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Install PHP + uses: shivammathur/setup-php@v2 + with: + php-version: "${{ matrix.php-version }}" + coverage: none + extensions: mbstring + tools: phpunit:8 + + - name: Install dependencies + run: composer install + + - name: Run unit tests + run: phpunit diff --git a/.gitignore b/.gitignore index c2a741aa..6d569d68 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,4 @@ vendor/ /composer.lock +.php-cs-fixer.cache .phpunit.result.cache -.php_cs.cache diff --git a/.php_cs b/.php-cs-fixer.php similarity index 75% rename from .php_cs rename to .php-cs-fixer.php index f7afd3ed..f60f7769 100644 --- a/.php_cs +++ b/.php-cs-fixer.php @@ -5,16 +5,19 @@ ->in(__DIR__.'/tests') ; -return PhpCsFixer\Config::create() +return (new PhpCsFixer\Config()) ->setRiskyAllowed(true) ->setRules([ '@PSR2' => true, '@Symfony' => true, 'ordered_imports' => true, 'array_syntax' => ['syntax' => 'long'], + 'fully_qualified_strict_types' => false, + 'global_namespace_import' => true, 'no_superfluous_phpdoc_tags' => false, 'phpdoc_annotation_without_dot' => false, 'phpdoc_types_order' => false, + 'phpdoc_separation' => ['skip_unlisted_annotations' => true], 'phpdoc_summary' => false, 'phpdoc_to_comment' => false, 'phpdoc_align' => false, diff --git a/bin/src/MixinGenerator.php b/bin/src/MixinGenerator.php index 35de8e94..5fdd475b 100644 --- a/bin/src/MixinGenerator.php +++ b/bin/src/MixinGenerator.php @@ -13,6 +13,7 @@ use RuntimeException; use Throwable; use Webmozart\Assert\Assert; +use function rtrim; final class MixinGenerator { @@ -277,7 +278,7 @@ private function assertion(ReflectionMethod $method, string $methodNameTemplate, $phpdocLines[] = trim($comment); } - if ('deprecated' === $key) { + if ('deprecated' === $key || 'psalm-pure' === $key) { $phpdocLines[] = ''; } } @@ -428,14 +429,24 @@ private function phpdoc(array $lines, int $indent): string $indentation = str_repeat(' ', $indent); $phpdoc = $indentation.'/**'; + $throws = ''; foreach ($lines as $line) { - $phpdoc .= "\n".$indentation.rtrim(' * '.$line); + if (strpos($line, '@throws') === 0) { + $throws .= "\n".$indentation.rtrim(' * '.$line); + } else { + $phpdoc .= "\n".$indentation.rtrim(' * '.$line); + } + } + + $phpdoc .= "\n".$indentation.' * @return void'; + + if (strlen($throws) > 0) { + $phpdoc .= "\n".$indentation.' *'; + $phpdoc .= $throws; } - $phpdoc .= "\n".$indentation.' *' - . "\n".$indentation.' * @return void' - . "\n".$indentation.' */'; + $phpdoc .= "\n".$indentation.' */'; return $phpdoc; } diff --git a/ci/composer.json b/ci/composer.json deleted file mode 100644 index 62224482..00000000 --- a/ci/composer.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "require": { - "vimeo/psalm": "4.6.1" - } -} diff --git a/composer.json b/composer.json index 579896e6..c86de744 100644 --- a/composer.json +++ b/composer.json @@ -17,13 +17,8 @@ "php": "^7.2 || ^8.0", "ext-ctype": "*" }, - "require-dev": { - "ergebnis/composer-normalize": "^2.44", - "phpunit/phpunit": "^8.5.13" - }, - "conflict": { - "phpstan/phpstan": "<0.12.20", - "vimeo/psalm": "<4.6.1 || 4.6.2" + "suggest": { + "ext-simplexml": "" }, "autoload": { "psr-4": { @@ -36,14 +31,22 @@ "Webmozart\\Assert\\Tests\\": "tests/" } }, - "config": { - "allow-plugins": { - "ergebnis/composer-normalize": true - } - }, "extra": { "branch-alias": { "dev-master": "1.10-dev" } + }, + "scripts": { + "install-tools": [ + "composer --working-dir=tools/php-cs-fixer install", + "composer --working-dir=tools/phpunit install", + "composer --working-dir=tools/psalm install", + "composer --working-dir=tools/roave-bc-check install" + ], + "bc-check": "./tools/roave-bc-check/vendor/bin/roave-backward-compatibility-check", + "cs-check" : "./tools/php-cs-fixer/vendor/bin/php-cs-fixer check", + "cs-fix": "./tools/php-cs-fixer/vendor/bin/php-cs-fixer fix", + "static-analysis": "./tools/psalm/vendor/bin/psalm --threads=4 --root=$(pwd)", + "test": "./tools/phpunit/vendor/bin/phpunit" } } diff --git a/psalm.xml b/psalm.xml index 37a9ccea..c5c24f84 100644 --- a/psalm.xml +++ b/psalm.xml @@ -1,17 +1,13 @@ - + - - - - diff --git a/src/Assert.php b/src/Assert.php index db1f3a51..70a29c40 100644 --- a/src/Assert.php +++ b/src/Assert.php @@ -36,6 +36,7 @@ class Assert /** * @psalm-pure + * * @psalm-assert string $value * * @param mixed $value @@ -55,6 +56,7 @@ public static function string($value, $message = '') /** * @psalm-pure + * * @psalm-assert non-empty-string $value * * @param mixed $value @@ -70,6 +72,7 @@ public static function stringNotEmpty($value, $message = '') /** * @psalm-pure + * * @psalm-assert int $value * * @param mixed $value @@ -89,6 +92,7 @@ public static function integer($value, $message = '') /** * @psalm-pure + * * @psalm-assert numeric $value * * @param mixed $value @@ -108,6 +112,7 @@ public static function integerish($value, $message = '') /** * @psalm-pure + * * @psalm-assert positive-int $value * * @param mixed $value @@ -127,6 +132,7 @@ public static function positiveInteger($value, $message = '') /** * @psalm-pure + * * @psalm-assert float $value * * @param mixed $value @@ -146,6 +152,7 @@ public static function float($value, $message = '') /** * @psalm-pure + * * @psalm-assert numeric $value * * @param mixed $value @@ -165,6 +172,7 @@ public static function numeric($value, $message = '') /** * @psalm-pure + * * @psalm-assert positive-int|0 $value * * @param mixed $value @@ -184,6 +192,7 @@ public static function natural($value, $message = '') /** * @psalm-pure + * * @psalm-assert bool $value * * @param mixed $value @@ -203,6 +212,7 @@ public static function boolean($value, $message = '') /** * @psalm-pure + * * @psalm-assert scalar $value * * @param mixed $value @@ -222,6 +232,7 @@ public static function scalar($value, $message = '') /** * @psalm-pure + * * @psalm-assert object $value * * @param mixed $value @@ -241,6 +252,7 @@ public static function object($value, $message = '') /** * @psalm-pure + * * @psalm-assert resource $value * * @param mixed $value @@ -269,6 +281,7 @@ public static function resource($value, $type = null, $message = '') /** * @psalm-pure + * * @psalm-assert callable $value * * @param mixed $value @@ -288,6 +301,7 @@ public static function isCallable($value, $message = '') /** * @psalm-pure + * * @psalm-assert array $value * * @param mixed $value @@ -307,6 +321,7 @@ public static function isArray($value, $message = '') /** * @psalm-pure + * * @psalm-assert iterable $value * * @deprecated use "isIterable" or "isInstanceOf" instead @@ -336,6 +351,7 @@ public static function isTraversable($value, $message = '') /** * @psalm-pure + * * @psalm-assert array|ArrayAccess $value * * @param mixed $value @@ -355,6 +371,7 @@ public static function isArrayAccessible($value, $message = '') /** * @psalm-pure + * * @psalm-assert countable $value * * @param mixed $value @@ -379,6 +396,7 @@ public static function isCountable($value, $message = '') /** * @psalm-pure + * * @psalm-assert iterable $value * * @param mixed $value @@ -398,8 +416,11 @@ public static function isIterable($value, $message = '') /** * @psalm-pure + * * @psalm-template ExpectedType of object + * * @psalm-param class-string $class + * * @psalm-assert ExpectedType $value * * @param mixed $value @@ -421,8 +442,11 @@ public static function isInstanceOf($value, $class, $message = '') /** * @psalm-pure + * * @psalm-template ExpectedType of object + * * @psalm-param class-string $class + * * @psalm-assert !ExpectedType $value * * @param mixed $value @@ -444,6 +468,7 @@ public static function notInstanceOf($value, $class, $message = '') /** * @psalm-pure + * * @psalm-param array $classes * * @param mixed $value @@ -469,8 +494,11 @@ public static function isInstanceOfAny($value, array $classes, $message = '') /** * @psalm-pure + * * @psalm-template ExpectedType of object + * * @psalm-param class-string $class + * * @psalm-assert ExpectedType|class-string $value * * @param object|string $value @@ -494,8 +522,11 @@ public static function isAOf($value, $class, $message = '') /** * @psalm-pure + * * @psalm-template UnexpectedType of object + * * @psalm-param class-string $class + * * @psalm-assert !UnexpectedType $value * @psalm-assert !class-string $value * @@ -520,6 +551,7 @@ public static function isNotA($value, $class, $message = '') /** * @psalm-pure + * * @psalm-param array $classes * * @param object|string $value @@ -547,6 +579,7 @@ public static function isAnyOf($value, array $classes, $message = '') /** * @psalm-pure + * * @psalm-assert empty $value * * @param mixed $value @@ -566,6 +599,7 @@ public static function isEmpty($value, $message = '') /** * @psalm-pure + * * @psalm-assert !empty $value * * @param mixed $value @@ -585,6 +619,7 @@ public static function notEmpty($value, $message = '') /** * @psalm-pure + * * @psalm-assert null $value * * @param mixed $value @@ -604,6 +639,7 @@ public static function null($value, $message = '') /** * @psalm-pure + * * @psalm-assert !null $value * * @param mixed $value @@ -622,6 +658,7 @@ public static function notNull($value, $message = '') /** * @psalm-pure + * * @psalm-assert true $value * * @param mixed $value @@ -641,6 +678,7 @@ public static function true($value, $message = '') /** * @psalm-pure + * * @psalm-assert false $value * * @param mixed $value @@ -660,6 +698,7 @@ public static function false($value, $message = '') /** * @psalm-pure + * * @psalm-assert !false $value * * @param mixed $value @@ -759,7 +798,7 @@ public static function uniqueValues(array $values, $message = '') static::reportInvalidArgument(\sprintf( $message ?: 'Expected an array of unique values, but %s of them %s duplicated', $difference, - (1 === $difference ? 'is' : 'are') + 1 === $difference ? 'is' : 'are' )); } } @@ -1280,6 +1319,7 @@ public static function alnum($value, $message = '') /** * @psalm-pure + * * @psalm-assert lowercase-string $value * * @param string $value @@ -1304,6 +1344,7 @@ public static function lower($value, $message = '') /** * @psalm-pure + * * @psalm-assert !lowercase-string $value * * @param string $value @@ -1524,8 +1565,11 @@ public static function classExists($value, $message = '') /** * @psalm-pure + * * @psalm-template ExpectedType of object + * * @psalm-param class-string $class + * * @psalm-assert class-string|ExpectedType $value * * @param mixed $value @@ -1565,8 +1609,11 @@ public static function interfaceExists($value, $message = '') /** * @psalm-pure + * * @psalm-template ExpectedType of object + * * @psalm-param class-string $interface + * * @psalm-assert class-string $value * * @param mixed $value @@ -1588,6 +1635,7 @@ public static function implementsInterface($value, $interface, $message = '') /** * @psalm-pure + * * @psalm-param class-string|object $classOrObject * * @param string|object $classOrObject @@ -1608,6 +1656,7 @@ public static function propertyExists($classOrObject, $property, $message = '') /** * @psalm-pure + * * @psalm-param class-string|object $classOrObject * * @param string|object $classOrObject @@ -1628,6 +1677,7 @@ public static function propertyNotExists($classOrObject, $property, $message = ' /** * @psalm-pure + * * @psalm-param class-string|object $classOrObject * * @param string|object $classOrObject @@ -1648,6 +1698,7 @@ public static function methodExists($classOrObject, $method, $message = '') /** * @psalm-pure + * * @psalm-param class-string|object $classOrObject * * @param string|object $classOrObject @@ -1708,6 +1759,7 @@ public static function keyNotExists($array, $key, $message = '') * Checks if a value is a valid array key (int or string). * * @psalm-pure + * * @psalm-assert array-key $value * * @param mixed $value @@ -1813,6 +1865,7 @@ public static function countBetween($array, $min, $max, $message = '') /** * @psalm-pure + * * @psalm-assert list $array * * @param mixed $array @@ -1844,6 +1897,7 @@ public static function isList($array, $message = '') /** * @psalm-pure + * * @psalm-assert non-empty-list $array * * @param mixed $array @@ -1859,8 +1913,11 @@ public static function isNonEmptyList($array, $message = '') /** * @psalm-pure + * * @psalm-template T + * * @psalm-param mixed|array $array + * * @psalm-assert array $array * * @param mixed $array @@ -1871,8 +1928,8 @@ public static function isNonEmptyList($array, $message = '') public static function isMap($array, $message = '') { if ( - !\is_array($array) || - \array_keys($array) !== \array_filter(\array_keys($array), '\is_string') + !\is_array($array) + || \array_keys($array) !== \array_filter(\array_keys($array), '\is_string') ) { static::reportInvalidArgument( $message ?: 'Expected map - associative array with string keys.' @@ -1882,8 +1939,11 @@ public static function isMap($array, $message = '') /** * @psalm-pure + * * @psalm-template T + * * @psalm-param mixed|array $array + * * @psalm-assert array $array * @psalm-assert !empty $array * @@ -2067,6 +2127,7 @@ protected static function strlen($value) * @throws InvalidArgumentException * * @psalm-pure this method is not supposed to perform side-effects + * * @psalm-return never */ protected static function reportInvalidArgument($message) diff --git a/src/Mixin.php b/src/Mixin.php index 5670e2ad..ae958ceb 100644 --- a/src/Mixin.php +++ b/src/Mixin.php @@ -15,14 +15,15 @@ trait Mixin { /** * @psalm-pure + * * @psalm-assert string|null $value * * @param mixed $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function nullOrString($value, $message = '') { @@ -31,14 +32,15 @@ public static function nullOrString($value, $message = '') /** * @psalm-pure + * * @psalm-assert iterable $value * * @param mixed $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allString($value, $message = '') { @@ -51,14 +53,15 @@ public static function allString($value, $message = '') /** * @psalm-pure + * * @psalm-assert iterable $value * * @param mixed $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allNullOrString($value, $message = '') { @@ -71,14 +74,15 @@ public static function allNullOrString($value, $message = '') /** * @psalm-pure + * * @psalm-assert non-empty-string|null $value * * @param mixed $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function nullOrStringNotEmpty($value, $message = '') { @@ -87,14 +91,15 @@ public static function nullOrStringNotEmpty($value, $message = '') /** * @psalm-pure + * * @psalm-assert iterable $value * * @param mixed $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allStringNotEmpty($value, $message = '') { @@ -107,14 +112,15 @@ public static function allStringNotEmpty($value, $message = '') /** * @psalm-pure + * * @psalm-assert iterable $value * * @param mixed $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allNullOrStringNotEmpty($value, $message = '') { @@ -127,14 +133,15 @@ public static function allNullOrStringNotEmpty($value, $message = '') /** * @psalm-pure + * * @psalm-assert int|null $value * * @param mixed $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function nullOrInteger($value, $message = '') { @@ -143,14 +150,15 @@ public static function nullOrInteger($value, $message = '') /** * @psalm-pure + * * @psalm-assert iterable $value * * @param mixed $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allInteger($value, $message = '') { @@ -163,14 +171,15 @@ public static function allInteger($value, $message = '') /** * @psalm-pure + * * @psalm-assert iterable $value * * @param mixed $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allNullOrInteger($value, $message = '') { @@ -183,14 +192,15 @@ public static function allNullOrInteger($value, $message = '') /** * @psalm-pure + * * @psalm-assert numeric|null $value * * @param mixed $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function nullOrIntegerish($value, $message = '') { @@ -199,14 +209,15 @@ public static function nullOrIntegerish($value, $message = '') /** * @psalm-pure + * * @psalm-assert iterable $value * * @param mixed $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allIntegerish($value, $message = '') { @@ -219,14 +230,15 @@ public static function allIntegerish($value, $message = '') /** * @psalm-pure + * * @psalm-assert iterable $value * * @param mixed $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allNullOrIntegerish($value, $message = '') { @@ -239,14 +251,15 @@ public static function allNullOrIntegerish($value, $message = '') /** * @psalm-pure + * * @psalm-assert positive-int|null $value * * @param mixed $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function nullOrPositiveInteger($value, $message = '') { @@ -255,14 +268,15 @@ public static function nullOrPositiveInteger($value, $message = '') /** * @psalm-pure + * * @psalm-assert iterable $value * * @param mixed $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allPositiveInteger($value, $message = '') { @@ -275,14 +289,15 @@ public static function allPositiveInteger($value, $message = '') /** * @psalm-pure + * * @psalm-assert iterable $value * * @param mixed $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allNullOrPositiveInteger($value, $message = '') { @@ -295,14 +310,15 @@ public static function allNullOrPositiveInteger($value, $message = '') /** * @psalm-pure + * * @psalm-assert float|null $value * * @param mixed $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function nullOrFloat($value, $message = '') { @@ -311,14 +327,15 @@ public static function nullOrFloat($value, $message = '') /** * @psalm-pure + * * @psalm-assert iterable $value * * @param mixed $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allFloat($value, $message = '') { @@ -331,14 +348,15 @@ public static function allFloat($value, $message = '') /** * @psalm-pure + * * @psalm-assert iterable $value * * @param mixed $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allNullOrFloat($value, $message = '') { @@ -351,14 +369,15 @@ public static function allNullOrFloat($value, $message = '') /** * @psalm-pure + * * @psalm-assert numeric|null $value * * @param mixed $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function nullOrNumeric($value, $message = '') { @@ -367,14 +386,15 @@ public static function nullOrNumeric($value, $message = '') /** * @psalm-pure + * * @psalm-assert iterable $value * * @param mixed $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allNumeric($value, $message = '') { @@ -387,14 +407,15 @@ public static function allNumeric($value, $message = '') /** * @psalm-pure + * * @psalm-assert iterable $value * * @param mixed $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allNullOrNumeric($value, $message = '') { @@ -407,14 +428,15 @@ public static function allNullOrNumeric($value, $message = '') /** * @psalm-pure + * * @psalm-assert positive-int|0|null $value * * @param mixed $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function nullOrNatural($value, $message = '') { @@ -423,14 +445,15 @@ public static function nullOrNatural($value, $message = '') /** * @psalm-pure + * * @psalm-assert iterable $value * * @param mixed $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allNatural($value, $message = '') { @@ -443,14 +466,15 @@ public static function allNatural($value, $message = '') /** * @psalm-pure + * * @psalm-assert iterable $value * * @param mixed $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allNullOrNatural($value, $message = '') { @@ -463,14 +487,15 @@ public static function allNullOrNatural($value, $message = '') /** * @psalm-pure + * * @psalm-assert bool|null $value * * @param mixed $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function nullOrBoolean($value, $message = '') { @@ -479,14 +504,15 @@ public static function nullOrBoolean($value, $message = '') /** * @psalm-pure + * * @psalm-assert iterable $value * * @param mixed $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allBoolean($value, $message = '') { @@ -499,14 +525,15 @@ public static function allBoolean($value, $message = '') /** * @psalm-pure + * * @psalm-assert iterable $value * * @param mixed $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allNullOrBoolean($value, $message = '') { @@ -519,14 +546,15 @@ public static function allNullOrBoolean($value, $message = '') /** * @psalm-pure + * * @psalm-assert scalar|null $value * * @param mixed $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function nullOrScalar($value, $message = '') { @@ -535,14 +563,15 @@ public static function nullOrScalar($value, $message = '') /** * @psalm-pure + * * @psalm-assert iterable $value * * @param mixed $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allScalar($value, $message = '') { @@ -555,14 +584,15 @@ public static function allScalar($value, $message = '') /** * @psalm-pure + * * @psalm-assert iterable $value * * @param mixed $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allNullOrScalar($value, $message = '') { @@ -575,14 +605,15 @@ public static function allNullOrScalar($value, $message = '') /** * @psalm-pure + * * @psalm-assert object|null $value * * @param mixed $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function nullOrObject($value, $message = '') { @@ -591,14 +622,15 @@ public static function nullOrObject($value, $message = '') /** * @psalm-pure + * * @psalm-assert iterable $value * * @param mixed $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allObject($value, $message = '') { @@ -611,14 +643,15 @@ public static function allObject($value, $message = '') /** * @psalm-pure + * * @psalm-assert iterable $value * * @param mixed $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allNullOrObject($value, $message = '') { @@ -631,15 +664,16 @@ public static function allNullOrObject($value, $message = '') /** * @psalm-pure + * * @psalm-assert resource|null $value * * @param mixed $value * @param string|null $type type of resource this should be. @see https://www.php.net/manual/en/function.get-resource-type.php * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function nullOrResource($value, $type = null, $message = '') { @@ -648,15 +682,16 @@ public static function nullOrResource($value, $type = null, $message = '') /** * @psalm-pure + * * @psalm-assert iterable $value * * @param mixed $value * @param string|null $type type of resource this should be. @see https://www.php.net/manual/en/function.get-resource-type.php * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allResource($value, $type = null, $message = '') { @@ -669,15 +704,16 @@ public static function allResource($value, $type = null, $message = '') /** * @psalm-pure + * * @psalm-assert iterable $value * * @param mixed $value * @param string|null $type type of resource this should be. @see https://www.php.net/manual/en/function.get-resource-type.php * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allNullOrResource($value, $type = null, $message = '') { @@ -690,14 +726,15 @@ public static function allNullOrResource($value, $type = null, $message = '') /** * @psalm-pure + * * @psalm-assert callable|null $value * * @param mixed $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function nullOrIsCallable($value, $message = '') { @@ -706,14 +743,15 @@ public static function nullOrIsCallable($value, $message = '') /** * @psalm-pure + * * @psalm-assert iterable $value * * @param mixed $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allIsCallable($value, $message = '') { @@ -726,14 +764,15 @@ public static function allIsCallable($value, $message = '') /** * @psalm-pure + * * @psalm-assert iterable $value * * @param mixed $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allNullOrIsCallable($value, $message = '') { @@ -746,14 +785,15 @@ public static function allNullOrIsCallable($value, $message = '') /** * @psalm-pure + * * @psalm-assert array|null $value * * @param mixed $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function nullOrIsArray($value, $message = '') { @@ -762,14 +802,15 @@ public static function nullOrIsArray($value, $message = '') /** * @psalm-pure + * * @psalm-assert iterable $value * * @param mixed $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allIsArray($value, $message = '') { @@ -782,14 +823,15 @@ public static function allIsArray($value, $message = '') /** * @psalm-pure + * * @psalm-assert iterable $value * * @param mixed $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allNullOrIsArray($value, $message = '') { @@ -802,6 +844,7 @@ public static function allNullOrIsArray($value, $message = '') /** * @psalm-pure + * * @psalm-assert iterable|null $value * * @deprecated use "isIterable" or "isInstanceOf" instead @@ -809,9 +852,9 @@ public static function allNullOrIsArray($value, $message = '') * @param mixed $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function nullOrIsTraversable($value, $message = '') { @@ -820,6 +863,7 @@ public static function nullOrIsTraversable($value, $message = '') /** * @psalm-pure + * * @psalm-assert iterable $value * * @deprecated use "isIterable" or "isInstanceOf" instead @@ -827,9 +871,9 @@ public static function nullOrIsTraversable($value, $message = '') * @param mixed $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allIsTraversable($value, $message = '') { @@ -842,6 +886,7 @@ public static function allIsTraversable($value, $message = '') /** * @psalm-pure + * * @psalm-assert iterable $value * * @deprecated use "isIterable" or "isInstanceOf" instead @@ -849,9 +894,9 @@ public static function allIsTraversable($value, $message = '') * @param mixed $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allNullOrIsTraversable($value, $message = '') { @@ -864,14 +909,15 @@ public static function allNullOrIsTraversable($value, $message = '') /** * @psalm-pure + * * @psalm-assert array|ArrayAccess|null $value * * @param mixed $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function nullOrIsArrayAccessible($value, $message = '') { @@ -880,14 +926,15 @@ public static function nullOrIsArrayAccessible($value, $message = '') /** * @psalm-pure + * * @psalm-assert iterable $value * * @param mixed $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allIsArrayAccessible($value, $message = '') { @@ -900,14 +947,15 @@ public static function allIsArrayAccessible($value, $message = '') /** * @psalm-pure + * * @psalm-assert iterable $value * * @param mixed $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allNullOrIsArrayAccessible($value, $message = '') { @@ -920,14 +968,15 @@ public static function allNullOrIsArrayAccessible($value, $message = '') /** * @psalm-pure + * * @psalm-assert countable|null $value * * @param mixed $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function nullOrIsCountable($value, $message = '') { @@ -936,14 +985,15 @@ public static function nullOrIsCountable($value, $message = '') /** * @psalm-pure + * * @psalm-assert iterable $value * * @param mixed $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allIsCountable($value, $message = '') { @@ -956,14 +1006,15 @@ public static function allIsCountable($value, $message = '') /** * @psalm-pure + * * @psalm-assert iterable $value * * @param mixed $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allNullOrIsCountable($value, $message = '') { @@ -976,14 +1027,15 @@ public static function allNullOrIsCountable($value, $message = '') /** * @psalm-pure + * * @psalm-assert iterable|null $value * * @param mixed $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function nullOrIsIterable($value, $message = '') { @@ -992,14 +1044,15 @@ public static function nullOrIsIterable($value, $message = '') /** * @psalm-pure + * * @psalm-assert iterable $value * * @param mixed $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allIsIterable($value, $message = '') { @@ -1012,14 +1065,15 @@ public static function allIsIterable($value, $message = '') /** * @psalm-pure + * * @psalm-assert iterable $value * * @param mixed $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allNullOrIsIterable($value, $message = '') { @@ -1032,6 +1086,7 @@ public static function allNullOrIsIterable($value, $message = '') /** * @psalm-pure + * * @psalm-template ExpectedType of object * @psalm-param class-string $class * @psalm-assert ExpectedType|null $value @@ -1040,9 +1095,9 @@ public static function allNullOrIsIterable($value, $message = '') * @param string|object $class * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function nullOrIsInstanceOf($value, $class, $message = '') { @@ -1051,6 +1106,7 @@ public static function nullOrIsInstanceOf($value, $class, $message = '') /** * @psalm-pure + * * @psalm-template ExpectedType of object * @psalm-param class-string $class * @psalm-assert iterable $value @@ -1059,9 +1115,9 @@ public static function nullOrIsInstanceOf($value, $class, $message = '') * @param string|object $class * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allIsInstanceOf($value, $class, $message = '') { @@ -1074,6 +1130,7 @@ public static function allIsInstanceOf($value, $class, $message = '') /** * @psalm-pure + * * @psalm-template ExpectedType of object * @psalm-param class-string $class * @psalm-assert iterable $value @@ -1082,9 +1139,9 @@ public static function allIsInstanceOf($value, $class, $message = '') * @param string|object $class * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allNullOrIsInstanceOf($value, $class, $message = '') { @@ -1097,6 +1154,7 @@ public static function allNullOrIsInstanceOf($value, $class, $message = '') /** * @psalm-pure + * * @psalm-template ExpectedType of object * @psalm-param class-string $class * @@ -1104,9 +1162,9 @@ public static function allNullOrIsInstanceOf($value, $class, $message = '') * @param string|object $class * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function nullOrNotInstanceOf($value, $class, $message = '') { @@ -1115,6 +1173,7 @@ public static function nullOrNotInstanceOf($value, $class, $message = '') /** * @psalm-pure + * * @psalm-template ExpectedType of object * @psalm-param class-string $class * @@ -1122,9 +1181,9 @@ public static function nullOrNotInstanceOf($value, $class, $message = '') * @param string|object $class * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allNotInstanceOf($value, $class, $message = '') { @@ -1137,6 +1196,7 @@ public static function allNotInstanceOf($value, $class, $message = '') /** * @psalm-pure + * * @psalm-template ExpectedType of object * @psalm-param class-string $class * @psalm-assert iterable $value @@ -1145,9 +1205,9 @@ public static function allNotInstanceOf($value, $class, $message = '') * @param string|object $class * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allNullOrNotInstanceOf($value, $class, $message = '') { @@ -1160,15 +1220,16 @@ public static function allNullOrNotInstanceOf($value, $class, $message = '') /** * @psalm-pure + * * @psalm-param array $classes * * @param mixed $value * @param array $classes * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function nullOrIsInstanceOfAny($value, $classes, $message = '') { @@ -1177,15 +1238,16 @@ public static function nullOrIsInstanceOfAny($value, $classes, $message = '') /** * @psalm-pure + * * @psalm-param array $classes * * @param mixed $value * @param array $classes * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allIsInstanceOfAny($value, $classes, $message = '') { @@ -1198,15 +1260,16 @@ public static function allIsInstanceOfAny($value, $classes, $message = '') /** * @psalm-pure + * * @psalm-param array $classes * * @param mixed $value * @param array $classes * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allNullOrIsInstanceOfAny($value, $classes, $message = '') { @@ -1219,6 +1282,7 @@ public static function allNullOrIsInstanceOfAny($value, $classes, $message = '') /** * @psalm-pure + * * @psalm-template ExpectedType of object * @psalm-param class-string $class * @psalm-assert ExpectedType|class-string|null $value @@ -1227,9 +1291,9 @@ public static function allNullOrIsInstanceOfAny($value, $classes, $message = '') * @param string $class * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function nullOrIsAOf($value, $class, $message = '') { @@ -1238,6 +1302,7 @@ public static function nullOrIsAOf($value, $class, $message = '') /** * @psalm-pure + * * @psalm-template ExpectedType of object * @psalm-param class-string $class * @psalm-assert iterable> $value @@ -1246,9 +1311,9 @@ public static function nullOrIsAOf($value, $class, $message = '') * @param string $class * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allIsAOf($value, $class, $message = '') { @@ -1261,6 +1326,7 @@ public static function allIsAOf($value, $class, $message = '') /** * @psalm-pure + * * @psalm-template ExpectedType of object * @psalm-param class-string $class * @psalm-assert iterable|null> $value @@ -1269,9 +1335,9 @@ public static function allIsAOf($value, $class, $message = '') * @param string $class * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allNullOrIsAOf($value, $class, $message = '') { @@ -1284,6 +1350,7 @@ public static function allNullOrIsAOf($value, $class, $message = '') /** * @psalm-pure + * * @psalm-template UnexpectedType of object * @psalm-param class-string $class * @@ -1291,9 +1358,9 @@ public static function allNullOrIsAOf($value, $class, $message = '') * @param string $class * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function nullOrIsNotA($value, $class, $message = '') { @@ -1302,6 +1369,7 @@ public static function nullOrIsNotA($value, $class, $message = '') /** * @psalm-pure + * * @psalm-template UnexpectedType of object * @psalm-param class-string $class * @@ -1309,9 +1377,9 @@ public static function nullOrIsNotA($value, $class, $message = '') * @param string $class * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allIsNotA($value, $class, $message = '') { @@ -1324,6 +1392,7 @@ public static function allIsNotA($value, $class, $message = '') /** * @psalm-pure + * * @psalm-template UnexpectedType of object * @psalm-param class-string $class * @psalm-assert iterable $value @@ -1333,9 +1402,9 @@ public static function allIsNotA($value, $class, $message = '') * @param string $class * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allNullOrIsNotA($value, $class, $message = '') { @@ -1348,15 +1417,16 @@ public static function allNullOrIsNotA($value, $class, $message = '') /** * @psalm-pure + * * @psalm-param array $classes * * @param object|string|null $value * @param string[] $classes * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function nullOrIsAnyOf($value, $classes, $message = '') { @@ -1365,15 +1435,16 @@ public static function nullOrIsAnyOf($value, $classes, $message = '') /** * @psalm-pure + * * @psalm-param array $classes * * @param iterable $value * @param string[] $classes * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allIsAnyOf($value, $classes, $message = '') { @@ -1386,15 +1457,16 @@ public static function allIsAnyOf($value, $classes, $message = '') /** * @psalm-pure + * * @psalm-param array $classes * * @param iterable $value * @param string[] $classes * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allNullOrIsAnyOf($value, $classes, $message = '') { @@ -1407,14 +1479,15 @@ public static function allNullOrIsAnyOf($value, $classes, $message = '') /** * @psalm-pure + * * @psalm-assert empty $value * * @param mixed $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function nullOrIsEmpty($value, $message = '') { @@ -1423,14 +1496,15 @@ public static function nullOrIsEmpty($value, $message = '') /** * @psalm-pure + * * @psalm-assert iterable $value * * @param mixed $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allIsEmpty($value, $message = '') { @@ -1443,14 +1517,15 @@ public static function allIsEmpty($value, $message = '') /** * @psalm-pure + * * @psalm-assert iterable $value * * @param mixed $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allNullOrIsEmpty($value, $message = '') { @@ -1467,9 +1542,9 @@ public static function allNullOrIsEmpty($value, $message = '') * @param mixed $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function nullOrNotEmpty($value, $message = '') { @@ -1482,9 +1557,9 @@ public static function nullOrNotEmpty($value, $message = '') * @param mixed $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allNotEmpty($value, $message = '') { @@ -1497,14 +1572,15 @@ public static function allNotEmpty($value, $message = '') /** * @psalm-pure + * * @psalm-assert iterable $value * * @param mixed $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allNullOrNotEmpty($value, $message = '') { @@ -1517,14 +1593,15 @@ public static function allNullOrNotEmpty($value, $message = '') /** * @psalm-pure + * * @psalm-assert iterable $value * * @param mixed $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allNull($value, $message = '') { @@ -1541,9 +1618,9 @@ public static function allNull($value, $message = '') * @param mixed $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allNotNull($value, $message = '') { @@ -1556,14 +1633,15 @@ public static function allNotNull($value, $message = '') /** * @psalm-pure + * * @psalm-assert true|null $value * * @param mixed $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function nullOrTrue($value, $message = '') { @@ -1572,14 +1650,15 @@ public static function nullOrTrue($value, $message = '') /** * @psalm-pure + * * @psalm-assert iterable $value * * @param mixed $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allTrue($value, $message = '') { @@ -1592,14 +1671,15 @@ public static function allTrue($value, $message = '') /** * @psalm-pure + * * @psalm-assert iterable $value * * @param mixed $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allNullOrTrue($value, $message = '') { @@ -1612,14 +1692,15 @@ public static function allNullOrTrue($value, $message = '') /** * @psalm-pure + * * @psalm-assert false|null $value * * @param mixed $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function nullOrFalse($value, $message = '') { @@ -1628,14 +1709,15 @@ public static function nullOrFalse($value, $message = '') /** * @psalm-pure + * * @psalm-assert iterable $value * * @param mixed $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allFalse($value, $message = '') { @@ -1648,14 +1730,15 @@ public static function allFalse($value, $message = '') /** * @psalm-pure + * * @psalm-assert iterable $value * * @param mixed $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allNullOrFalse($value, $message = '') { @@ -1672,9 +1755,9 @@ public static function allNullOrFalse($value, $message = '') * @param mixed $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function nullOrNotFalse($value, $message = '') { @@ -1687,9 +1770,9 @@ public static function nullOrNotFalse($value, $message = '') * @param mixed $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allNotFalse($value, $message = '') { @@ -1702,14 +1785,15 @@ public static function allNotFalse($value, $message = '') /** * @psalm-pure + * * @psalm-assert iterable $value * * @param mixed $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allNullOrNotFalse($value, $message = '') { @@ -1724,9 +1808,9 @@ public static function allNullOrNotFalse($value, $message = '') * @param mixed $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function nullOrIp($value, $message = '') { @@ -1737,9 +1821,9 @@ public static function nullOrIp($value, $message = '') * @param mixed $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allIp($value, $message = '') { @@ -1754,9 +1838,9 @@ public static function allIp($value, $message = '') * @param mixed $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allNullOrIp($value, $message = '') { @@ -1771,9 +1855,9 @@ public static function allNullOrIp($value, $message = '') * @param mixed $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function nullOrIpv4($value, $message = '') { @@ -1784,9 +1868,9 @@ public static function nullOrIpv4($value, $message = '') * @param mixed $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allIpv4($value, $message = '') { @@ -1801,9 +1885,9 @@ public static function allIpv4($value, $message = '') * @param mixed $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allNullOrIpv4($value, $message = '') { @@ -1818,9 +1902,9 @@ public static function allNullOrIpv4($value, $message = '') * @param mixed $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function nullOrIpv6($value, $message = '') { @@ -1831,9 +1915,9 @@ public static function nullOrIpv6($value, $message = '') * @param mixed $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allIpv6($value, $message = '') { @@ -1848,9 +1932,9 @@ public static function allIpv6($value, $message = '') * @param mixed $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allNullOrIpv6($value, $message = '') { @@ -1865,9 +1949,9 @@ public static function allNullOrIpv6($value, $message = '') * @param mixed $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function nullOrEmail($value, $message = '') { @@ -1878,9 +1962,9 @@ public static function nullOrEmail($value, $message = '') * @param mixed $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allEmail($value, $message = '') { @@ -1895,9 +1979,9 @@ public static function allEmail($value, $message = '') * @param mixed $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allNullOrEmail($value, $message = '') { @@ -1912,9 +1996,9 @@ public static function allNullOrEmail($value, $message = '') * @param array|null $values * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function nullOrUniqueValues($values, $message = '') { @@ -1925,9 +2009,9 @@ public static function nullOrUniqueValues($values, $message = '') * @param iterable $values * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allUniqueValues($values, $message = '') { @@ -1942,9 +2026,9 @@ public static function allUniqueValues($values, $message = '') * @param iterable $values * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allNullOrUniqueValues($values, $message = '') { @@ -1960,9 +2044,9 @@ public static function allNullOrUniqueValues($values, $message = '') * @param mixed $expect * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function nullOrEq($value, $expect, $message = '') { @@ -1974,9 +2058,9 @@ public static function nullOrEq($value, $expect, $message = '') * @param mixed $expect * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allEq($value, $expect, $message = '') { @@ -1992,9 +2076,9 @@ public static function allEq($value, $expect, $message = '') * @param mixed $expect * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allNullOrEq($value, $expect, $message = '') { @@ -2010,9 +2094,9 @@ public static function allNullOrEq($value, $expect, $message = '') * @param mixed $expect * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function nullOrNotEq($value, $expect, $message = '') { @@ -2024,9 +2108,9 @@ public static function nullOrNotEq($value, $expect, $message = '') * @param mixed $expect * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allNotEq($value, $expect, $message = '') { @@ -2042,9 +2126,9 @@ public static function allNotEq($value, $expect, $message = '') * @param mixed $expect * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allNullOrNotEq($value, $expect, $message = '') { @@ -2062,9 +2146,9 @@ public static function allNullOrNotEq($value, $expect, $message = '') * @param mixed $expect * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function nullOrSame($value, $expect, $message = '') { @@ -2078,9 +2162,9 @@ public static function nullOrSame($value, $expect, $message = '') * @param mixed $expect * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allSame($value, $expect, $message = '') { @@ -2098,9 +2182,9 @@ public static function allSame($value, $expect, $message = '') * @param mixed $expect * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allNullOrSame($value, $expect, $message = '') { @@ -2118,9 +2202,9 @@ public static function allNullOrSame($value, $expect, $message = '') * @param mixed $expect * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function nullOrNotSame($value, $expect, $message = '') { @@ -2134,9 +2218,9 @@ public static function nullOrNotSame($value, $expect, $message = '') * @param mixed $expect * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allNotSame($value, $expect, $message = '') { @@ -2154,9 +2238,9 @@ public static function allNotSame($value, $expect, $message = '') * @param mixed $expect * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allNullOrNotSame($value, $expect, $message = '') { @@ -2174,9 +2258,9 @@ public static function allNullOrNotSame($value, $expect, $message = '') * @param mixed $limit * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function nullOrGreaterThan($value, $limit, $message = '') { @@ -2190,9 +2274,9 @@ public static function nullOrGreaterThan($value, $limit, $message = '') * @param mixed $limit * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allGreaterThan($value, $limit, $message = '') { @@ -2210,9 +2294,9 @@ public static function allGreaterThan($value, $limit, $message = '') * @param mixed $limit * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allNullOrGreaterThan($value, $limit, $message = '') { @@ -2230,9 +2314,9 @@ public static function allNullOrGreaterThan($value, $limit, $message = '') * @param mixed $limit * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function nullOrGreaterThanEq($value, $limit, $message = '') { @@ -2246,9 +2330,9 @@ public static function nullOrGreaterThanEq($value, $limit, $message = '') * @param mixed $limit * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allGreaterThanEq($value, $limit, $message = '') { @@ -2266,9 +2350,9 @@ public static function allGreaterThanEq($value, $limit, $message = '') * @param mixed $limit * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allNullOrGreaterThanEq($value, $limit, $message = '') { @@ -2286,9 +2370,9 @@ public static function allNullOrGreaterThanEq($value, $limit, $message = '') * @param mixed $limit * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function nullOrLessThan($value, $limit, $message = '') { @@ -2302,9 +2386,9 @@ public static function nullOrLessThan($value, $limit, $message = '') * @param mixed $limit * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allLessThan($value, $limit, $message = '') { @@ -2322,9 +2406,9 @@ public static function allLessThan($value, $limit, $message = '') * @param mixed $limit * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allNullOrLessThan($value, $limit, $message = '') { @@ -2342,9 +2426,9 @@ public static function allNullOrLessThan($value, $limit, $message = '') * @param mixed $limit * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function nullOrLessThanEq($value, $limit, $message = '') { @@ -2358,9 +2442,9 @@ public static function nullOrLessThanEq($value, $limit, $message = '') * @param mixed $limit * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allLessThanEq($value, $limit, $message = '') { @@ -2378,9 +2462,9 @@ public static function allLessThanEq($value, $limit, $message = '') * @param mixed $limit * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allNullOrLessThanEq($value, $limit, $message = '') { @@ -2399,9 +2483,9 @@ public static function allNullOrLessThanEq($value, $limit, $message = '') * @param mixed $max * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function nullOrRange($value, $min, $max, $message = '') { @@ -2416,9 +2500,9 @@ public static function nullOrRange($value, $min, $max, $message = '') * @param mixed $max * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allRange($value, $min, $max, $message = '') { @@ -2437,9 +2521,9 @@ public static function allRange($value, $min, $max, $message = '') * @param mixed $max * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allNullOrRange($value, $min, $max, $message = '') { @@ -2457,9 +2541,9 @@ public static function allNullOrRange($value, $min, $max, $message = '') * @param array $values * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function nullOrOneOf($value, $values, $message = '') { @@ -2473,9 +2557,9 @@ public static function nullOrOneOf($value, $values, $message = '') * @param array $values * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allOneOf($value, $values, $message = '') { @@ -2493,9 +2577,9 @@ public static function allOneOf($value, $values, $message = '') * @param array $values * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allNullOrOneOf($value, $values, $message = '') { @@ -2513,9 +2597,9 @@ public static function allNullOrOneOf($value, $values, $message = '') * @param array $values * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function nullOrInArray($value, $values, $message = '') { @@ -2529,9 +2613,9 @@ public static function nullOrInArray($value, $values, $message = '') * @param array $values * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allInArray($value, $values, $message = '') { @@ -2549,9 +2633,9 @@ public static function allInArray($value, $values, $message = '') * @param array $values * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allNullOrInArray($value, $values, $message = '') { @@ -2569,9 +2653,9 @@ public static function allNullOrInArray($value, $values, $message = '') * @param string $subString * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function nullOrContains($value, $subString, $message = '') { @@ -2585,9 +2669,9 @@ public static function nullOrContains($value, $subString, $message = '') * @param string $subString * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allContains($value, $subString, $message = '') { @@ -2605,9 +2689,9 @@ public static function allContains($value, $subString, $message = '') * @param string $subString * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allNullOrContains($value, $subString, $message = '') { @@ -2625,9 +2709,9 @@ public static function allNullOrContains($value, $subString, $message = '') * @param string $subString * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function nullOrNotContains($value, $subString, $message = '') { @@ -2641,9 +2725,9 @@ public static function nullOrNotContains($value, $subString, $message = '') * @param string $subString * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allNotContains($value, $subString, $message = '') { @@ -2661,9 +2745,9 @@ public static function allNotContains($value, $subString, $message = '') * @param string $subString * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allNullOrNotContains($value, $subString, $message = '') { @@ -2680,9 +2764,9 @@ public static function allNullOrNotContains($value, $subString, $message = '') * @param string|null $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function nullOrNotWhitespaceOnly($value, $message = '') { @@ -2695,9 +2779,9 @@ public static function nullOrNotWhitespaceOnly($value, $message = '') * @param iterable $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allNotWhitespaceOnly($value, $message = '') { @@ -2714,9 +2798,9 @@ public static function allNotWhitespaceOnly($value, $message = '') * @param iterable $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allNullOrNotWhitespaceOnly($value, $message = '') { @@ -2734,9 +2818,9 @@ public static function allNullOrNotWhitespaceOnly($value, $message = '') * @param string $prefix * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function nullOrStartsWith($value, $prefix, $message = '') { @@ -2750,9 +2834,9 @@ public static function nullOrStartsWith($value, $prefix, $message = '') * @param string $prefix * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allStartsWith($value, $prefix, $message = '') { @@ -2770,9 +2854,9 @@ public static function allStartsWith($value, $prefix, $message = '') * @param string $prefix * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allNullOrStartsWith($value, $prefix, $message = '') { @@ -2790,9 +2874,9 @@ public static function allNullOrStartsWith($value, $prefix, $message = '') * @param string $prefix * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function nullOrNotStartsWith($value, $prefix, $message = '') { @@ -2806,9 +2890,9 @@ public static function nullOrNotStartsWith($value, $prefix, $message = '') * @param string $prefix * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allNotStartsWith($value, $prefix, $message = '') { @@ -2826,9 +2910,9 @@ public static function allNotStartsWith($value, $prefix, $message = '') * @param string $prefix * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allNullOrNotStartsWith($value, $prefix, $message = '') { @@ -2845,9 +2929,9 @@ public static function allNullOrNotStartsWith($value, $prefix, $message = '') * @param mixed $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function nullOrStartsWithLetter($value, $message = '') { @@ -2860,9 +2944,9 @@ public static function nullOrStartsWithLetter($value, $message = '') * @param mixed $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allStartsWithLetter($value, $message = '') { @@ -2879,9 +2963,9 @@ public static function allStartsWithLetter($value, $message = '') * @param mixed $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allNullOrStartsWithLetter($value, $message = '') { @@ -2899,9 +2983,9 @@ public static function allNullOrStartsWithLetter($value, $message = '') * @param string $suffix * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function nullOrEndsWith($value, $suffix, $message = '') { @@ -2913,11 +2997,11 @@ public static function nullOrEndsWith($value, $suffix, $message = '') * * @param iterable $value * @param string $suffix - * @param string $message - * - * @throws InvalidArgumentException + * @param string $message * * @return void + * + * @throws InvalidArgumentException */ public static function allEndsWith($value, $suffix, $message = '') { @@ -2935,9 +3019,9 @@ public static function allEndsWith($value, $suffix, $message = '') * @param string $suffix * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allNullOrEndsWith($value, $suffix, $message = '') { @@ -2955,9 +3039,9 @@ public static function allNullOrEndsWith($value, $suffix, $message = '') * @param string $suffix * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function nullOrNotEndsWith($value, $suffix, $message = '') { @@ -2971,9 +3055,9 @@ public static function nullOrNotEndsWith($value, $suffix, $message = '') * @param string $suffix * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allNotEndsWith($value, $suffix, $message = '') { @@ -2991,9 +3075,9 @@ public static function allNotEndsWith($value, $suffix, $message = '') * @param string $suffix * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allNullOrNotEndsWith($value, $suffix, $message = '') { @@ -3011,9 +3095,9 @@ public static function allNullOrNotEndsWith($value, $suffix, $message = '') * @param string $pattern * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function nullOrRegex($value, $pattern, $message = '') { @@ -3027,9 +3111,9 @@ public static function nullOrRegex($value, $pattern, $message = '') * @param string $pattern * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allRegex($value, $pattern, $message = '') { @@ -3047,9 +3131,9 @@ public static function allRegex($value, $pattern, $message = '') * @param string $pattern * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allNullOrRegex($value, $pattern, $message = '') { @@ -3067,9 +3151,9 @@ public static function allNullOrRegex($value, $pattern, $message = '') * @param string $pattern * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function nullOrNotRegex($value, $pattern, $message = '') { @@ -3083,9 +3167,9 @@ public static function nullOrNotRegex($value, $pattern, $message = '') * @param string $pattern * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allNotRegex($value, $pattern, $message = '') { @@ -3103,9 +3187,9 @@ public static function allNotRegex($value, $pattern, $message = '') * @param string $pattern * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allNullOrNotRegex($value, $pattern, $message = '') { @@ -3122,9 +3206,9 @@ public static function allNullOrNotRegex($value, $pattern, $message = '') * @param mixed $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function nullOrUnicodeLetters($value, $message = '') { @@ -3137,9 +3221,9 @@ public static function nullOrUnicodeLetters($value, $message = '') * @param mixed $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allUnicodeLetters($value, $message = '') { @@ -3156,9 +3240,9 @@ public static function allUnicodeLetters($value, $message = '') * @param mixed $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allNullOrUnicodeLetters($value, $message = '') { @@ -3175,9 +3259,9 @@ public static function allNullOrUnicodeLetters($value, $message = '') * @param mixed $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function nullOrAlpha($value, $message = '') { @@ -3190,9 +3274,9 @@ public static function nullOrAlpha($value, $message = '') * @param mixed $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allAlpha($value, $message = '') { @@ -3209,9 +3293,9 @@ public static function allAlpha($value, $message = '') * @param mixed $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allNullOrAlpha($value, $message = '') { @@ -3228,9 +3312,9 @@ public static function allNullOrAlpha($value, $message = '') * @param string|null $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function nullOrDigits($value, $message = '') { @@ -3243,9 +3327,9 @@ public static function nullOrDigits($value, $message = '') * @param iterable $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allDigits($value, $message = '') { @@ -3262,9 +3346,9 @@ public static function allDigits($value, $message = '') * @param iterable $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allNullOrDigits($value, $message = '') { @@ -3281,9 +3365,9 @@ public static function allNullOrDigits($value, $message = '') * @param string|null $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function nullOrAlnum($value, $message = '') { @@ -3296,9 +3380,9 @@ public static function nullOrAlnum($value, $message = '') * @param iterable $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allAlnum($value, $message = '') { @@ -3315,9 +3399,9 @@ public static function allAlnum($value, $message = '') * @param iterable $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allNullOrAlnum($value, $message = '') { @@ -3330,14 +3414,15 @@ public static function allNullOrAlnum($value, $message = '') /** * @psalm-pure + * * @psalm-assert lowercase-string|null $value * * @param string|null $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function nullOrLower($value, $message = '') { @@ -3346,14 +3431,15 @@ public static function nullOrLower($value, $message = '') /** * @psalm-pure + * * @psalm-assert iterable $value * * @param iterable $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allLower($value, $message = '') { @@ -3366,14 +3452,15 @@ public static function allLower($value, $message = '') /** * @psalm-pure + * * @psalm-assert iterable $value * * @param iterable $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allNullOrLower($value, $message = '') { @@ -3390,9 +3477,9 @@ public static function allNullOrLower($value, $message = '') * @param string|null $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function nullOrUpper($value, $message = '') { @@ -3405,9 +3492,9 @@ public static function nullOrUpper($value, $message = '') * @param iterable $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allUpper($value, $message = '') { @@ -3420,14 +3507,15 @@ public static function allUpper($value, $message = '') /** * @psalm-pure + * * @psalm-assert iterable $value * * @param iterable $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allNullOrUpper($value, $message = '') { @@ -3445,9 +3533,9 @@ public static function allNullOrUpper($value, $message = '') * @param int $length * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function nullOrLength($value, $length, $message = '') { @@ -3461,9 +3549,9 @@ public static function nullOrLength($value, $length, $message = '') * @param int $length * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allLength($value, $length, $message = '') { @@ -3481,9 +3569,9 @@ public static function allLength($value, $length, $message = '') * @param int $length * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allNullOrLength($value, $length, $message = '') { @@ -3501,9 +3589,9 @@ public static function allNullOrLength($value, $length, $message = '') * @param int|float $min * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function nullOrMinLength($value, $min, $message = '') { @@ -3517,9 +3605,9 @@ public static function nullOrMinLength($value, $min, $message = '') * @param int|float $min * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allMinLength($value, $min, $message = '') { @@ -3537,9 +3625,9 @@ public static function allMinLength($value, $min, $message = '') * @param int|float $min * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allNullOrMinLength($value, $min, $message = '') { @@ -3557,9 +3645,9 @@ public static function allNullOrMinLength($value, $min, $message = '') * @param int|float $max * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function nullOrMaxLength($value, $max, $message = '') { @@ -3573,9 +3661,9 @@ public static function nullOrMaxLength($value, $max, $message = '') * @param int|float $max * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allMaxLength($value, $max, $message = '') { @@ -3593,9 +3681,9 @@ public static function allMaxLength($value, $max, $message = '') * @param int|float $max * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allNullOrMaxLength($value, $max, $message = '') { @@ -3614,9 +3702,9 @@ public static function allNullOrMaxLength($value, $max, $message = '') * @param int|float $max * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function nullOrLengthBetween($value, $min, $max, $message = '') { @@ -3631,9 +3719,9 @@ public static function nullOrLengthBetween($value, $min, $max, $message = '') * @param int|float $max * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allLengthBetween($value, $min, $max, $message = '') { @@ -3652,9 +3740,9 @@ public static function allLengthBetween($value, $min, $max, $message = '') * @param int|float $max * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allNullOrLengthBetween($value, $min, $max, $message = '') { @@ -3669,9 +3757,9 @@ public static function allNullOrLengthBetween($value, $min, $max, $message = '') * @param mixed $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function nullOrFileExists($value, $message = '') { @@ -3682,9 +3770,9 @@ public static function nullOrFileExists($value, $message = '') * @param mixed $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allFileExists($value, $message = '') { @@ -3699,9 +3787,9 @@ public static function allFileExists($value, $message = '') * @param mixed $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allNullOrFileExists($value, $message = '') { @@ -3716,9 +3804,9 @@ public static function allNullOrFileExists($value, $message = '') * @param mixed $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function nullOrFile($value, $message = '') { @@ -3729,9 +3817,9 @@ public static function nullOrFile($value, $message = '') * @param mixed $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allFile($value, $message = '') { @@ -3746,9 +3834,9 @@ public static function allFile($value, $message = '') * @param mixed $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allNullOrFile($value, $message = '') { @@ -3763,9 +3851,9 @@ public static function allNullOrFile($value, $message = '') * @param mixed $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function nullOrDirectory($value, $message = '') { @@ -3776,9 +3864,9 @@ public static function nullOrDirectory($value, $message = '') * @param mixed $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allDirectory($value, $message = '') { @@ -3793,9 +3881,9 @@ public static function allDirectory($value, $message = '') * @param mixed $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allNullOrDirectory($value, $message = '') { @@ -3810,9 +3898,9 @@ public static function allNullOrDirectory($value, $message = '') * @param string|null $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function nullOrReadable($value, $message = '') { @@ -3823,9 +3911,9 @@ public static function nullOrReadable($value, $message = '') * @param iterable $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allReadable($value, $message = '') { @@ -3840,9 +3928,9 @@ public static function allReadable($value, $message = '') * @param iterable $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allNullOrReadable($value, $message = '') { @@ -3857,9 +3945,9 @@ public static function allNullOrReadable($value, $message = '') * @param string|null $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function nullOrWritable($value, $message = '') { @@ -3870,9 +3958,9 @@ public static function nullOrWritable($value, $message = '') * @param iterable $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allWritable($value, $message = '') { @@ -3887,9 +3975,9 @@ public static function allWritable($value, $message = '') * @param iterable $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allNullOrWritable($value, $message = '') { @@ -3906,9 +3994,9 @@ public static function allNullOrWritable($value, $message = '') * @param mixed $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function nullOrClassExists($value, $message = '') { @@ -3921,9 +4009,9 @@ public static function nullOrClassExists($value, $message = '') * @param mixed $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allClassExists($value, $message = '') { @@ -3940,9 +4028,9 @@ public static function allClassExists($value, $message = '') * @param mixed $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allNullOrClassExists($value, $message = '') { @@ -3955,6 +4043,7 @@ public static function allNullOrClassExists($value, $message = '') /** * @psalm-pure + * * @psalm-template ExpectedType of object * @psalm-param class-string $class * @psalm-assert class-string|ExpectedType|null $value @@ -3963,9 +4052,9 @@ public static function allNullOrClassExists($value, $message = '') * @param string|object $class * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function nullOrSubclassOf($value, $class, $message = '') { @@ -3974,6 +4063,7 @@ public static function nullOrSubclassOf($value, $class, $message = '') /** * @psalm-pure + * * @psalm-template ExpectedType of object * @psalm-param class-string $class * @psalm-assert iterable|ExpectedType> $value @@ -3982,9 +4072,9 @@ public static function nullOrSubclassOf($value, $class, $message = '') * @param string|object $class * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allSubclassOf($value, $class, $message = '') { @@ -3997,6 +4087,7 @@ public static function allSubclassOf($value, $class, $message = '') /** * @psalm-pure + * * @psalm-template ExpectedType of object * @psalm-param class-string $class * @psalm-assert iterable|ExpectedType|null> $value @@ -4005,9 +4096,9 @@ public static function allSubclassOf($value, $class, $message = '') * @param string|object $class * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allNullOrSubclassOf($value, $class, $message = '') { @@ -4024,9 +4115,9 @@ public static function allNullOrSubclassOf($value, $class, $message = '') * @param mixed $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function nullOrInterfaceExists($value, $message = '') { @@ -4039,9 +4130,9 @@ public static function nullOrInterfaceExists($value, $message = '') * @param mixed $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allInterfaceExists($value, $message = '') { @@ -4058,9 +4149,9 @@ public static function allInterfaceExists($value, $message = '') * @param mixed $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allNullOrInterfaceExists($value, $message = '') { @@ -4073,6 +4164,7 @@ public static function allNullOrInterfaceExists($value, $message = '') /** * @psalm-pure + * * @psalm-template ExpectedType of object * @psalm-param class-string $interface * @psalm-assert class-string|null $value @@ -4081,9 +4173,9 @@ public static function allNullOrInterfaceExists($value, $message = '') * @param mixed $interface * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function nullOrImplementsInterface($value, $interface, $message = '') { @@ -4092,6 +4184,7 @@ public static function nullOrImplementsInterface($value, $interface, $message = /** * @psalm-pure + * * @psalm-template ExpectedType of object * @psalm-param class-string $interface * @psalm-assert iterable> $value @@ -4100,9 +4193,9 @@ public static function nullOrImplementsInterface($value, $interface, $message = * @param mixed $interface * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allImplementsInterface($value, $interface, $message = '') { @@ -4115,6 +4208,7 @@ public static function allImplementsInterface($value, $interface, $message = '') /** * @psalm-pure + * * @psalm-template ExpectedType of object * @psalm-param class-string $interface * @psalm-assert iterable|null> $value @@ -4123,9 +4217,9 @@ public static function allImplementsInterface($value, $interface, $message = '') * @param mixed $interface * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allNullOrImplementsInterface($value, $interface, $message = '') { @@ -4138,15 +4232,16 @@ public static function allNullOrImplementsInterface($value, $interface, $message /** * @psalm-pure + * * @psalm-param class-string|object|null $classOrObject * * @param string|object|null $classOrObject * @param mixed $property * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function nullOrPropertyExists($classOrObject, $property, $message = '') { @@ -4155,15 +4250,16 @@ public static function nullOrPropertyExists($classOrObject, $property, $message /** * @psalm-pure + * * @psalm-param iterable $classOrObject * * @param iterable $classOrObject * @param mixed $property * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allPropertyExists($classOrObject, $property, $message = '') { @@ -4176,15 +4272,16 @@ public static function allPropertyExists($classOrObject, $property, $message = ' /** * @psalm-pure + * * @psalm-param iterable $classOrObject * * @param iterable $classOrObject * @param mixed $property * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allNullOrPropertyExists($classOrObject, $property, $message = '') { @@ -4197,15 +4294,16 @@ public static function allNullOrPropertyExists($classOrObject, $property, $messa /** * @psalm-pure + * * @psalm-param class-string|object|null $classOrObject * * @param string|object|null $classOrObject * @param mixed $property * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function nullOrPropertyNotExists($classOrObject, $property, $message = '') { @@ -4214,15 +4312,16 @@ public static function nullOrPropertyNotExists($classOrObject, $property, $messa /** * @psalm-pure + * * @psalm-param iterable $classOrObject * * @param iterable $classOrObject * @param mixed $property * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allPropertyNotExists($classOrObject, $property, $message = '') { @@ -4235,15 +4334,16 @@ public static function allPropertyNotExists($classOrObject, $property, $message /** * @psalm-pure + * * @psalm-param iterable $classOrObject * * @param iterable $classOrObject * @param mixed $property * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allNullOrPropertyNotExists($classOrObject, $property, $message = '') { @@ -4256,15 +4356,16 @@ public static function allNullOrPropertyNotExists($classOrObject, $property, $me /** * @psalm-pure + * * @psalm-param class-string|object|null $classOrObject * * @param string|object|null $classOrObject * @param mixed $method * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function nullOrMethodExists($classOrObject, $method, $message = '') { @@ -4273,15 +4374,16 @@ public static function nullOrMethodExists($classOrObject, $method, $message = '' /** * @psalm-pure + * * @psalm-param iterable $classOrObject * * @param iterable $classOrObject * @param mixed $method * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allMethodExists($classOrObject, $method, $message = '') { @@ -4294,15 +4396,16 @@ public static function allMethodExists($classOrObject, $method, $message = '') /** * @psalm-pure + * * @psalm-param iterable $classOrObject * * @param iterable $classOrObject * @param mixed $method * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allNullOrMethodExists($classOrObject, $method, $message = '') { @@ -4315,15 +4418,16 @@ public static function allNullOrMethodExists($classOrObject, $method, $message = /** * @psalm-pure + * * @psalm-param class-string|object|null $classOrObject * * @param string|object|null $classOrObject * @param mixed $method * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function nullOrMethodNotExists($classOrObject, $method, $message = '') { @@ -4332,15 +4436,16 @@ public static function nullOrMethodNotExists($classOrObject, $method, $message = /** * @psalm-pure + * * @psalm-param iterable $classOrObject * * @param iterable $classOrObject * @param mixed $method * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allMethodNotExists($classOrObject, $method, $message = '') { @@ -4353,15 +4458,16 @@ public static function allMethodNotExists($classOrObject, $method, $message = '' /** * @psalm-pure + * * @psalm-param iterable $classOrObject * * @param iterable $classOrObject * @param mixed $method * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allNullOrMethodNotExists($classOrObject, $method, $message = '') { @@ -4379,9 +4485,9 @@ public static function allNullOrMethodNotExists($classOrObject, $method, $messag * @param string|int $key * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function nullOrKeyExists($array, $key, $message = '') { @@ -4395,9 +4501,9 @@ public static function nullOrKeyExists($array, $key, $message = '') * @param string|int $key * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allKeyExists($array, $key, $message = '') { @@ -4415,9 +4521,9 @@ public static function allKeyExists($array, $key, $message = '') * @param string|int $key * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allNullOrKeyExists($array, $key, $message = '') { @@ -4435,9 +4541,9 @@ public static function allNullOrKeyExists($array, $key, $message = '') * @param string|int $key * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function nullOrKeyNotExists($array, $key, $message = '') { @@ -4451,9 +4557,9 @@ public static function nullOrKeyNotExists($array, $key, $message = '') * @param string|int $key * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allKeyNotExists($array, $key, $message = '') { @@ -4471,9 +4577,9 @@ public static function allKeyNotExists($array, $key, $message = '') * @param string|int $key * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allNullOrKeyNotExists($array, $key, $message = '') { @@ -4486,14 +4592,15 @@ public static function allNullOrKeyNotExists($array, $key, $message = '') /** * @psalm-pure + * * @psalm-assert array-key|null $value * * @param mixed $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function nullOrValidArrayKey($value, $message = '') { @@ -4502,14 +4609,15 @@ public static function nullOrValidArrayKey($value, $message = '') /** * @psalm-pure + * * @psalm-assert iterable $value * * @param mixed $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allValidArrayKey($value, $message = '') { @@ -4522,14 +4630,15 @@ public static function allValidArrayKey($value, $message = '') /** * @psalm-pure + * * @psalm-assert iterable $value * * @param mixed $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allNullOrValidArrayKey($value, $message = '') { @@ -4545,9 +4654,9 @@ public static function allNullOrValidArrayKey($value, $message = '') * @param int $number * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function nullOrCount($array, $number, $message = '') { @@ -4559,9 +4668,9 @@ public static function nullOrCount($array, $number, $message = '') * @param int $number * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allCount($array, $number, $message = '') { @@ -4577,9 +4686,9 @@ public static function allCount($array, $number, $message = '') * @param int $number * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allNullOrCount($array, $number, $message = '') { @@ -4595,9 +4704,9 @@ public static function allNullOrCount($array, $number, $message = '') * @param int|float $min * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function nullOrMinCount($array, $min, $message = '') { @@ -4609,9 +4718,9 @@ public static function nullOrMinCount($array, $min, $message = '') * @param int|float $min * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allMinCount($array, $min, $message = '') { @@ -4627,9 +4736,9 @@ public static function allMinCount($array, $min, $message = '') * @param int|float $min * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allNullOrMinCount($array, $min, $message = '') { @@ -4645,9 +4754,9 @@ public static function allNullOrMinCount($array, $min, $message = '') * @param int|float $max * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function nullOrMaxCount($array, $max, $message = '') { @@ -4659,9 +4768,9 @@ public static function nullOrMaxCount($array, $max, $message = '') * @param int|float $max * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allMaxCount($array, $max, $message = '') { @@ -4677,9 +4786,9 @@ public static function allMaxCount($array, $max, $message = '') * @param int|float $max * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allNullOrMaxCount($array, $max, $message = '') { @@ -4696,9 +4805,9 @@ public static function allNullOrMaxCount($array, $max, $message = '') * @param int|float $max * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function nullOrCountBetween($array, $min, $max, $message = '') { @@ -4711,9 +4820,9 @@ public static function nullOrCountBetween($array, $min, $max, $message = '') * @param int|float $max * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allCountBetween($array, $min, $max, $message = '') { @@ -4730,9 +4839,9 @@ public static function allCountBetween($array, $min, $max, $message = '') * @param int|float $max * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allNullOrCountBetween($array, $min, $max, $message = '') { @@ -4745,14 +4854,15 @@ public static function allNullOrCountBetween($array, $min, $max, $message = '') /** * @psalm-pure + * * @psalm-assert list|null $array * * @param mixed $array * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function nullOrIsList($array, $message = '') { @@ -4761,14 +4871,15 @@ public static function nullOrIsList($array, $message = '') /** * @psalm-pure + * * @psalm-assert iterable $array * * @param mixed $array * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allIsList($array, $message = '') { @@ -4781,14 +4892,15 @@ public static function allIsList($array, $message = '') /** * @psalm-pure + * * @psalm-assert iterable $array * * @param mixed $array * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allNullOrIsList($array, $message = '') { @@ -4801,14 +4913,15 @@ public static function allNullOrIsList($array, $message = '') /** * @psalm-pure + * * @psalm-assert non-empty-list|null $array * * @param mixed $array * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function nullOrIsNonEmptyList($array, $message = '') { @@ -4817,14 +4930,15 @@ public static function nullOrIsNonEmptyList($array, $message = '') /** * @psalm-pure + * * @psalm-assert iterable $array * * @param mixed $array * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allIsNonEmptyList($array, $message = '') { @@ -4837,14 +4951,15 @@ public static function allIsNonEmptyList($array, $message = '') /** * @psalm-pure + * * @psalm-assert iterable $array * * @param mixed $array * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allNullOrIsNonEmptyList($array, $message = '') { @@ -4857,6 +4972,7 @@ public static function allNullOrIsNonEmptyList($array, $message = '') /** * @psalm-pure + * * @psalm-template T * @psalm-param mixed|array|null $array * @psalm-assert array|null $array @@ -4864,9 +4980,9 @@ public static function allNullOrIsNonEmptyList($array, $message = '') * @param mixed $array * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function nullOrIsMap($array, $message = '') { @@ -4875,6 +4991,7 @@ public static function nullOrIsMap($array, $message = '') /** * @psalm-pure + * * @psalm-template T * @psalm-param iterable> $array * @psalm-assert iterable> $array @@ -4882,9 +4999,9 @@ public static function nullOrIsMap($array, $message = '') * @param mixed $array * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allIsMap($array, $message = '') { @@ -4897,6 +5014,7 @@ public static function allIsMap($array, $message = '') /** * @psalm-pure + * * @psalm-template T * @psalm-param iterable|null> $array * @psalm-assert iterable|null> $array @@ -4904,9 +5022,9 @@ public static function allIsMap($array, $message = '') * @param mixed $array * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allNullOrIsMap($array, $message = '') { @@ -4919,15 +5037,16 @@ public static function allNullOrIsMap($array, $message = '') /** * @psalm-pure + * * @psalm-template T * @psalm-param mixed|array|null $array * * @param mixed $array * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function nullOrIsNonEmptyMap($array, $message = '') { @@ -4936,15 +5055,16 @@ public static function nullOrIsNonEmptyMap($array, $message = '') /** * @psalm-pure + * * @psalm-template T * @psalm-param iterable> $array * * @param mixed $array * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allIsNonEmptyMap($array, $message = '') { @@ -4957,6 +5077,7 @@ public static function allIsNonEmptyMap($array, $message = '') /** * @psalm-pure + * * @psalm-template T * @psalm-param iterable|null> $array * @psalm-assert iterable|null> $array @@ -4965,9 +5086,9 @@ public static function allIsNonEmptyMap($array, $message = '') * @param mixed $array * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allNullOrIsNonEmptyMap($array, $message = '') { @@ -4984,9 +5105,9 @@ public static function allNullOrIsNonEmptyMap($array, $message = '') * @param string|null $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function nullOrUuid($value, $message = '') { @@ -4999,9 +5120,9 @@ public static function nullOrUuid($value, $message = '') * @param iterable $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allUuid($value, $message = '') { @@ -5018,9 +5139,9 @@ public static function allUuid($value, $message = '') * @param iterable $value * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allNullOrUuid($value, $message = '') { @@ -5038,9 +5159,9 @@ public static function allNullOrUuid($value, $message = '') * @param string $class * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function nullOrThrows($expression, $class = 'Exception', $message = '') { @@ -5054,9 +5175,9 @@ public static function nullOrThrows($expression, $class = 'Exception', $message * @param string $class * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allThrows($expression, $class = 'Exception', $message = '') { @@ -5074,9 +5195,9 @@ public static function allThrows($expression, $class = 'Exception', $message = ' * @param string $class * @param string $message * - * @throws InvalidArgumentException - * * @return void + * + * @throws InvalidArgumentException */ public static function allNullOrThrows($expression, $class = 'Exception', $message = '') { diff --git a/tests/AssertTest.php b/tests/AssertTest.php index 567fddfb..f094d791 100644 --- a/tests/AssertTest.php +++ b/tests/AssertTest.php @@ -13,11 +13,13 @@ use ArrayIterator; use ArrayObject; +use DateTime; use Error; use Exception; use LogicException; use PHPUnit\Framework\TestCase; use RuntimeException; +use SimpleXMLElement; use stdClass; use Webmozart\Assert\Assert; @@ -142,7 +144,7 @@ public function getTests() array('isCountable', array(array(1, 2)), true), array('isCountable', array(new ArrayIterator(array())), true), array('isCountable', array(new stdClass()), false), - array('isCountable', array(new \SimpleXMLElement('bar')), true), + array('isCountable', array(new SimpleXMLElement('bar')), true), array('isCountable', array('abcd'), false), array('isCountable', array(123), false), array('isIterable', array(array()), true), @@ -758,7 +760,7 @@ public function getStringConversions() array('eq', array(new ArrayIterator(array()), new stdClass()), 'Expected a value equal to stdClass. Got: ArrayIterator'), array('eq', array(1, self::getResource()), 'Expected a value equal to resource. Got: 1'), - array('lessThan', array(new \DateTime('2020-01-01 00:00:00+00:00'), new \DateTime('1999-01-01 00:00:00+00:00')), 'Expected a value less than DateTime: "1999-01-01T00:00:00+00:00". Got: DateTime: "2020-01-01T00:00:00+00:00"'), + array('lessThan', array(new DateTime('2020-01-01 00:00:00+00:00'), new DateTime('1999-01-01 00:00:00+00:00')), 'Expected a value less than DateTime: "1999-01-01T00:00:00+00:00". Got: DateTime: "2020-01-01T00:00:00+00:00"'), ); } @@ -803,7 +805,7 @@ public function getInvalidIsAOfCases(): iterable ); yield array( - array(new \stdClass(), 'Iterator'), + array(new stdClass(), 'Iterator'), 'Expected an instance of this class or to this class among its parents "Iterator". Got: stdClass', ); } diff --git a/tests/ProjectCodeTest.php b/tests/ProjectCodeTest.php index 3e8ef638..fb190384 100644 --- a/tests/ProjectCodeTest.php +++ b/tests/ProjectCodeTest.php @@ -152,8 +152,8 @@ public function testHasCorrespondingStaticAnalysisFile($method) public function testMixinIsUpToDateVersion() { - if (version_compare(PHP_VERSION, '7.2.0') < 0) { - $this->markTestSkipped('mixin generator is implemented using php 7.2 features'); + if (PHP_OS_FAMILY === 'Windows') { + $this->markTestSkipped('mixin generator is not expected to run on Windows'); return; } diff --git a/tests/static-analysis/assert-isCountable.php b/tests/static-analysis/assert-isCountable.php index 15b0d358..ff5963a4 100644 --- a/tests/static-analysis/assert-isCountable.php +++ b/tests/static-analysis/assert-isCountable.php @@ -2,7 +2,7 @@ namespace Webmozart\Assert\Tests\StaticAnalysis; -use Countable; +use countable; use Webmozart\Assert\Assert; /** diff --git a/tests/static-analysis/assert-isList.php b/tests/static-analysis/assert-isList.php index 1c05fb8e..fe1157a8 100644 --- a/tests/static-analysis/assert-isList.php +++ b/tests/static-analysis/assert-isList.php @@ -2,6 +2,7 @@ namespace Webmozart\Assert\Tests\StaticAnalysis; +use stdClass; use Webmozart\Assert\Assert; /** @@ -21,9 +22,9 @@ function isList($value): array /** * @psalm-pure * - * @param array<\stdClass> $value + * @param array $value * - * @return list<\stdClass> + * @return list */ function isListWithKnownType(array $value): array { diff --git a/tests/static-analysis/assert-isMap.php b/tests/static-analysis/assert-isMap.php index ceff6480..0ec52e5a 100644 --- a/tests/static-analysis/assert-isMap.php +++ b/tests/static-analysis/assert-isMap.php @@ -2,6 +2,7 @@ namespace Webmozart\Assert\Tests\StaticAnalysis; +use stdClass; use Webmozart\Assert\Assert; /** @@ -23,9 +24,9 @@ function isMap($value): array * * @psalm-pure * - * @param array $value + * @param array $value * - * @return array + * @return array */ function isMapWithKnownType(array $value): array { diff --git a/tests/static-analysis/assert-isNonEmptyMap.php b/tests/static-analysis/assert-isNonEmptyMap.php index 9a6ecd03..ccb4e8f2 100644 --- a/tests/static-analysis/assert-isNonEmptyMap.php +++ b/tests/static-analysis/assert-isNonEmptyMap.php @@ -2,6 +2,7 @@ namespace Webmozart\Assert\Tests\StaticAnalysis; +use stdClass; use Webmozart\Assert\Assert; /** @@ -23,9 +24,9 @@ function isNonEmptyMap($value): array * * @psalm-pure * - * @param array $value + * @param array $value * - * @return array + * @return array */ function isNonEmptyMapWithKnownType(array $value): array { diff --git a/tests/static-analysis/assert-notInstanceOf.php b/tests/static-analysis/assert-notInstanceOf.php index f2db6b56..3dbdfaff 100644 --- a/tests/static-analysis/assert-notInstanceOf.php +++ b/tests/static-analysis/assert-notInstanceOf.php @@ -20,6 +20,7 @@ function notInstanceOf($value): DateTime /** * @psalm-pure + * * @psalm-template T of object * * @param mixed $value @@ -36,6 +37,7 @@ function nullOrNotInstanceOf($value, $class) /** * @psalm-pure + * * @psalm-template T of object * * @param mixed $value @@ -52,6 +54,7 @@ function allNotInstanceOf($value, $class) /** * @psalm-pure + * * @psalm-template T of object * * @param mixed $value diff --git a/tools/php-cs-fixer/composer.json b/tools/php-cs-fixer/composer.json new file mode 100644 index 00000000..d4b64129 --- /dev/null +++ b/tools/php-cs-fixer/composer.json @@ -0,0 +1,5 @@ +{ + "require-dev": { + "friendsofphp/php-cs-fixer": "^3.64" + } +} diff --git a/tools/php-cs-fixer/composer.lock b/tools/php-cs-fixer/composer.lock new file mode 100644 index 00000000..ff8ffe2b --- /dev/null +++ b/tools/php-cs-fixer/composer.lock @@ -0,0 +1,2550 @@ +{ + "_readme": [ + "This file locks the dependencies of your project to a known state", + "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", + "This file is @generated automatically" + ], + "content-hash": "effcd452310b5d659e4aca51ac41579a", + "packages": [], + "packages-dev": [ + { + "name": "clue/ndjson-react", + "version": "v1.3.0", + "source": { + "type": "git", + "url": "https://github.com/clue/reactphp-ndjson.git", + "reference": "392dc165fce93b5bb5c637b67e59619223c931b0" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/clue/reactphp-ndjson/zipball/392dc165fce93b5bb5c637b67e59619223c931b0", + "reference": "392dc165fce93b5bb5c637b67e59619223c931b0", + "shasum": "" + }, + "require": { + "php": ">=5.3", + "react/stream": "^1.2" + }, + "require-dev": { + "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35", + "react/event-loop": "^1.2" + }, + "type": "library", + "autoload": { + "psr-4": { + "Clue\\React\\NDJson\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Christian Lück", + "email": "christian@clue.engineering" + } + ], + "description": "Streaming newline-delimited JSON (NDJSON) parser and encoder for ReactPHP.", + "homepage": "https://github.com/clue/reactphp-ndjson", + "keywords": [ + "NDJSON", + "json", + "jsonlines", + "newline", + "reactphp", + "streaming" + ], + "support": { + "issues": "https://github.com/clue/reactphp-ndjson/issues", + "source": "https://github.com/clue/reactphp-ndjson/tree/v1.3.0" + }, + "funding": [ + { + "url": "https://clue.engineering/support", + "type": "custom" + }, + { + "url": "https://github.com/clue", + "type": "github" + } + ], + "time": "2022-12-23T10:58:28+00:00" + }, + { + "name": "composer/pcre", + "version": "3.3.1", + "source": { + "type": "git", + "url": "https://github.com/composer/pcre.git", + "reference": "63aaeac21d7e775ff9bc9d45021e1745c97521c4" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/composer/pcre/zipball/63aaeac21d7e775ff9bc9d45021e1745c97521c4", + "reference": "63aaeac21d7e775ff9bc9d45021e1745c97521c4", + "shasum": "" + }, + "require": { + "php": "^7.4 || ^8.0" + }, + "conflict": { + "phpstan/phpstan": "<1.11.10" + }, + "require-dev": { + "phpstan/phpstan": "^1.11.10", + "phpstan/phpstan-strict-rules": "^1.1", + "phpunit/phpunit": "^8 || ^9" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "3.x-dev" + }, + "phpstan": { + "includes": [ + "extension.neon" + ] + } + }, + "autoload": { + "psr-4": { + "Composer\\Pcre\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Jordi Boggiano", + "email": "j.boggiano@seld.be", + "homepage": "http://seld.be" + } + ], + "description": "PCRE wrapping library that offers type-safe preg_* replacements.", + "keywords": [ + "PCRE", + "preg", + "regex", + "regular expression" + ], + "support": { + "issues": "https://github.com/composer/pcre/issues", + "source": "https://github.com/composer/pcre/tree/3.3.1" + }, + "funding": [ + { + "url": "https://packagist.com", + "type": "custom" + }, + { + "url": "https://github.com/composer", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/composer/composer", + "type": "tidelift" + } + ], + "time": "2024-08-27T18:44:43+00:00" + }, + { + "name": "composer/semver", + "version": "3.4.3", + "source": { + "type": "git", + "url": "https://github.com/composer/semver.git", + "reference": "4313d26ada5e0c4edfbd1dc481a92ff7bff91f12" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/composer/semver/zipball/4313d26ada5e0c4edfbd1dc481a92ff7bff91f12", + "reference": "4313d26ada5e0c4edfbd1dc481a92ff7bff91f12", + "shasum": "" + }, + "require": { + "php": "^5.3.2 || ^7.0 || ^8.0" + }, + "require-dev": { + "phpstan/phpstan": "^1.11", + "symfony/phpunit-bridge": "^3 || ^7" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "3.x-dev" + } + }, + "autoload": { + "psr-4": { + "Composer\\Semver\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nils Adermann", + "email": "naderman@naderman.de", + "homepage": "http://www.naderman.de" + }, + { + "name": "Jordi Boggiano", + "email": "j.boggiano@seld.be", + "homepage": "http://seld.be" + }, + { + "name": "Rob Bast", + "email": "rob.bast@gmail.com", + "homepage": "http://robbast.nl" + } + ], + "description": "Semver library that offers utilities, version constraint parsing and validation.", + "keywords": [ + "semantic", + "semver", + "validation", + "versioning" + ], + "support": { + "irc": "ircs://irc.libera.chat:6697/composer", + "issues": "https://github.com/composer/semver/issues", + "source": "https://github.com/composer/semver/tree/3.4.3" + }, + "funding": [ + { + "url": "https://packagist.com", + "type": "custom" + }, + { + "url": "https://github.com/composer", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/composer/composer", + "type": "tidelift" + } + ], + "time": "2024-09-19T14:15:21+00:00" + }, + { + "name": "composer/xdebug-handler", + "version": "3.0.5", + "source": { + "type": "git", + "url": "https://github.com/composer/xdebug-handler.git", + "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/6c1925561632e83d60a44492e0b344cf48ab85ef", + "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef", + "shasum": "" + }, + "require": { + "composer/pcre": "^1 || ^2 || ^3", + "php": "^7.2.5 || ^8.0", + "psr/log": "^1 || ^2 || ^3" + }, + "require-dev": { + "phpstan/phpstan": "^1.0", + "phpstan/phpstan-strict-rules": "^1.1", + "phpunit/phpunit": "^8.5 || ^9.6 || ^10.5" + }, + "type": "library", + "autoload": { + "psr-4": { + "Composer\\XdebugHandler\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "John Stevenson", + "email": "john-stevenson@blueyonder.co.uk" + } + ], + "description": "Restarts a process without Xdebug.", + "keywords": [ + "Xdebug", + "performance" + ], + "support": { + "irc": "ircs://irc.libera.chat:6697/composer", + "issues": "https://github.com/composer/xdebug-handler/issues", + "source": "https://github.com/composer/xdebug-handler/tree/3.0.5" + }, + "funding": [ + { + "url": "https://packagist.com", + "type": "custom" + }, + { + "url": "https://github.com/composer", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/composer/composer", + "type": "tidelift" + } + ], + "time": "2024-05-06T16:37:16+00:00" + }, + { + "name": "evenement/evenement", + "version": "v3.0.2", + "source": { + "type": "git", + "url": "https://github.com/igorw/evenement.git", + "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/igorw/evenement/zipball/0a16b0d71ab13284339abb99d9d2bd813640efbc", + "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc", + "shasum": "" + }, + "require": { + "php": ">=7.0" + }, + "require-dev": { + "phpunit/phpunit": "^9 || ^6" + }, + "type": "library", + "autoload": { + "psr-4": { + "Evenement\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Igor Wiedler", + "email": "igor@wiedler.ch" + } + ], + "description": "Événement is a very simple event dispatching library for PHP", + "keywords": [ + "event-dispatcher", + "event-emitter" + ], + "support": { + "issues": "https://github.com/igorw/evenement/issues", + "source": "https://github.com/igorw/evenement/tree/v3.0.2" + }, + "time": "2023-08-08T05:53:35+00:00" + }, + { + "name": "fidry/cpu-core-counter", + "version": "1.2.0", + "source": { + "type": "git", + "url": "https://github.com/theofidry/cpu-core-counter.git", + "reference": "8520451a140d3f46ac33042715115e290cf5785f" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/theofidry/cpu-core-counter/zipball/8520451a140d3f46ac33042715115e290cf5785f", + "reference": "8520451a140d3f46ac33042715115e290cf5785f", + "shasum": "" + }, + "require": { + "php": "^7.2 || ^8.0" + }, + "require-dev": { + "fidry/makefile": "^0.2.0", + "fidry/php-cs-fixer-config": "^1.1.2", + "phpstan/extension-installer": "^1.2.0", + "phpstan/phpstan": "^1.9.2", + "phpstan/phpstan-deprecation-rules": "^1.0.0", + "phpstan/phpstan-phpunit": "^1.2.2", + "phpstan/phpstan-strict-rules": "^1.4.4", + "phpunit/phpunit": "^8.5.31 || ^9.5.26", + "webmozarts/strict-phpunit": "^7.5" + }, + "type": "library", + "autoload": { + "psr-4": { + "Fidry\\CpuCoreCounter\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Théo FIDRY", + "email": "theo.fidry@gmail.com" + } + ], + "description": "Tiny utility to get the number of CPU cores.", + "keywords": [ + "CPU", + "core" + ], + "support": { + "issues": "https://github.com/theofidry/cpu-core-counter/issues", + "source": "https://github.com/theofidry/cpu-core-counter/tree/1.2.0" + }, + "funding": [ + { + "url": "https://github.com/theofidry", + "type": "github" + } + ], + "time": "2024-08-06T10:04:20+00:00" + }, + { + "name": "friendsofphp/php-cs-fixer", + "version": "v3.64.0", + "source": { + "type": "git", + "url": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer.git", + "reference": "58dd9c931c785a79739310aef5178928305ffa67" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/PHP-CS-Fixer/PHP-CS-Fixer/zipball/58dd9c931c785a79739310aef5178928305ffa67", + "reference": "58dd9c931c785a79739310aef5178928305ffa67", + "shasum": "" + }, + "require": { + "clue/ndjson-react": "^1.0", + "composer/semver": "^3.4", + "composer/xdebug-handler": "^3.0.3", + "ext-filter": "*", + "ext-json": "*", + "ext-tokenizer": "*", + "fidry/cpu-core-counter": "^1.0", + "php": "^7.4 || ^8.0", + "react/child-process": "^0.6.5", + "react/event-loop": "^1.0", + "react/promise": "^2.0 || ^3.0", + "react/socket": "^1.0", + "react/stream": "^1.0", + "sebastian/diff": "^4.0 || ^5.0 || ^6.0", + "symfony/console": "^5.4 || ^6.0 || ^7.0", + "symfony/event-dispatcher": "^5.4 || ^6.0 || ^7.0", + "symfony/filesystem": "^5.4 || ^6.0 || ^7.0", + "symfony/finder": "^5.4 || ^6.0 || ^7.0", + "symfony/options-resolver": "^5.4 || ^6.0 || ^7.0", + "symfony/polyfill-mbstring": "^1.28", + "symfony/polyfill-php80": "^1.28", + "symfony/polyfill-php81": "^1.28", + "symfony/process": "^5.4 || ^6.0 || ^7.0", + "symfony/stopwatch": "^5.4 || ^6.0 || ^7.0" + }, + "require-dev": { + "facile-it/paraunit": "^1.3 || ^2.3", + "infection/infection": "^0.29.5", + "justinrainbow/json-schema": "^5.2", + "keradus/cli-executor": "^2.1", + "mikey179/vfsstream": "^1.6.11", + "php-coveralls/php-coveralls": "^2.7", + "php-cs-fixer/accessible-object": "^1.1", + "php-cs-fixer/phpunit-constraint-isidenticalstring": "^1.5", + "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "^1.5", + "phpunit/phpunit": "^9.6.19 || ^10.5.21 || ^11.2", + "symfony/var-dumper": "^5.4 || ^6.0 || ^7.0", + "symfony/yaml": "^5.4 || ^6.0 || ^7.0" + }, + "suggest": { + "ext-dom": "For handling output formats in XML", + "ext-mbstring": "For handling non-UTF8 characters." + }, + "bin": [ + "php-cs-fixer" + ], + "type": "application", + "autoload": { + "psr-4": { + "PhpCsFixer\\": "src/" + }, + "exclude-from-classmap": [ + "src/Fixer/Internal/*" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Dariusz Rumiński", + "email": "dariusz.ruminski@gmail.com" + } + ], + "description": "A tool to automatically fix PHP code style", + "keywords": [ + "Static code analysis", + "fixer", + "standards", + "static analysis" + ], + "support": { + "issues": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/issues", + "source": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/tree/v3.64.0" + }, + "funding": [ + { + "url": "https://github.com/keradus", + "type": "github" + } + ], + "time": "2024-08-30T23:09:38+00:00" + }, + { + "name": "psr/container", + "version": "2.0.2", + "source": { + "type": "git", + "url": "https://github.com/php-fig/container.git", + "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963", + "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963", + "shasum": "" + }, + "require": { + "php": ">=7.4.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\Container\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" + } + ], + "description": "Common Container Interface (PHP FIG PSR-11)", + "homepage": "https://github.com/php-fig/container", + "keywords": [ + "PSR-11", + "container", + "container-interface", + "container-interop", + "psr" + ], + "support": { + "issues": "https://github.com/php-fig/container/issues", + "source": "https://github.com/php-fig/container/tree/2.0.2" + }, + "time": "2021-11-05T16:47:00+00:00" + }, + { + "name": "psr/event-dispatcher", + "version": "1.0.0", + "source": { + "type": "git", + "url": "https://github.com/php-fig/event-dispatcher.git", + "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0", + "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0", + "shasum": "" + }, + "require": { + "php": ">=7.2.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\EventDispatcher\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "http://www.php-fig.org/" + } + ], + "description": "Standard interfaces for event handling.", + "keywords": [ + "events", + "psr", + "psr-14" + ], + "support": { + "issues": "https://github.com/php-fig/event-dispatcher/issues", + "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0" + }, + "time": "2019-01-08T18:20:26+00:00" + }, + { + "name": "psr/log", + "version": "3.0.2", + "source": { + "type": "git", + "url": "https://github.com/php-fig/log.git", + "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3", + "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3", + "shasum": "" + }, + "require": { + "php": ">=8.0.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\Log\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" + } + ], + "description": "Common interface for logging libraries", + "homepage": "https://github.com/php-fig/log", + "keywords": [ + "log", + "psr", + "psr-3" + ], + "support": { + "source": "https://github.com/php-fig/log/tree/3.0.2" + }, + "time": "2024-09-11T13:17:53+00:00" + }, + { + "name": "react/cache", + "version": "v1.2.0", + "source": { + "type": "git", + "url": "https://github.com/reactphp/cache.git", + "reference": "d47c472b64aa5608225f47965a484b75c7817d5b" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/reactphp/cache/zipball/d47c472b64aa5608225f47965a484b75c7817d5b", + "reference": "d47c472b64aa5608225f47965a484b75c7817d5b", + "shasum": "" + }, + "require": { + "php": ">=5.3.0", + "react/promise": "^3.0 || ^2.0 || ^1.1" + }, + "require-dev": { + "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35" + }, + "type": "library", + "autoload": { + "psr-4": { + "React\\Cache\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Christian Lück", + "email": "christian@clue.engineering", + "homepage": "https://clue.engineering/" + }, + { + "name": "Cees-Jan Kiewiet", + "email": "reactphp@ceesjankiewiet.nl", + "homepage": "https://wyrihaximus.net/" + }, + { + "name": "Jan Sorgalla", + "email": "jsorgalla@gmail.com", + "homepage": "https://sorgalla.com/" + }, + { + "name": "Chris Boden", + "email": "cboden@gmail.com", + "homepage": "https://cboden.dev/" + } + ], + "description": "Async, Promise-based cache interface for ReactPHP", + "keywords": [ + "cache", + "caching", + "promise", + "reactphp" + ], + "support": { + "issues": "https://github.com/reactphp/cache/issues", + "source": "https://github.com/reactphp/cache/tree/v1.2.0" + }, + "funding": [ + { + "url": "https://opencollective.com/reactphp", + "type": "open_collective" + } + ], + "time": "2022-11-30T15:59:55+00:00" + }, + { + "name": "react/child-process", + "version": "v0.6.5", + "source": { + "type": "git", + "url": "https://github.com/reactphp/child-process.git", + "reference": "e71eb1aa55f057c7a4a0d08d06b0b0a484bead43" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/reactphp/child-process/zipball/e71eb1aa55f057c7a4a0d08d06b0b0a484bead43", + "reference": "e71eb1aa55f057c7a4a0d08d06b0b0a484bead43", + "shasum": "" + }, + "require": { + "evenement/evenement": "^3.0 || ^2.0 || ^1.0", + "php": ">=5.3.0", + "react/event-loop": "^1.2", + "react/stream": "^1.2" + }, + "require-dev": { + "phpunit/phpunit": "^9.3 || ^5.7 || ^4.8.35", + "react/socket": "^1.8", + "sebastian/environment": "^5.0 || ^3.0 || ^2.0 || ^1.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "React\\ChildProcess\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Christian Lück", + "email": "christian@clue.engineering", + "homepage": "https://clue.engineering/" + }, + { + "name": "Cees-Jan Kiewiet", + "email": "reactphp@ceesjankiewiet.nl", + "homepage": "https://wyrihaximus.net/" + }, + { + "name": "Jan Sorgalla", + "email": "jsorgalla@gmail.com", + "homepage": "https://sorgalla.com/" + }, + { + "name": "Chris Boden", + "email": "cboden@gmail.com", + "homepage": "https://cboden.dev/" + } + ], + "description": "Event-driven library for executing child processes with ReactPHP.", + "keywords": [ + "event-driven", + "process", + "reactphp" + ], + "support": { + "issues": "https://github.com/reactphp/child-process/issues", + "source": "https://github.com/reactphp/child-process/tree/v0.6.5" + }, + "funding": [ + { + "url": "https://github.com/WyriHaximus", + "type": "github" + }, + { + "url": "https://github.com/clue", + "type": "github" + } + ], + "time": "2022-09-16T13:41:56+00:00" + }, + { + "name": "react/dns", + "version": "v1.13.0", + "source": { + "type": "git", + "url": "https://github.com/reactphp/dns.git", + "reference": "eb8ae001b5a455665c89c1df97f6fb682f8fb0f5" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/reactphp/dns/zipball/eb8ae001b5a455665c89c1df97f6fb682f8fb0f5", + "reference": "eb8ae001b5a455665c89c1df97f6fb682f8fb0f5", + "shasum": "" + }, + "require": { + "php": ">=5.3.0", + "react/cache": "^1.0 || ^0.6 || ^0.5", + "react/event-loop": "^1.2", + "react/promise": "^3.2 || ^2.7 || ^1.2.1" + }, + "require-dev": { + "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36", + "react/async": "^4.3 || ^3 || ^2", + "react/promise-timer": "^1.11" + }, + "type": "library", + "autoload": { + "psr-4": { + "React\\Dns\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Christian Lück", + "email": "christian@clue.engineering", + "homepage": "https://clue.engineering/" + }, + { + "name": "Cees-Jan Kiewiet", + "email": "reactphp@ceesjankiewiet.nl", + "homepage": "https://wyrihaximus.net/" + }, + { + "name": "Jan Sorgalla", + "email": "jsorgalla@gmail.com", + "homepage": "https://sorgalla.com/" + }, + { + "name": "Chris Boden", + "email": "cboden@gmail.com", + "homepage": "https://cboden.dev/" + } + ], + "description": "Async DNS resolver for ReactPHP", + "keywords": [ + "async", + "dns", + "dns-resolver", + "reactphp" + ], + "support": { + "issues": "https://github.com/reactphp/dns/issues", + "source": "https://github.com/reactphp/dns/tree/v1.13.0" + }, + "funding": [ + { + "url": "https://opencollective.com/reactphp", + "type": "open_collective" + } + ], + "time": "2024-06-13T14:18:03+00:00" + }, + { + "name": "react/event-loop", + "version": "v1.5.0", + "source": { + "type": "git", + "url": "https://github.com/reactphp/event-loop.git", + "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/reactphp/event-loop/zipball/bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354", + "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354", + "shasum": "" + }, + "require": { + "php": ">=5.3.0" + }, + "require-dev": { + "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36" + }, + "suggest": { + "ext-pcntl": "For signal handling support when using the StreamSelectLoop" + }, + "type": "library", + "autoload": { + "psr-4": { + "React\\EventLoop\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Christian Lück", + "email": "christian@clue.engineering", + "homepage": "https://clue.engineering/" + }, + { + "name": "Cees-Jan Kiewiet", + "email": "reactphp@ceesjankiewiet.nl", + "homepage": "https://wyrihaximus.net/" + }, + { + "name": "Jan Sorgalla", + "email": "jsorgalla@gmail.com", + "homepage": "https://sorgalla.com/" + }, + { + "name": "Chris Boden", + "email": "cboden@gmail.com", + "homepage": "https://cboden.dev/" + } + ], + "description": "ReactPHP's core reactor event loop that libraries can use for evented I/O.", + "keywords": [ + "asynchronous", + "event-loop" + ], + "support": { + "issues": "https://github.com/reactphp/event-loop/issues", + "source": "https://github.com/reactphp/event-loop/tree/v1.5.0" + }, + "funding": [ + { + "url": "https://opencollective.com/reactphp", + "type": "open_collective" + } + ], + "time": "2023-11-13T13:48:05+00:00" + }, + { + "name": "react/promise", + "version": "v3.2.0", + "source": { + "type": "git", + "url": "https://github.com/reactphp/promise.git", + "reference": "8a164643313c71354582dc850b42b33fa12a4b63" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/reactphp/promise/zipball/8a164643313c71354582dc850b42b33fa12a4b63", + "reference": "8a164643313c71354582dc850b42b33fa12a4b63", + "shasum": "" + }, + "require": { + "php": ">=7.1.0" + }, + "require-dev": { + "phpstan/phpstan": "1.10.39 || 1.4.10", + "phpunit/phpunit": "^9.6 || ^7.5" + }, + "type": "library", + "autoload": { + "files": [ + "src/functions_include.php" + ], + "psr-4": { + "React\\Promise\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Jan Sorgalla", + "email": "jsorgalla@gmail.com", + "homepage": "https://sorgalla.com/" + }, + { + "name": "Christian Lück", + "email": "christian@clue.engineering", + "homepage": "https://clue.engineering/" + }, + { + "name": "Cees-Jan Kiewiet", + "email": "reactphp@ceesjankiewiet.nl", + "homepage": "https://wyrihaximus.net/" + }, + { + "name": "Chris Boden", + "email": "cboden@gmail.com", + "homepage": "https://cboden.dev/" + } + ], + "description": "A lightweight implementation of CommonJS Promises/A for PHP", + "keywords": [ + "promise", + "promises" + ], + "support": { + "issues": "https://github.com/reactphp/promise/issues", + "source": "https://github.com/reactphp/promise/tree/v3.2.0" + }, + "funding": [ + { + "url": "https://opencollective.com/reactphp", + "type": "open_collective" + } + ], + "time": "2024-05-24T10:39:05+00:00" + }, + { + "name": "react/socket", + "version": "v1.16.0", + "source": { + "type": "git", + "url": "https://github.com/reactphp/socket.git", + "reference": "23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/reactphp/socket/zipball/23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1", + "reference": "23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1", + "shasum": "" + }, + "require": { + "evenement/evenement": "^3.0 || ^2.0 || ^1.0", + "php": ">=5.3.0", + "react/dns": "^1.13", + "react/event-loop": "^1.2", + "react/promise": "^3.2 || ^2.6 || ^1.2.1", + "react/stream": "^1.4" + }, + "require-dev": { + "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36", + "react/async": "^4.3 || ^3.3 || ^2", + "react/promise-stream": "^1.4", + "react/promise-timer": "^1.11" + }, + "type": "library", + "autoload": { + "psr-4": { + "React\\Socket\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Christian Lück", + "email": "christian@clue.engineering", + "homepage": "https://clue.engineering/" + }, + { + "name": "Cees-Jan Kiewiet", + "email": "reactphp@ceesjankiewiet.nl", + "homepage": "https://wyrihaximus.net/" + }, + { + "name": "Jan Sorgalla", + "email": "jsorgalla@gmail.com", + "homepage": "https://sorgalla.com/" + }, + { + "name": "Chris Boden", + "email": "cboden@gmail.com", + "homepage": "https://cboden.dev/" + } + ], + "description": "Async, streaming plaintext TCP/IP and secure TLS socket server and client connections for ReactPHP", + "keywords": [ + "Connection", + "Socket", + "async", + "reactphp", + "stream" + ], + "support": { + "issues": "https://github.com/reactphp/socket/issues", + "source": "https://github.com/reactphp/socket/tree/v1.16.0" + }, + "funding": [ + { + "url": "https://opencollective.com/reactphp", + "type": "open_collective" + } + ], + "time": "2024-07-26T10:38:09+00:00" + }, + { + "name": "react/stream", + "version": "v1.4.0", + "source": { + "type": "git", + "url": "https://github.com/reactphp/stream.git", + "reference": "1e5b0acb8fe55143b5b426817155190eb6f5b18d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/reactphp/stream/zipball/1e5b0acb8fe55143b5b426817155190eb6f5b18d", + "reference": "1e5b0acb8fe55143b5b426817155190eb6f5b18d", + "shasum": "" + }, + "require": { + "evenement/evenement": "^3.0 || ^2.0 || ^1.0", + "php": ">=5.3.8", + "react/event-loop": "^1.2" + }, + "require-dev": { + "clue/stream-filter": "~1.2", + "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36" + }, + "type": "library", + "autoload": { + "psr-4": { + "React\\Stream\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Christian Lück", + "email": "christian@clue.engineering", + "homepage": "https://clue.engineering/" + }, + { + "name": "Cees-Jan Kiewiet", + "email": "reactphp@ceesjankiewiet.nl", + "homepage": "https://wyrihaximus.net/" + }, + { + "name": "Jan Sorgalla", + "email": "jsorgalla@gmail.com", + "homepage": "https://sorgalla.com/" + }, + { + "name": "Chris Boden", + "email": "cboden@gmail.com", + "homepage": "https://cboden.dev/" + } + ], + "description": "Event-driven readable and writable streams for non-blocking I/O in ReactPHP", + "keywords": [ + "event-driven", + "io", + "non-blocking", + "pipe", + "reactphp", + "readable", + "stream", + "writable" + ], + "support": { + "issues": "https://github.com/reactphp/stream/issues", + "source": "https://github.com/reactphp/stream/tree/v1.4.0" + }, + "funding": [ + { + "url": "https://opencollective.com/reactphp", + "type": "open_collective" + } + ], + "time": "2024-06-11T12:45:25+00:00" + }, + { + "name": "sebastian/diff", + "version": "6.0.2", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/diff.git", + "reference": "b4ccd857127db5d41a5b676f24b51371d76d8544" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/b4ccd857127db5d41a5b676f24b51371d76d8544", + "reference": "b4ccd857127db5d41a5b676f24b51371d76d8544", + "shasum": "" + }, + "require": { + "php": ">=8.2" + }, + "require-dev": { + "phpunit/phpunit": "^11.0", + "symfony/process": "^4.2 || ^5" + }, + "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/6.0.2" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-07-03T04:53:05+00:00" + }, + { + "name": "symfony/console", + "version": "v7.1.5", + "source": { + "type": "git", + "url": "https://github.com/symfony/console.git", + "reference": "0fa539d12b3ccf068a722bbbffa07ca7079af9ee" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/console/zipball/0fa539d12b3ccf068a722bbbffa07ca7079af9ee", + "reference": "0fa539d12b3ccf068a722bbbffa07ca7079af9ee", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "symfony/polyfill-mbstring": "~1.0", + "symfony/service-contracts": "^2.5|^3", + "symfony/string": "^6.4|^7.0" + }, + "conflict": { + "symfony/dependency-injection": "<6.4", + "symfony/dotenv": "<6.4", + "symfony/event-dispatcher": "<6.4", + "symfony/lock": "<6.4", + "symfony/process": "<6.4" + }, + "provide": { + "psr/log-implementation": "1.0|2.0|3.0" + }, + "require-dev": { + "psr/log": "^1|^2|^3", + "symfony/config": "^6.4|^7.0", + "symfony/dependency-injection": "^6.4|^7.0", + "symfony/event-dispatcher": "^6.4|^7.0", + "symfony/http-foundation": "^6.4|^7.0", + "symfony/http-kernel": "^6.4|^7.0", + "symfony/lock": "^6.4|^7.0", + "symfony/messenger": "^6.4|^7.0", + "symfony/process": "^6.4|^7.0", + "symfony/stopwatch": "^6.4|^7.0", + "symfony/var-dumper": "^6.4|^7.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Console\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Eases the creation of beautiful and testable command line interfaces", + "homepage": "https://symfony.com", + "keywords": [ + "cli", + "command-line", + "console", + "terminal" + ], + "support": { + "source": "https://github.com/symfony/console/tree/v7.1.5" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-09-20T08:28:38+00:00" + }, + { + "name": "symfony/deprecation-contracts", + "version": "v3.5.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/deprecation-contracts.git", + "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1", + "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "3.5-dev" + }, + "thanks": { + "name": "symfony/contracts", + "url": "https://github.com/symfony/contracts" + } + }, + "autoload": { + "files": [ + "function.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "A generic function and convention to trigger deprecation notices", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-04-18T09:32:20+00:00" + }, + { + "name": "symfony/event-dispatcher", + "version": "v7.1.1", + "source": { + "type": "git", + "url": "https://github.com/symfony/event-dispatcher.git", + "reference": "9fa7f7a21beb22a39a8f3f28618b29e50d7a55a7" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/9fa7f7a21beb22a39a8f3f28618b29e50d7a55a7", + "reference": "9fa7f7a21beb22a39a8f3f28618b29e50d7a55a7", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "symfony/event-dispatcher-contracts": "^2.5|^3" + }, + "conflict": { + "symfony/dependency-injection": "<6.4", + "symfony/service-contracts": "<2.5" + }, + "provide": { + "psr/event-dispatcher-implementation": "1.0", + "symfony/event-dispatcher-implementation": "2.0|3.0" + }, + "require-dev": { + "psr/log": "^1|^2|^3", + "symfony/config": "^6.4|^7.0", + "symfony/dependency-injection": "^6.4|^7.0", + "symfony/error-handler": "^6.4|^7.0", + "symfony/expression-language": "^6.4|^7.0", + "symfony/http-foundation": "^6.4|^7.0", + "symfony/service-contracts": "^2.5|^3", + "symfony/stopwatch": "^6.4|^7.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\EventDispatcher\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/event-dispatcher/tree/v7.1.1" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-05-31T14:57:53+00:00" + }, + { + "name": "symfony/event-dispatcher-contracts", + "version": "v3.5.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/event-dispatcher-contracts.git", + "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/8f93aec25d41b72493c6ddff14e916177c9efc50", + "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "psr/event-dispatcher": "^1" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "3.5-dev" + }, + "thanks": { + "name": "symfony/contracts", + "url": "https://github.com/symfony/contracts" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Contracts\\EventDispatcher\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Generic abstractions related to dispatching event", + "homepage": "https://symfony.com", + "keywords": [ + "abstractions", + "contracts", + "decoupling", + "interfaces", + "interoperability", + "standards" + ], + "support": { + "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-04-18T09:32:20+00:00" + }, + { + "name": "symfony/filesystem", + "version": "v7.1.5", + "source": { + "type": "git", + "url": "https://github.com/symfony/filesystem.git", + "reference": "61fe0566189bf32e8cfee78335d8776f64a66f5a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/filesystem/zipball/61fe0566189bf32e8cfee78335d8776f64a66f5a", + "reference": "61fe0566189bf32e8cfee78335d8776f64a66f5a", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "symfony/polyfill-ctype": "~1.8", + "symfony/polyfill-mbstring": "~1.8" + }, + "require-dev": { + "symfony/process": "^6.4|^7.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Filesystem\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Provides basic utilities for the filesystem", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/filesystem/tree/v7.1.5" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-09-17T09:16:35+00:00" + }, + { + "name": "symfony/finder", + "version": "v7.1.4", + "source": { + "type": "git", + "url": "https://github.com/symfony/finder.git", + "reference": "d95bbf319f7d052082fb7af147e0f835a695e823" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/finder/zipball/d95bbf319f7d052082fb7af147e0f835a695e823", + "reference": "d95bbf319f7d052082fb7af147e0f835a695e823", + "shasum": "" + }, + "require": { + "php": ">=8.2" + }, + "require-dev": { + "symfony/filesystem": "^6.4|^7.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Finder\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Finds files and directories via an intuitive fluent interface", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/finder/tree/v7.1.4" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-08-13T14:28:19+00:00" + }, + { + "name": "symfony/options-resolver", + "version": "v7.1.1", + "source": { + "type": "git", + "url": "https://github.com/symfony/options-resolver.git", + "reference": "47aa818121ed3950acd2b58d1d37d08a94f9bf55" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/options-resolver/zipball/47aa818121ed3950acd2b58d1d37d08a94f9bf55", + "reference": "47aa818121ed3950acd2b58d1d37d08a94f9bf55", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "symfony/deprecation-contracts": "^2.5|^3" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\OptionsResolver\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Provides an improved replacement for the array_replace PHP function", + "homepage": "https://symfony.com", + "keywords": [ + "config", + "configuration", + "options" + ], + "support": { + "source": "https://github.com/symfony/options-resolver/tree/v7.1.1" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-05-31T14:57:53+00:00" + }, + { + "name": "symfony/polyfill-ctype", + "version": "v1.31.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-ctype.git", + "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638", + "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638", + "shasum": "" + }, + "require": { + "php": ">=7.2" + }, + "provide": { + "ext-ctype": "*" + }, + "suggest": { + "ext-ctype": "For best performance" + }, + "type": "library", + "extra": { + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Ctype\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Gert de Pagter", + "email": "BackEndTea@gmail.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill for ctype functions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "ctype", + "polyfill", + "portable" + ], + "support": { + "source": "https://github.com/symfony/polyfill-ctype/tree/v1.31.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-09-09T11:45:10+00:00" + }, + { + "name": "symfony/polyfill-intl-grapheme", + "version": "v1.31.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-intl-grapheme.git", + "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe", + "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe", + "shasum": "" + }, + "require": { + "php": ">=7.2" + }, + "suggest": { + "ext-intl": "For best performance" + }, + "type": "library", + "extra": { + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Intl\\Grapheme\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill for intl's grapheme_* functions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "grapheme", + "intl", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.31.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-09-09T11:45:10+00:00" + }, + { + "name": "symfony/polyfill-intl-normalizer", + "version": "v1.31.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-intl-normalizer.git", + "reference": "3833d7255cc303546435cb650316bff708a1c75c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c", + "reference": "3833d7255cc303546435cb650316bff708a1c75c", + "shasum": "" + }, + "require": { + "php": ">=7.2" + }, + "suggest": { + "ext-intl": "For best performance" + }, + "type": "library", + "extra": { + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Intl\\Normalizer\\": "" + }, + "classmap": [ + "Resources/stubs" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill for intl's Normalizer class and related functions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "intl", + "normalizer", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.31.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-09-09T11:45:10+00:00" + }, + { + "name": "symfony/polyfill-mbstring", + "version": "v1.31.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-mbstring.git", + "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/85181ba99b2345b0ef10ce42ecac37612d9fd341", + "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341", + "shasum": "" + }, + "require": { + "php": ">=7.2" + }, + "provide": { + "ext-mbstring": "*" + }, + "suggest": { + "ext-mbstring": "For best performance" + }, + "type": "library", + "extra": { + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Mbstring\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill for the Mbstring extension", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "mbstring", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.31.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-09-09T11:45:10+00:00" + }, + { + "name": "symfony/polyfill-php80", + "version": "v1.31.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-php80.git", + "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/60328e362d4c2c802a54fcbf04f9d3fb892b4cf8", + "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8", + "shasum": "" + }, + "require": { + "php": ">=7.2" + }, + "type": "library", + "extra": { + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Php80\\": "" + }, + "classmap": [ + "Resources/stubs" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Ion Bazan", + "email": "ion.bazan@gmail.com" + }, + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-php80/tree/v1.31.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-09-09T11:45:10+00:00" + }, + { + "name": "symfony/polyfill-php81", + "version": "v1.31.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-php81.git", + "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c", + "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c", + "shasum": "" + }, + "require": { + "php": ">=7.2" + }, + "type": "library", + "extra": { + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Php81\\": "" + }, + "classmap": [ + "Resources/stubs" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-php81/tree/v1.31.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-09-09T11:45:10+00:00" + }, + { + "name": "symfony/process", + "version": "v7.1.5", + "source": { + "type": "git", + "url": "https://github.com/symfony/process.git", + "reference": "5c03ee6369281177f07f7c68252a280beccba847" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/process/zipball/5c03ee6369281177f07f7c68252a280beccba847", + "reference": "5c03ee6369281177f07f7c68252a280beccba847", + "shasum": "" + }, + "require": { + "php": ">=8.2" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Process\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Executes commands in sub-processes", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/process/tree/v7.1.5" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-09-19T21:48:23+00:00" + }, + { + "name": "symfony/service-contracts", + "version": "v3.5.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/service-contracts.git", + "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/service-contracts/zipball/bd1d9e59a81d8fa4acdcea3f617c581f7475a80f", + "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "psr/container": "^1.1|^2.0", + "symfony/deprecation-contracts": "^2.5|^3" + }, + "conflict": { + "ext-psr": "<1.1|>=2" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "3.5-dev" + }, + "thanks": { + "name": "symfony/contracts", + "url": "https://github.com/symfony/contracts" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Contracts\\Service\\": "" + }, + "exclude-from-classmap": [ + "/Test/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Generic abstractions related to writing services", + "homepage": "https://symfony.com", + "keywords": [ + "abstractions", + "contracts", + "decoupling", + "interfaces", + "interoperability", + "standards" + ], + "support": { + "source": "https://github.com/symfony/service-contracts/tree/v3.5.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-04-18T09:32:20+00:00" + }, + { + "name": "symfony/stopwatch", + "version": "v7.1.1", + "source": { + "type": "git", + "url": "https://github.com/symfony/stopwatch.git", + "reference": "5b75bb1ac2ba1b9d05c47fc4b3046a625377d23d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/stopwatch/zipball/5b75bb1ac2ba1b9d05c47fc4b3046a625377d23d", + "reference": "5b75bb1ac2ba1b9d05c47fc4b3046a625377d23d", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "symfony/service-contracts": "^2.5|^3" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Stopwatch\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Provides a way to profile code", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/stopwatch/tree/v7.1.1" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-05-31T14:57:53+00:00" + }, + { + "name": "symfony/string", + "version": "v7.1.5", + "source": { + "type": "git", + "url": "https://github.com/symfony/string.git", + "reference": "d66f9c343fa894ec2037cc928381df90a7ad4306" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/string/zipball/d66f9c343fa894ec2037cc928381df90a7ad4306", + "reference": "d66f9c343fa894ec2037cc928381df90a7ad4306", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "symfony/polyfill-ctype": "~1.8", + "symfony/polyfill-intl-grapheme": "~1.0", + "symfony/polyfill-intl-normalizer": "~1.0", + "symfony/polyfill-mbstring": "~1.0" + }, + "conflict": { + "symfony/translation-contracts": "<2.5" + }, + "require-dev": { + "symfony/emoji": "^7.1", + "symfony/error-handler": "^6.4|^7.0", + "symfony/http-client": "^6.4|^7.0", + "symfony/intl": "^6.4|^7.0", + "symfony/translation-contracts": "^2.5|^3.0", + "symfony/var-exporter": "^6.4|^7.0" + }, + "type": "library", + "autoload": { + "files": [ + "Resources/functions.php" + ], + "psr-4": { + "Symfony\\Component\\String\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way", + "homepage": "https://symfony.com", + "keywords": [ + "grapheme", + "i18n", + "string", + "unicode", + "utf-8", + "utf8" + ], + "support": { + "source": "https://github.com/symfony/string/tree/v7.1.5" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-09-20T08:28:38+00:00" + } + ], + "aliases": [], + "minimum-stability": "stable", + "stability-flags": {}, + "prefer-stable": false, + "prefer-lowest": false, + "platform": {}, + "platform-dev": {}, + "plugin-api-version": "2.6.0" +} diff --git a/tools/phpunit/composer.json b/tools/phpunit/composer.json new file mode 100644 index 00000000..bcc5742a --- /dev/null +++ b/tools/phpunit/composer.json @@ -0,0 +1,5 @@ +{ + "require-dev": { + "phpunit/phpunit": "^8.5" + } +} diff --git a/tools/phpunit/composer.lock b/tools/phpunit/composer.lock new file mode 100644 index 00000000..adcbed33 --- /dev/null +++ b/tools/phpunit/composer.lock @@ -0,0 +1,1440 @@ +{ + "_readme": [ + "This file locks the dependencies of your project to a known state", + "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", + "This file is @generated automatically" + ], + "content-hash": "4a62d3a5c56e5614bc6122798e246434", + "packages": [], + "packages-dev": [ + { + "name": "doctrine/instantiator", + "version": "1.5.0", + "source": { + "type": "git", + "url": "https://github.com/doctrine/instantiator.git", + "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/instantiator/zipball/0a0fa9780f5d4e507415a065172d26a98d02047b", + "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b", + "shasum": "" + }, + "require": { + "php": "^7.1 || ^8.0" + }, + "require-dev": { + "doctrine/coding-standard": "^9 || ^11", + "ext-pdo": "*", + "ext-phar": "*", + "phpbench/phpbench": "^0.16 || ^1", + "phpstan/phpstan": "^1.4", + "phpstan/phpstan-phpunit": "^1", + "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5", + "vimeo/psalm": "^4.30 || ^5.4" + }, + "type": "library", + "autoload": { + "psr-4": { + "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Marco Pivetta", + "email": "ocramius@gmail.com", + "homepage": "https://ocramius.github.io/" + } + ], + "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors", + "homepage": "https://www.doctrine-project.org/projects/instantiator.html", + "keywords": [ + "constructor", + "instantiate" + ], + "support": { + "issues": "https://github.com/doctrine/instantiator/issues", + "source": "https://github.com/doctrine/instantiator/tree/1.5.0" + }, + "funding": [ + { + "url": "https://www.doctrine-project.org/sponsorship.html", + "type": "custom" + }, + { + "url": "https://www.patreon.com/phpdoctrine", + "type": "patreon" + }, + { + "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator", + "type": "tidelift" + } + ], + "time": "2022-12-30T00:15:36+00:00" + }, + { + "name": "myclabs/deep-copy", + "version": "1.12.0", + "source": { + "type": "git", + "url": "https://github.com/myclabs/DeepCopy.git", + "reference": "3a6b9a42cd8f8771bd4295d13e1423fa7f3d942c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/3a6b9a42cd8f8771bd4295d13e1423fa7f3d942c", + "reference": "3a6b9a42cd8f8771bd4295d13e1423fa7f3d942c", + "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" + }, + "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.12.0" + }, + "funding": [ + { + "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy", + "type": "tidelift" + } + ], + "time": "2024-06-12T14:39:25+00:00" + }, + { + "name": "phar-io/manifest", + "version": "2.0.4", + "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" + }, + "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": "7.0.17", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-code-coverage.git", + "reference": "40a4ed114a4aea5afd6df8d0f0c9cd3033097f66" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/40a4ed114a4aea5afd6df8d0f0c9cd3033097f66", + "reference": "40a4ed114a4aea5afd6df8d0f0c9cd3033097f66", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-xmlwriter": "*", + "php": ">=7.2", + "phpunit/php-file-iterator": "^2.0.2", + "phpunit/php-text-template": "^1.2.1", + "phpunit/php-token-stream": "^3.1.3 || ^4.0", + "sebastian/code-unit-reverse-lookup": "^1.0.1", + "sebastian/environment": "^4.2.2", + "sebastian/version": "^2.0.1", + "theseer/tokenizer": "^1.1.3" + }, + "require-dev": { + "phpunit/phpunit": "^8.2.2" + }, + "suggest": { + "ext-xdebug": "^2.7.2" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "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": "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", + "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/7.0.17" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-03-02T06:09:37+00:00" + }, + { + "name": "phpunit/php-file-iterator", + "version": "2.0.6", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-file-iterator.git", + "reference": "69deeb8664f611f156a924154985fbd4911eb36b" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/69deeb8664f611f156a924154985fbd4911eb36b", + "reference": "69deeb8664f611f156a924154985fbd4911eb36b", + "shasum": "" + }, + "require": { + "php": ">=7.1" + }, + "require-dev": { + "phpunit/phpunit": "^8.5" + }, + "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": "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", + "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/2.0.6" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-03-01T13:39:50+00:00" + }, + { + "name": "phpunit/php-text-template", + "version": "1.2.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-text-template.git", + "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686", + "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686", + "shasum": "" + }, + "require": { + "php": ">=5.3.3" + }, + "type": "library", + "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", + "source": "https://github.com/sebastianbergmann/php-text-template/tree/1.2.1" + }, + "time": "2015-06-21T13:50:34+00:00" + }, + { + "name": "phpunit/php-timer", + "version": "2.1.4", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-timer.git", + "reference": "a691211e94ff39a34811abd521c31bd5b305b0bb" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/a691211e94ff39a34811abd521c31bd5b305b0bb", + "reference": "a691211e94ff39a34811abd521c31bd5b305b0bb", + "shasum": "" + }, + "require": { + "php": ">=7.1" + }, + "require-dev": { + "phpunit/phpunit": "^8.5" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.1-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", + "source": "https://github.com/sebastianbergmann/php-timer/tree/2.1.4" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-03-01T13:42:41+00:00" + }, + { + "name": "phpunit/php-token-stream", + "version": "4.0.4", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-token-stream.git", + "reference": "a853a0e183b9db7eed023d7933a858fa1c8d25a3" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/a853a0e183b9db7eed023d7933a858fa1c8d25a3", + "reference": "a853a0e183b9db7eed023d7933a858fa1c8d25a3", + "shasum": "" + }, + "require": { + "ext-tokenizer": "*", + "php": "^7.3 || ^8.0" + }, + "require-dev": { + "phpunit/phpunit": "^9.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "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": "Wrapper around PHP's tokenizer extension.", + "homepage": "https://github.com/sebastianbergmann/php-token-stream/", + "keywords": [ + "tokenizer" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/php-token-stream/issues", + "source": "https://github.com/sebastianbergmann/php-token-stream/tree/master" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "abandoned": true, + "time": "2020-08-04T08:28:15+00:00" + }, + { + "name": "phpunit/phpunit", + "version": "8.5.40", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/phpunit.git", + "reference": "48ed828b72c35b38cdddcd9059339734cb06b3a7" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/48ed828b72c35b38cdddcd9059339734cb06b3a7", + "reference": "48ed828b72c35b38cdddcd9059339734cb06b3a7", + "shasum": "" + }, + "require": { + "doctrine/instantiator": "^1.5.0", + "ext-dom": "*", + "ext-json": "*", + "ext-libxml": "*", + "ext-mbstring": "*", + "ext-xml": "*", + "ext-xmlwriter": "*", + "myclabs/deep-copy": "^1.12.0", + "phar-io/manifest": "^2.0.4", + "phar-io/version": "^3.2.1", + "php": ">=7.2", + "phpunit/php-code-coverage": "^7.0.17", + "phpunit/php-file-iterator": "^2.0.6", + "phpunit/php-text-template": "^1.2.1", + "phpunit/php-timer": "^2.1.4", + "sebastian/comparator": "^3.0.5", + "sebastian/diff": "^3.0.6", + "sebastian/environment": "^4.2.5", + "sebastian/exporter": "^3.1.6", + "sebastian/global-state": "^3.0.5", + "sebastian/object-enumerator": "^3.0.5", + "sebastian/resource-operations": "^2.0.3", + "sebastian/type": "^1.1.5", + "sebastian/version": "^2.0.1" + }, + "suggest": { + "ext-soap": "To be able to generate mocks based on WSDL files", + "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage", + "phpunit/php-invoker": "To allow enforcing time limits" + }, + "bin": [ + "phpunit" + ], + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "8.5-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": "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/8.5.40" + }, + "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-09-19T10:47:04+00:00" + }, + { + "name": "sebastian/code-unit-reverse-lookup", + "version": "1.0.3", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git", + "reference": "92a1a52e86d34cde6caa54f1b5ffa9fda18e5d54" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/92a1a52e86d34cde6caa54f1b5ffa9fda18e5d54", + "reference": "92a1a52e86d34cde6caa54f1b5ffa9fda18e5d54", + "shasum": "" + }, + "require": { + "php": ">=5.6" + }, + "require-dev": { + "phpunit/phpunit": "^8.5" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-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", + "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/1.0.3" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-03-01T13:45:45+00:00" + }, + { + "name": "sebastian/comparator", + "version": "3.0.5", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/comparator.git", + "reference": "1dc7ceb4a24aede938c7af2a9ed1de09609ca770" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/1dc7ceb4a24aede938c7af2a9ed1de09609ca770", + "reference": "1dc7ceb4a24aede938c7af2a9ed1de09609ca770", + "shasum": "" + }, + "require": { + "php": ">=7.1", + "sebastian/diff": "^3.0", + "sebastian/exporter": "^3.1" + }, + "require-dev": { + "phpunit/phpunit": "^8.5" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.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", + "source": "https://github.com/sebastianbergmann/comparator/tree/3.0.5" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2022-09-14T12:31:48+00:00" + }, + { + "name": "sebastian/diff", + "version": "3.0.6", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/diff.git", + "reference": "98ff311ca519c3aa73ccd3de053bdb377171d7b6" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/98ff311ca519c3aa73ccd3de053bdb377171d7b6", + "reference": "98ff311ca519c3aa73ccd3de053bdb377171d7b6", + "shasum": "" + }, + "require": { + "php": ">=7.1" + }, + "require-dev": { + "phpunit/phpunit": "^7.5 || ^8.0", + "symfony/process": "^2 || ^3.3 || ^4" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.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", + "source": "https://github.com/sebastianbergmann/diff/tree/3.0.6" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-03-02T06:16:36+00:00" + }, + { + "name": "sebastian/environment", + "version": "4.2.5", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/environment.git", + "reference": "56932f6049a0482853056ffd617c91ffcc754205" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/56932f6049a0482853056ffd617c91ffcc754205", + "reference": "56932f6049a0482853056ffd617c91ffcc754205", + "shasum": "" + }, + "require": { + "php": ">=7.1" + }, + "require-dev": { + "phpunit/phpunit": "^7.5" + }, + "suggest": { + "ext-posix": "*" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "4.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": "http://www.github.com/sebastianbergmann/environment", + "keywords": [ + "Xdebug", + "environment", + "hhvm" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/environment/issues", + "source": "https://github.com/sebastianbergmann/environment/tree/4.2.5" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-03-01T13:49:59+00:00" + }, + { + "name": "sebastian/exporter", + "version": "3.1.6", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/exporter.git", + "reference": "1939bc8fd1d39adcfa88c5b35335910869214c56" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/1939bc8fd1d39adcfa88c5b35335910869214c56", + "reference": "1939bc8fd1d39adcfa88c5b35335910869214c56", + "shasum": "" + }, + "require": { + "php": ">=7.2", + "sebastian/recursion-context": "^3.0" + }, + "require-dev": { + "ext-mbstring": "*", + "phpunit/phpunit": "^8.5" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.1.x-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": "http://www.github.com/sebastianbergmann/exporter", + "keywords": [ + "export", + "exporter" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/exporter/issues", + "source": "https://github.com/sebastianbergmann/exporter/tree/3.1.6" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-03-02T06:21:38+00:00" + }, + { + "name": "sebastian/global-state", + "version": "3.0.5", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/global-state.git", + "reference": "91c7c47047a971f02de57ed6f040087ef110c5d9" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/91c7c47047a971f02de57ed6f040087ef110c5d9", + "reference": "91c7c47047a971f02de57ed6f040087ef110c5d9", + "shasum": "" + }, + "require": { + "php": ">=7.2", + "sebastian/object-reflector": "^1.1.1", + "sebastian/recursion-context": "^3.0" + }, + "require-dev": { + "ext-dom": "*", + "phpunit/phpunit": "^8.0" + }, + "suggest": { + "ext-uopz": "*" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.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": "http://www.github.com/sebastianbergmann/global-state", + "keywords": [ + "global state" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/global-state/issues", + "source": "https://github.com/sebastianbergmann/global-state/tree/3.0.5" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-03-02T06:13:16+00:00" + }, + { + "name": "sebastian/object-enumerator", + "version": "3.0.5", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/object-enumerator.git", + "reference": "ac5b293dba925751b808e02923399fb44ff0d541" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/ac5b293dba925751b808e02923399fb44ff0d541", + "reference": "ac5b293dba925751b808e02923399fb44ff0d541", + "shasum": "" + }, + "require": { + "php": ">=7.0", + "sebastian/object-reflector": "^1.1.1", + "sebastian/recursion-context": "^3.0" + }, + "require-dev": { + "phpunit/phpunit": "^6.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.0.x-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", + "source": "https://github.com/sebastianbergmann/object-enumerator/tree/3.0.5" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-03-01T13:54:02+00:00" + }, + { + "name": "sebastian/object-reflector", + "version": "1.1.3", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/object-reflector.git", + "reference": "1d439c229e61f244ff1f211e5c99737f90c67def" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/1d439c229e61f244ff1f211e5c99737f90c67def", + "reference": "1d439c229e61f244ff1f211e5c99737f90c67def", + "shasum": "" + }, + "require": { + "php": ">=7.0" + }, + "require-dev": { + "phpunit/phpunit": "^6.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.1-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", + "source": "https://github.com/sebastianbergmann/object-reflector/tree/1.1.3" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-03-01T13:56:04+00:00" + }, + { + "name": "sebastian/recursion-context", + "version": "3.0.2", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/recursion-context.git", + "reference": "9bfd3c6f1f08c026f542032dfb42813544f7d64c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/9bfd3c6f1f08c026f542032dfb42813544f7d64c", + "reference": "9bfd3c6f1f08c026f542032dfb42813544f7d64c", + "shasum": "" + }, + "require": { + "php": ">=7.0" + }, + "require-dev": { + "phpunit/phpunit": "^6.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.0.x-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": "http://www.github.com/sebastianbergmann/recursion-context", + "support": { + "issues": "https://github.com/sebastianbergmann/recursion-context/issues", + "source": "https://github.com/sebastianbergmann/recursion-context/tree/3.0.2" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-03-01T14:07:30+00:00" + }, + { + "name": "sebastian/resource-operations", + "version": "2.0.3", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/resource-operations.git", + "reference": "72a7f7674d053d548003b16ff5a106e7e0e06eee" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/72a7f7674d053d548003b16ff5a106e7e0e06eee", + "reference": "72a7f7674d053d548003b16ff5a106e7e0e06eee", + "shasum": "" + }, + "require": { + "php": ">=7.1" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Provides a list of PHP built-in functions that operate on resources", + "homepage": "https://www.github.com/sebastianbergmann/resource-operations", + "support": { + "source": "https://github.com/sebastianbergmann/resource-operations/tree/2.0.3" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-03-01T13:59:09+00:00" + }, + { + "name": "sebastian/type", + "version": "1.1.5", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/type.git", + "reference": "18f071c3a29892b037d35e6b20ddf3ea39b42874" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/18f071c3a29892b037d35e6b20ddf3ea39b42874", + "reference": "18f071c3a29892b037d35e6b20ddf3ea39b42874", + "shasum": "" + }, + "require": { + "php": ">=7.2" + }, + "require-dev": { + "phpunit/phpunit": "^8.2" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.1-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", + "source": "https://github.com/sebastianbergmann/type/tree/1.1.5" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-03-01T14:04:07+00:00" + }, + { + "name": "sebastian/version", + "version": "2.0.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/version.git", + "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019", + "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019", + "shasum": "" + }, + "require": { + "php": ">=5.6" + }, + "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": "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", + "source": "https://github.com/sebastianbergmann/version/tree/master" + }, + "time": "2016-10-03T07:35:21+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" + } + ], + "aliases": [], + "minimum-stability": "stable", + "stability-flags": {}, + "prefer-stable": false, + "prefer-lowest": false, + "platform": {}, + "platform-dev": {}, + "plugin-api-version": "2.6.0" +} diff --git a/tools/psalm/composer.json b/tools/psalm/composer.json new file mode 100644 index 00000000..31528313 --- /dev/null +++ b/tools/psalm/composer.json @@ -0,0 +1,5 @@ +{ + "require-dev": { + "vimeo/psalm": "^4.6.1" + } +} diff --git a/ci/composer.lock b/tools/psalm/composer.lock similarity index 73% rename from ci/composer.lock rename to tools/psalm/composer.lock index 3d2103a4..a572f8b5 100644 --- a/ci/composer.lock +++ b/tools/psalm/composer.lock @@ -4,33 +4,34 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "d80089076cc3344b35865b5873863060", - "packages": [ + "content-hash": "9ea293dd70204512564b17dacf4c670f", + "packages": [], + "packages-dev": [ { "name": "amphp/amp", - "version": "v2.5.2", + "version": "v2.6.4", "source": { "type": "git", "url": "https://github.com/amphp/amp.git", - "reference": "efca2b32a7580087adb8aabbff6be1dc1bb924a9" + "reference": "ded3d9be08f526089eb7ee8d9f16a9768f9dec2d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/amphp/amp/zipball/efca2b32a7580087adb8aabbff6be1dc1bb924a9", - "reference": "efca2b32a7580087adb8aabbff6be1dc1bb924a9", + "url": "https://api.github.com/repos/amphp/amp/zipball/ded3d9be08f526089eb7ee8d9f16a9768f9dec2d", + "reference": "ded3d9be08f526089eb7ee8d9f16a9768f9dec2d", "shasum": "" }, "require": { - "php": ">=7" + "php": ">=7.1" }, "require-dev": { "amphp/php-cs-fixer-config": "dev-master", "amphp/phpunit-util": "^1", "ext-json": "*", "jetbrains/phpstorm-stubs": "^2019.3", - "phpunit/phpunit": "^6.0.9 | ^7", - "psalm/phar": "^3.11@dev", - "react/promise": "^2" + "phpunit/phpunit": "^7 | ^8 | ^9", + "react/promise": "^2", + "vimeo/psalm": "^3.12" }, "type": "library", "extra": { @@ -39,13 +40,13 @@ } }, "autoload": { - "psr-4": { - "Amp\\": "lib" - }, "files": [ "lib/functions.php", "lib/Internal/functions.php" - ] + ], + "psr-4": { + "Amp\\": "lib" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -70,7 +71,7 @@ } ], "description": "A non-blocking concurrency framework for PHP applications.", - "homepage": "http://amphp.org/amp", + "homepage": "https://amphp.org/amp", "keywords": [ "async", "asynchronous", @@ -85,7 +86,7 @@ "support": { "irc": "irc://irc.freenode.org/amphp", "issues": "https://github.com/amphp/amp/issues", - "source": "https://github.com/amphp/amp/tree/v2.5.2" + "source": "https://github.com/amphp/amp/tree/v2.6.4" }, "funding": [ { @@ -93,20 +94,20 @@ "type": "github" } ], - "time": "2021-01-10T17:06:37+00:00" + "time": "2024-03-21T18:52:26+00:00" }, { "name": "amphp/byte-stream", - "version": "v1.8.0", + "version": "v1.8.2", "source": { "type": "git", "url": "https://github.com/amphp/byte-stream.git", - "reference": "f0c20cf598a958ba2aa8c6e5a71c697d652c7088" + "reference": "4f0e968ba3798a423730f567b1b50d3441c16ddc" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/amphp/byte-stream/zipball/f0c20cf598a958ba2aa8c6e5a71c697d652c7088", - "reference": "f0c20cf598a958ba2aa8c6e5a71c697d652c7088", + "url": "https://api.github.com/repos/amphp/byte-stream/zipball/4f0e968ba3798a423730f567b1b50d3441c16ddc", + "reference": "4f0e968ba3798a423730f567b1b50d3441c16ddc", "shasum": "" }, "require": { @@ -122,18 +123,13 @@ "psalm/phar": "^3.11.4" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.x-dev" - } - }, "autoload": { - "psr-4": { - "Amp\\ByteStream\\": "lib" - }, "files": [ "lib/functions.php" - ] + ], + "psr-4": { + "Amp\\ByteStream\\": "lib" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -150,7 +146,7 @@ } ], "description": "A stream abstraction to make working with non-blocking I/O simple.", - "homepage": "http://amphp.org/byte-stream", + "homepage": "https://amphp.org/byte-stream", "keywords": [ "amp", "amphp", @@ -160,24 +156,29 @@ "stream" ], "support": { - "irc": "irc://irc.freenode.org/amphp", "issues": "https://github.com/amphp/byte-stream/issues", - "source": "https://github.com/amphp/byte-stream/tree/master" + "source": "https://github.com/amphp/byte-stream/tree/v1.8.2" }, - "time": "2020-06-29T18:35:05+00:00" + "funding": [ + { + "url": "https://github.com/amphp", + "type": "github" + } + ], + "time": "2024-04-13T18:00:56+00:00" }, { "name": "composer/package-versions-deprecated", - "version": "1.11.99.1", + "version": "1.11.99.5", "source": { "type": "git", "url": "https://github.com/composer/package-versions-deprecated.git", - "reference": "7413f0b55a051e89485c5cb9f765fe24bb02a7b6" + "reference": "b4f54f74ef3453349c24a845d22392cd31e65f1d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/package-versions-deprecated/zipball/7413f0b55a051e89485c5cb9f765fe24bb02a7b6", - "reference": "7413f0b55a051e89485c5cb9f765fe24bb02a7b6", + "url": "https://api.github.com/repos/composer/package-versions-deprecated/zipball/b4f54f74ef3453349c24a845d22392cd31e65f1d", + "reference": "b4f54f74ef3453349c24a845d22392cd31e65f1d", "shasum": "" }, "require": { @@ -221,7 +222,86 @@ "description": "Composer plugin that provides efficient querying for installed package versions (no runtime IO)", "support": { "issues": "https://github.com/composer/package-versions-deprecated/issues", - "source": "https://github.com/composer/package-versions-deprecated/tree/1.11.99.1" + "source": "https://github.com/composer/package-versions-deprecated/tree/1.11.99.5" + }, + "funding": [ + { + "url": "https://packagist.com", + "type": "custom" + }, + { + "url": "https://github.com/composer", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/composer/composer", + "type": "tidelift" + } + ], + "time": "2022-01-17T14:14:24+00:00" + }, + { + "name": "composer/pcre", + "version": "3.3.1", + "source": { + "type": "git", + "url": "https://github.com/composer/pcre.git", + "reference": "63aaeac21d7e775ff9bc9d45021e1745c97521c4" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/composer/pcre/zipball/63aaeac21d7e775ff9bc9d45021e1745c97521c4", + "reference": "63aaeac21d7e775ff9bc9d45021e1745c97521c4", + "shasum": "" + }, + "require": { + "php": "^7.4 || ^8.0" + }, + "conflict": { + "phpstan/phpstan": "<1.11.10" + }, + "require-dev": { + "phpstan/phpstan": "^1.11.10", + "phpstan/phpstan-strict-rules": "^1.1", + "phpunit/phpunit": "^8 || ^9" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "3.x-dev" + }, + "phpstan": { + "includes": [ + "extension.neon" + ] + } + }, + "autoload": { + "psr-4": { + "Composer\\Pcre\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Jordi Boggiano", + "email": "j.boggiano@seld.be", + "homepage": "http://seld.be" + } + ], + "description": "PCRE wrapping library that offers type-safe preg_* replacements.", + "keywords": [ + "PCRE", + "preg", + "regex", + "regular expression" + ], + "support": { + "issues": "https://github.com/composer/pcre/issues", + "source": "https://github.com/composer/pcre/tree/3.3.1" }, "funding": [ { @@ -237,28 +317,28 @@ "type": "tidelift" } ], - "time": "2020-11-11T10:22:58+00:00" + "time": "2024-08-27T18:44:43+00:00" }, { "name": "composer/semver", - "version": "3.2.4", + "version": "3.4.3", "source": { "type": "git", "url": "https://github.com/composer/semver.git", - "reference": "a02fdf930a3c1c3ed3a49b5f63859c0c20e10464" + "reference": "4313d26ada5e0c4edfbd1dc481a92ff7bff91f12" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/semver/zipball/a02fdf930a3c1c3ed3a49b5f63859c0c20e10464", - "reference": "a02fdf930a3c1c3ed3a49b5f63859c0c20e10464", + "url": "https://api.github.com/repos/composer/semver/zipball/4313d26ada5e0c4edfbd1dc481a92ff7bff91f12", + "reference": "4313d26ada5e0c4edfbd1dc481a92ff7bff91f12", "shasum": "" }, "require": { "php": "^5.3.2 || ^7.0 || ^8.0" }, "require-dev": { - "phpstan/phpstan": "^0.12.54", - "symfony/phpunit-bridge": "^4.2 || ^5" + "phpstan/phpstan": "^1.11", + "symfony/phpunit-bridge": "^3 || ^7" }, "type": "library", "extra": { @@ -300,9 +380,9 @@ "versioning" ], "support": { - "irc": "irc://irc.freenode.org/composer", + "irc": "ircs://irc.libera.chat:6697/composer", "issues": "https://github.com/composer/semver/issues", - "source": "https://github.com/composer/semver/tree/3.2.4" + "source": "https://github.com/composer/semver/tree/3.4.3" }, "funding": [ { @@ -318,28 +398,31 @@ "type": "tidelift" } ], - "time": "2020-11-13T08:59:24+00:00" + "time": "2024-09-19T14:15:21+00:00" }, { "name": "composer/xdebug-handler", - "version": "1.4.5", + "version": "3.0.5", "source": { "type": "git", "url": "https://github.com/composer/xdebug-handler.git", - "reference": "f28d44c286812c714741478d968104c5e604a1d4" + "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/f28d44c286812c714741478d968104c5e604a1d4", - "reference": "f28d44c286812c714741478d968104c5e604a1d4", + "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/6c1925561632e83d60a44492e0b344cf48ab85ef", + "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef", "shasum": "" }, "require": { - "php": "^5.3.2 || ^7.0 || ^8.0", - "psr/log": "^1.0" + "composer/pcre": "^1 || ^2 || ^3", + "php": "^7.2.5 || ^8.0", + "psr/log": "^1 || ^2 || ^3" }, "require-dev": { - "phpunit/phpunit": "^4.8.35 || ^5.7 || 6.5 - 8" + "phpstan/phpstan": "^1.0", + "phpstan/phpstan-strict-rules": "^1.1", + "phpunit/phpunit": "^8.5 || ^9.6 || ^10.5" }, "type": "library", "autoload": { @@ -363,9 +446,9 @@ "performance" ], "support": { - "irc": "irc://irc.freenode.org/composer", + "irc": "ircs://irc.libera.chat:6697/composer", "issues": "https://github.com/composer/xdebug-handler/issues", - "source": "https://github.com/composer/xdebug-handler/tree/1.4.5" + "source": "https://github.com/composer/xdebug-handler/tree/3.0.5" }, "funding": [ { @@ -381,7 +464,7 @@ "type": "tidelift" } ], - "time": "2020-11-13T08:04:11+00:00" + "time": "2024-05-06T16:37:16+00:00" }, { "name": "dnoegel/php-xdg-base-dir", @@ -420,22 +503,69 @@ }, "time": "2019-12-04T15:06:13+00:00" }, + { + "name": "doctrine/deprecations", + "version": "1.1.3", + "source": { + "type": "git", + "url": "https://github.com/doctrine/deprecations.git", + "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/deprecations/zipball/dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab", + "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab", + "shasum": "" + }, + "require": { + "php": "^7.1 || ^8.0" + }, + "require-dev": { + "doctrine/coding-standard": "^9", + "phpstan/phpstan": "1.4.10 || 1.10.15", + "phpstan/phpstan-phpunit": "^1.0", + "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5", + "psalm/plugin-phpunit": "0.18.4", + "psr/log": "^1 || ^2 || ^3", + "vimeo/psalm": "4.30.0 || 5.12.0" + }, + "suggest": { + "psr/log": "Allows logging deprecations via PSR-3 logger implementation" + }, + "type": "library", + "autoload": { + "psr-4": { + "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "A small layer on top of trigger_error(E_USER_DEPRECATED) or PSR-3 logging with options to disable all deprecations or selectively for packages.", + "homepage": "https://www.doctrine-project.org/", + "support": { + "issues": "https://github.com/doctrine/deprecations/issues", + "source": "https://github.com/doctrine/deprecations/tree/1.1.3" + }, + "time": "2024-01-30T19:34:25+00:00" + }, { "name": "felixfbecker/advanced-json-rpc", - "version": "v3.2.0", + "version": "v3.2.1", "source": { "type": "git", "url": "https://github.com/felixfbecker/php-advanced-json-rpc.git", - "reference": "06f0b06043c7438959dbdeed8bb3f699a19be22e" + "reference": "b5f37dbff9a8ad360ca341f3240dc1c168b45447" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/felixfbecker/php-advanced-json-rpc/zipball/06f0b06043c7438959dbdeed8bb3f699a19be22e", - "reference": "06f0b06043c7438959dbdeed8bb3f699a19be22e", + "url": "https://api.github.com/repos/felixfbecker/php-advanced-json-rpc/zipball/b5f37dbff9a8ad360ca341f3240dc1c168b45447", + "reference": "b5f37dbff9a8ad360ca341f3240dc1c168b45447", "shasum": "" }, "require": { - "netresearch/jsonmapper": "^1.0 || ^2.0", + "netresearch/jsonmapper": "^1.0 || ^2.0 || ^3.0 || ^4.0", "php": "^7.1 || ^8.0", "phpdocumentor/reflection-docblock": "^4.3.4 || ^5.0.0" }, @@ -461,22 +591,22 @@ "description": "A more advanced JSONRPC implementation", "support": { "issues": "https://github.com/felixfbecker/php-advanced-json-rpc/issues", - "source": "https://github.com/felixfbecker/php-advanced-json-rpc/tree/v3.2.0" + "source": "https://github.com/felixfbecker/php-advanced-json-rpc/tree/v3.2.1" }, - "time": "2021-01-10T17:48:47+00:00" + "time": "2021-06-11T22:34:44+00:00" }, { "name": "felixfbecker/language-server-protocol", - "version": "1.5.1", + "version": "v1.5.3", "source": { "type": "git", "url": "https://github.com/felixfbecker/php-language-server-protocol.git", - "reference": "9d846d1f5cf101deee7a61c8ba7caa0a975cd730" + "reference": "a9e113dbc7d849e35b8776da39edaf4313b7b6c9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/felixfbecker/php-language-server-protocol/zipball/9d846d1f5cf101deee7a61c8ba7caa0a975cd730", - "reference": "9d846d1f5cf101deee7a61c8ba7caa0a975cd730", + "url": "https://api.github.com/repos/felixfbecker/php-language-server-protocol/zipball/a9e113dbc7d849e35b8776da39edaf4313b7b6c9", + "reference": "a9e113dbc7d849e35b8776da39edaf4313b7b6c9", "shasum": "" }, "require": { @@ -517,22 +647,22 @@ ], "support": { "issues": "https://github.com/felixfbecker/php-language-server-protocol/issues", - "source": "https://github.com/felixfbecker/php-language-server-protocol/tree/1.5.1" + "source": "https://github.com/felixfbecker/php-language-server-protocol/tree/v1.5.3" }, - "time": "2021-02-22T14:02:09+00:00" + "time": "2024-04-30T00:40:11+00:00" }, { "name": "netresearch/jsonmapper", - "version": "v2.1.0", + "version": "v4.5.0", "source": { "type": "git", "url": "https://github.com/cweiske/jsonmapper.git", - "reference": "e0f1e33a71587aca81be5cffbb9746510e1fe04e" + "reference": "8e76efb98ee8b6afc54687045e1b8dba55ac76e5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/cweiske/jsonmapper/zipball/e0f1e33a71587aca81be5cffbb9746510e1fe04e", - "reference": "e0f1e33a71587aca81be5cffbb9746510e1fe04e", + "url": "https://api.github.com/repos/cweiske/jsonmapper/zipball/8e76efb98ee8b6afc54687045e1b8dba55ac76e5", + "reference": "8e76efb98ee8b6afc54687045e1b8dba55ac76e5", "shasum": "" }, "require": { @@ -540,10 +670,10 @@ "ext-pcre": "*", "ext-reflection": "*", "ext-spl": "*", - "php": ">=5.6" + "php": ">=7.1" }, "require-dev": { - "phpunit/phpunit": "~4.8.35 || ~5.7 || ~6.4 || ~7.0", + "phpunit/phpunit": "~7.5 || ~8.0 || ~9.0 || ~10.0", "squizlabs/php_codesniffer": "~3.5" }, "type": "library", @@ -568,31 +698,31 @@ "support": { "email": "cweiske@cweiske.de", "issues": "https://github.com/cweiske/jsonmapper/issues", - "source": "https://github.com/cweiske/jsonmapper/tree/master" + "source": "https://github.com/cweiske/jsonmapper/tree/v4.5.0" }, - "time": "2020-04-16T18:48:43+00:00" + "time": "2024-09-08T10:13:13+00:00" }, { "name": "nikic/php-parser", - "version": "v4.10.4", + "version": "v4.19.4", "source": { "type": "git", "url": "https://github.com/nikic/PHP-Parser.git", - "reference": "c6d052fc58cb876152f89f532b95a8d7907e7f0e" + "reference": "715f4d25e225bc47b293a8b997fe6ce99bf987d2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/c6d052fc58cb876152f89f532b95a8d7907e7f0e", - "reference": "c6d052fc58cb876152f89f532b95a8d7907e7f0e", + "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/715f4d25e225bc47b293a8b997fe6ce99bf987d2", + "reference": "715f4d25e225bc47b293a8b997fe6ce99bf987d2", "shasum": "" }, "require": { "ext-tokenizer": "*", - "php": ">=7.0" + "php": ">=7.1" }, "require-dev": { "ircmaxell/php-yacc": "^0.0.7", - "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0" + "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0" }, "bin": [ "bin/php-parse" @@ -624,9 +754,9 @@ ], "support": { "issues": "https://github.com/nikic/PHP-Parser/issues", - "source": "https://github.com/nikic/PHP-Parser/tree/v4.10.4" + "source": "https://github.com/nikic/PHP-Parser/tree/v4.19.4" }, - "time": "2020-12-20T10:01:03+00:00" + "time": "2024-09-29T15:01:53+00:00" }, { "name": "openlss/lib-array2xml", @@ -736,27 +866,35 @@ }, { "name": "phpdocumentor/reflection-docblock", - "version": "5.2.2", + "version": "5.4.1", "source": { "type": "git", "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git", - "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556" + "reference": "9d07b3f7fdcf5efec5d1609cba3c19c5ea2bdc9c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/069a785b2141f5bcf49f3e353548dc1cce6df556", - "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556", + "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/9d07b3f7fdcf5efec5d1609cba3c19c5ea2bdc9c", + "reference": "9d07b3f7fdcf5efec5d1609cba3c19c5ea2bdc9c", "shasum": "" }, "require": { + "doctrine/deprecations": "^1.1", "ext-filter": "*", - "php": "^7.2 || ^8.0", + "php": "^7.4 || ^8.0", "phpdocumentor/reflection-common": "^2.2", - "phpdocumentor/type-resolver": "^1.3", + "phpdocumentor/type-resolver": "^1.7", + "phpstan/phpdoc-parser": "^1.7", "webmozart/assert": "^1.9.1" }, "require-dev": { - "mockery/mockery": "~1.3.2" + "mockery/mockery": "~1.3.5", + "phpstan/extension-installer": "^1.1", + "phpstan/phpstan": "^1.8", + "phpstan/phpstan-mockery": "^1.1", + "phpstan/phpstan-webmozart-assert": "^1.2", + "phpunit/phpunit": "^9.5", + "vimeo/psalm": "^5.13" }, "type": "library", "extra": { @@ -780,36 +918,45 @@ }, { "name": "Jaap van Otterdijk", - "email": "account@ijaap.nl" + "email": "opensource@ijaap.nl" } ], "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.", "support": { "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues", - "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/master" + "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.4.1" }, - "time": "2020-09-03T19:13:55+00:00" + "time": "2024-05-21T05:55:05+00:00" }, { "name": "phpdocumentor/type-resolver", - "version": "1.4.0", + "version": "1.8.2", "source": { "type": "git", "url": "https://github.com/phpDocumentor/TypeResolver.git", - "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0" + "reference": "153ae662783729388a584b4361f2545e4d841e3c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0", - "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0", + "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/153ae662783729388a584b4361f2545e4d841e3c", + "reference": "153ae662783729388a584b4361f2545e4d841e3c", "shasum": "" }, "require": { - "php": "^7.2 || ^8.0", - "phpdocumentor/reflection-common": "^2.0" + "doctrine/deprecations": "^1.0", + "php": "^7.3 || ^8.0", + "phpdocumentor/reflection-common": "^2.0", + "phpstan/phpdoc-parser": "^1.13" }, "require-dev": { - "ext-tokenizer": "*" + "ext-tokenizer": "*", + "phpbench/phpbench": "^1.2", + "phpstan/extension-installer": "^1.1", + "phpstan/phpstan": "^1.8", + "phpstan/phpstan-phpunit": "^1.1", + "phpunit/phpunit": "^9.5", + "rector/rector": "^0.13.9", + "vimeo/psalm": "^4.25" }, "type": "library", "extra": { @@ -835,31 +982,78 @@ "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names", "support": { "issues": "https://github.com/phpDocumentor/TypeResolver/issues", - "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.4.0" + "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.8.2" + }, + "time": "2024-02-23T11:10:43+00:00" + }, + { + "name": "phpstan/phpdoc-parser", + "version": "1.33.0", + "source": { + "type": "git", + "url": "https://github.com/phpstan/phpdoc-parser.git", + "reference": "82a311fd3690fb2bf7b64d5c98f912b3dd746140" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/82a311fd3690fb2bf7b64d5c98f912b3dd746140", + "reference": "82a311fd3690fb2bf7b64d5c98f912b3dd746140", + "shasum": "" + }, + "require": { + "php": "^7.2 || ^8.0" + }, + "require-dev": { + "doctrine/annotations": "^2.0", + "nikic/php-parser": "^4.15", + "php-parallel-lint/php-parallel-lint": "^1.2", + "phpstan/extension-installer": "^1.0", + "phpstan/phpstan": "^1.5", + "phpstan/phpstan-phpunit": "^1.1", + "phpstan/phpstan-strict-rules": "^1.0", + "phpunit/phpunit": "^9.5", + "symfony/process": "^5.2" + }, + "type": "library", + "autoload": { + "psr-4": { + "PHPStan\\PhpDocParser\\": [ + "src/" + ] + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "PHPDoc parser with support for nullable, intersection and generic types", + "support": { + "issues": "https://github.com/phpstan/phpdoc-parser/issues", + "source": "https://github.com/phpstan/phpdoc-parser/tree/1.33.0" }, - "time": "2020-09-17T18:55:26+00:00" + "time": "2024-10-13T11:25:22+00:00" }, { "name": "psr/container", - "version": "1.0.0", + "version": "2.0.2", "source": { "type": "git", "url": "https://github.com/php-fig/container.git", - "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f" + "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f", - "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f", + "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963", + "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963", "shasum": "" }, "require": { - "php": ">=5.3.0" + "php": ">=7.4.0" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.0.x-dev" + "dev-master": "2.0.x-dev" } }, "autoload": { @@ -874,7 +1068,7 @@ "authors": [ { "name": "PHP-FIG", - "homepage": "http://www.php-fig.org/" + "homepage": "https://www.php-fig.org/" } ], "description": "Common Container Interface (PHP FIG PSR-11)", @@ -888,36 +1082,36 @@ ], "support": { "issues": "https://github.com/php-fig/container/issues", - "source": "https://github.com/php-fig/container/tree/master" + "source": "https://github.com/php-fig/container/tree/2.0.2" }, - "time": "2017-02-14T16:28:37+00:00" + "time": "2021-11-05T16:47:00+00:00" }, { "name": "psr/log", - "version": "1.1.3", + "version": "3.0.2", "source": { "type": "git", "url": "https://github.com/php-fig/log.git", - "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc" + "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc", - "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc", + "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3", + "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3", "shasum": "" }, "require": { - "php": ">=5.3.0" + "php": ">=8.0.0" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.1.x-dev" + "dev-master": "3.x-dev" } }, "autoload": { "psr-4": { - "Psr\\Log\\": "Psr/Log/" + "Psr\\Log\\": "src" } }, "notification-url": "https://packagist.org/downloads/", @@ -927,7 +1121,7 @@ "authors": [ { "name": "PHP-FIG", - "homepage": "http://www.php-fig.org/" + "homepage": "https://www.php-fig.org/" } ], "description": "Common interface for logging libraries", @@ -938,22 +1132,22 @@ "psr-3" ], "support": { - "source": "https://github.com/php-fig/log/tree/1.1.3" + "source": "https://github.com/php-fig/log/tree/3.0.2" }, - "time": "2020-03-23T09:12:05+00:00" + "time": "2024-09-11T13:17:53+00:00" }, { "name": "sebastian/diff", - "version": "4.0.4", + "version": "4.0.6", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/diff.git", - "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d" + "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/3461e3fccc7cfdfc2720be910d3bd73c69be590d", - "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d", + "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/ba01945089c3a293b01ba9badc29ad55b106b0bc", + "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc", "shasum": "" }, "require": { @@ -998,7 +1192,7 @@ ], "support": { "issues": "https://github.com/sebastianbergmann/diff/issues", - "source": "https://github.com/sebastianbergmann/diff/tree/4.0.4" + "source": "https://github.com/sebastianbergmann/diff/tree/4.0.6" }, "funding": [ { @@ -1006,54 +1200,51 @@ "type": "github" } ], - "time": "2020-10-26T13:10:38+00:00" + "time": "2024-03-02T06:30:58+00:00" }, { "name": "symfony/console", - "version": "v5.2.3", + "version": "v6.4.12", "source": { "type": "git", "url": "https://github.com/symfony/console.git", - "reference": "89d4b176d12a2946a1ae4e34906a025b7b6b135a" + "reference": "72d080eb9edf80e36c19be61f72c98ed8273b765" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/console/zipball/89d4b176d12a2946a1ae4e34906a025b7b6b135a", - "reference": "89d4b176d12a2946a1ae4e34906a025b7b6b135a", + "url": "https://api.github.com/repos/symfony/console/zipball/72d080eb9edf80e36c19be61f72c98ed8273b765", + "reference": "72d080eb9edf80e36c19be61f72c98ed8273b765", "shasum": "" }, "require": { - "php": ">=7.2.5", + "php": ">=8.1", + "symfony/deprecation-contracts": "^2.5|^3", "symfony/polyfill-mbstring": "~1.0", - "symfony/polyfill-php73": "^1.8", - "symfony/polyfill-php80": "^1.15", - "symfony/service-contracts": "^1.1|^2", - "symfony/string": "^5.1" + "symfony/service-contracts": "^2.5|^3", + "symfony/string": "^5.4|^6.0|^7.0" }, "conflict": { - "symfony/dependency-injection": "<4.4", - "symfony/dotenv": "<5.1", - "symfony/event-dispatcher": "<4.4", - "symfony/lock": "<4.4", - "symfony/process": "<4.4" + "symfony/dependency-injection": "<5.4", + "symfony/dotenv": "<5.4", + "symfony/event-dispatcher": "<5.4", + "symfony/lock": "<5.4", + "symfony/process": "<5.4" }, "provide": { - "psr/log-implementation": "1.0" + "psr/log-implementation": "1.0|2.0|3.0" }, "require-dev": { - "psr/log": "~1.0", - "symfony/config": "^4.4|^5.0", - "symfony/dependency-injection": "^4.4|^5.0", - "symfony/event-dispatcher": "^4.4|^5.0", - "symfony/lock": "^4.4|^5.0", - "symfony/process": "^4.4|^5.0", - "symfony/var-dumper": "^4.4|^5.0" - }, - "suggest": { - "psr/log": "For using the console logger", - "symfony/event-dispatcher": "", - "symfony/lock": "", - "symfony/process": "" + "psr/log": "^1|^2|^3", + "symfony/config": "^5.4|^6.0|^7.0", + "symfony/dependency-injection": "^5.4|^6.0|^7.0", + "symfony/event-dispatcher": "^5.4|^6.0|^7.0", + "symfony/http-foundation": "^6.4|^7.0", + "symfony/http-kernel": "^6.4|^7.0", + "symfony/lock": "^5.4|^6.0|^7.0", + "symfony/messenger": "^5.4|^6.0|^7.0", + "symfony/process": "^5.4|^6.0|^7.0", + "symfony/stopwatch": "^5.4|^6.0|^7.0", + "symfony/var-dumper": "^5.4|^6.0|^7.0" }, "type": "library", "autoload": { @@ -1082,12 +1273,12 @@ "homepage": "https://symfony.com", "keywords": [ "cli", - "command line", + "command-line", "console", "terminal" ], "support": { - "source": "https://github.com/symfony/console/tree/v5.2.3" + "source": "https://github.com/symfony/console/tree/v6.4.12" }, "funding": [ { @@ -1103,44 +1294,38 @@ "type": "tidelift" } ], - "time": "2021-01-28T22:06:19+00:00" + "time": "2024-09-20T08:15:52+00:00" }, { - "name": "symfony/polyfill-ctype", - "version": "v1.22.1", + "name": "symfony/deprecation-contracts", + "version": "v3.5.0", "source": { "type": "git", - "url": "https://github.com/symfony/polyfill-ctype.git", - "reference": "c6c942b1ac76c82448322025e084cadc56048b4e" + "url": "https://github.com/symfony/deprecation-contracts.git", + "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/c6c942b1ac76c82448322025e084cadc56048b4e", - "reference": "c6c942b1ac76c82448322025e084cadc56048b4e", + "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1", + "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1", "shasum": "" }, "require": { - "php": ">=7.1" - }, - "suggest": { - "ext-ctype": "For best performance" + "php": ">=8.1" }, "type": "library", "extra": { "branch-alias": { - "dev-main": "1.22-dev" + "dev-main": "3.5-dev" }, "thanks": { - "name": "symfony/polyfill", - "url": "https://github.com/symfony/polyfill" + "name": "symfony/contracts", + "url": "https://github.com/symfony/contracts" } }, "autoload": { - "psr-4": { - "Symfony\\Polyfill\\Ctype\\": "" - }, "files": [ - "bootstrap.php" + "function.php" ] }, "notification-url": "https://packagist.org/downloads/", @@ -1149,24 +1334,18 @@ ], "authors": [ { - "name": "Gert de Pagter", - "email": "BackEndTea@gmail.com" + "name": "Nicolas Grekas", + "email": "p@tchwork.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony polyfill for ctype functions", + "description": "A generic function and convention to trigger deprecation notices", "homepage": "https://symfony.com", - "keywords": [ - "compatibility", - "ctype", - "polyfill", - "portable" - ], "support": { - "source": "https://github.com/symfony/polyfill-ctype/tree/v1.22.1" + "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.0" }, "funding": [ { @@ -1182,45 +1361,45 @@ "type": "tidelift" } ], - "time": "2021-01-07T16:49:33+00:00" + "time": "2024-04-18T09:32:20+00:00" }, { - "name": "symfony/polyfill-intl-grapheme", - "version": "v1.22.1", + "name": "symfony/polyfill-ctype", + "version": "v1.31.0", "source": { "type": "git", - "url": "https://github.com/symfony/polyfill-intl-grapheme.git", - "reference": "5601e09b69f26c1828b13b6bb87cb07cddba3170" + "url": "https://github.com/symfony/polyfill-ctype.git", + "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/5601e09b69f26c1828b13b6bb87cb07cddba3170", - "reference": "5601e09b69f26c1828b13b6bb87cb07cddba3170", + "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638", + "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638", "shasum": "" }, "require": { - "php": ">=7.1" + "php": ">=7.2" + }, + "provide": { + "ext-ctype": "*" }, "suggest": { - "ext-intl": "For best performance" + "ext-ctype": "For best performance" }, "type": "library", "extra": { - "branch-alias": { - "dev-main": "1.22-dev" - }, "thanks": { "name": "symfony/polyfill", "url": "https://github.com/symfony/polyfill" } }, "autoload": { - "psr-4": { - "Symfony\\Polyfill\\Intl\\Grapheme\\": "" - }, "files": [ "bootstrap.php" - ] + ], + "psr-4": { + "Symfony\\Polyfill\\Ctype\\": "" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -1228,26 +1407,24 @@ ], "authors": [ { - "name": "Nicolas Grekas", - "email": "p@tchwork.com" + "name": "Gert de Pagter", + "email": "BackEndTea@gmail.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony polyfill for intl's grapheme_* functions", + "description": "Symfony polyfill for ctype functions", "homepage": "https://symfony.com", "keywords": [ "compatibility", - "grapheme", - "intl", + "ctype", "polyfill", - "portable", - "shim" + "portable" ], "support": { - "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.22.1" + "source": "https://github.com/symfony/polyfill-ctype/tree/v1.31.0" }, "funding": [ { @@ -1263,48 +1440,42 @@ "type": "tidelift" } ], - "time": "2021-01-22T09:19:47+00:00" + "time": "2024-09-09T11:45:10+00:00" }, { - "name": "symfony/polyfill-intl-normalizer", - "version": "v1.22.1", + "name": "symfony/polyfill-intl-grapheme", + "version": "v1.31.0", "source": { "type": "git", - "url": "https://github.com/symfony/polyfill-intl-normalizer.git", - "reference": "43a0283138253ed1d48d352ab6d0bdb3f809f248" + "url": "https://github.com/symfony/polyfill-intl-grapheme.git", + "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/43a0283138253ed1d48d352ab6d0bdb3f809f248", - "reference": "43a0283138253ed1d48d352ab6d0bdb3f809f248", + "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe", + "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe", "shasum": "" }, "require": { - "php": ">=7.1" + "php": ">=7.2" }, "suggest": { "ext-intl": "For best performance" }, "type": "library", "extra": { - "branch-alias": { - "dev-main": "1.22-dev" - }, "thanks": { "name": "symfony/polyfill", "url": "https://github.com/symfony/polyfill" } }, "autoload": { - "psr-4": { - "Symfony\\Polyfill\\Intl\\Normalizer\\": "" - }, "files": [ "bootstrap.php" ], - "classmap": [ - "Resources/stubs" - ] + "psr-4": { + "Symfony\\Polyfill\\Intl\\Grapheme\\": "" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -1320,18 +1491,18 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony polyfill for intl's Normalizer class and related functions", + "description": "Symfony polyfill for intl's grapheme_* functions", "homepage": "https://symfony.com", "keywords": [ "compatibility", + "grapheme", "intl", - "normalizer", "polyfill", "portable", "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.22.1" + "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.31.0" }, "funding": [ { @@ -1347,44 +1518,44 @@ "type": "tidelift" } ], - "time": "2021-01-22T09:19:47+00:00" + "time": "2024-09-09T11:45:10+00:00" }, { - "name": "symfony/polyfill-mbstring", - "version": "v1.22.1", + "name": "symfony/polyfill-intl-normalizer", + "version": "v1.31.0", "source": { "type": "git", - "url": "https://github.com/symfony/polyfill-mbstring.git", - "reference": "5232de97ee3b75b0360528dae24e73db49566ab1" + "url": "https://github.com/symfony/polyfill-intl-normalizer.git", + "reference": "3833d7255cc303546435cb650316bff708a1c75c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/5232de97ee3b75b0360528dae24e73db49566ab1", - "reference": "5232de97ee3b75b0360528dae24e73db49566ab1", + "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c", + "reference": "3833d7255cc303546435cb650316bff708a1c75c", "shasum": "" }, "require": { - "php": ">=7.1" + "php": ">=7.2" }, "suggest": { - "ext-mbstring": "For best performance" + "ext-intl": "For best performance" }, "type": "library", "extra": { - "branch-alias": { - "dev-main": "1.22-dev" - }, "thanks": { "name": "symfony/polyfill", "url": "https://github.com/symfony/polyfill" } }, "autoload": { - "psr-4": { - "Symfony\\Polyfill\\Mbstring\\": "" - }, "files": [ "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Intl\\Normalizer\\": "" + }, + "classmap": [ + "Resources/stubs" ] }, "notification-url": "https://packagist.org/downloads/", @@ -1401,17 +1572,18 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony polyfill for the Mbstring extension", + "description": "Symfony polyfill for intl's Normalizer class and related functions", "homepage": "https://symfony.com", "keywords": [ "compatibility", - "mbstring", + "intl", + "normalizer", "polyfill", "portable", "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.22.1" + "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.31.0" }, "funding": [ { @@ -1427,45 +1599,45 @@ "type": "tidelift" } ], - "time": "2021-01-22T09:19:47+00:00" + "time": "2024-09-09T11:45:10+00:00" }, { - "name": "symfony/polyfill-php73", - "version": "v1.22.1", + "name": "symfony/polyfill-mbstring", + "version": "v1.31.0", "source": { "type": "git", - "url": "https://github.com/symfony/polyfill-php73.git", - "reference": "a678b42e92f86eca04b7fa4c0f6f19d097fb69e2" + "url": "https://github.com/symfony/polyfill-mbstring.git", + "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/a678b42e92f86eca04b7fa4c0f6f19d097fb69e2", - "reference": "a678b42e92f86eca04b7fa4c0f6f19d097fb69e2", + "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/85181ba99b2345b0ef10ce42ecac37612d9fd341", + "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341", "shasum": "" }, "require": { - "php": ">=7.1" + "php": ">=7.2" + }, + "provide": { + "ext-mbstring": "*" + }, + "suggest": { + "ext-mbstring": "For best performance" }, "type": "library", "extra": { - "branch-alias": { - "dev-main": "1.22-dev" - }, "thanks": { "name": "symfony/polyfill", "url": "https://github.com/symfony/polyfill" } }, "autoload": { - "psr-4": { - "Symfony\\Polyfill\\Php73\\": "" - }, "files": [ "bootstrap.php" ], - "classmap": [ - "Resources/stubs" - ] + "psr-4": { + "Symfony\\Polyfill\\Mbstring\\": "" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -1481,16 +1653,17 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions", + "description": "Symfony polyfill for the Mbstring extension", "homepage": "https://symfony.com", "keywords": [ "compatibility", + "mbstring", "polyfill", "portable", "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-php73/tree/v1.22.1" + "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.31.0" }, "funding": [ { @@ -1506,42 +1679,39 @@ "type": "tidelift" } ], - "time": "2021-01-07T16:49:33+00:00" + "time": "2024-09-09T11:45:10+00:00" }, { "name": "symfony/polyfill-php80", - "version": "v1.22.1", + "version": "v1.31.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php80.git", - "reference": "dc3063ba22c2a1fd2f45ed856374d79114998f91" + "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/dc3063ba22c2a1fd2f45ed856374d79114998f91", - "reference": "dc3063ba22c2a1fd2f45ed856374d79114998f91", + "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/60328e362d4c2c802a54fcbf04f9d3fb892b4cf8", + "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8", "shasum": "" }, "require": { - "php": ">=7.1" + "php": ">=7.2" }, "type": "library", "extra": { - "branch-alias": { - "dev-main": "1.22-dev" - }, "thanks": { "name": "symfony/polyfill", "url": "https://github.com/symfony/polyfill" } }, "autoload": { - "psr-4": { - "Symfony\\Polyfill\\Php80\\": "" - }, "files": [ "bootstrap.php" ], + "psr-4": { + "Symfony\\Polyfill\\Php80\\": "" + }, "classmap": [ "Resources/stubs" ] @@ -1573,7 +1743,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-php80/tree/v1.22.1" + "source": "https://github.com/symfony/polyfill-php80/tree/v1.31.0" }, "funding": [ { @@ -1589,33 +1759,34 @@ "type": "tidelift" } ], - "time": "2021-01-07T16:49:33+00:00" + "time": "2024-09-09T11:45:10+00:00" }, { "name": "symfony/service-contracts", - "version": "v2.2.0", + "version": "v3.5.0", "source": { "type": "git", "url": "https://github.com/symfony/service-contracts.git", - "reference": "d15da7ba4957ffb8f1747218be9e1a121fd298a1" + "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/service-contracts/zipball/d15da7ba4957ffb8f1747218be9e1a121fd298a1", - "reference": "d15da7ba4957ffb8f1747218be9e1a121fd298a1", + "url": "https://api.github.com/repos/symfony/service-contracts/zipball/bd1d9e59a81d8fa4acdcea3f617c581f7475a80f", + "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f", "shasum": "" }, "require": { - "php": ">=7.2.5", - "psr/container": "^1.0" + "php": ">=8.1", + "psr/container": "^1.1|^2.0", + "symfony/deprecation-contracts": "^2.5|^3" }, - "suggest": { - "symfony/service-implementation": "" + "conflict": { + "ext-psr": "<1.1|>=2" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "2.2-dev" + "dev-main": "3.5-dev" }, "thanks": { "name": "symfony/contracts", @@ -1625,7 +1796,10 @@ "autoload": { "psr-4": { "Symfony\\Contracts\\Service\\": "" - } + }, + "exclude-from-classmap": [ + "/Test/" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -1652,7 +1826,7 @@ "standards" ], "support": { - "source": "https://github.com/symfony/service-contracts/tree/master" + "source": "https://github.com/symfony/service-contracts/tree/v3.5.0" }, "funding": [ { @@ -1668,44 +1842,48 @@ "type": "tidelift" } ], - "time": "2020-09-07T11:33:47+00:00" + "time": "2024-04-18T09:32:20+00:00" }, { "name": "symfony/string", - "version": "v5.2.3", + "version": "v7.1.5", "source": { "type": "git", "url": "https://github.com/symfony/string.git", - "reference": "c95468897f408dd0aca2ff582074423dd0455122" + "reference": "d66f9c343fa894ec2037cc928381df90a7ad4306" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/string/zipball/c95468897f408dd0aca2ff582074423dd0455122", - "reference": "c95468897f408dd0aca2ff582074423dd0455122", + "url": "https://api.github.com/repos/symfony/string/zipball/d66f9c343fa894ec2037cc928381df90a7ad4306", + "reference": "d66f9c343fa894ec2037cc928381df90a7ad4306", "shasum": "" }, "require": { - "php": ">=7.2.5", + "php": ">=8.2", "symfony/polyfill-ctype": "~1.8", "symfony/polyfill-intl-grapheme": "~1.0", "symfony/polyfill-intl-normalizer": "~1.0", - "symfony/polyfill-mbstring": "~1.0", - "symfony/polyfill-php80": "~1.15" + "symfony/polyfill-mbstring": "~1.0" + }, + "conflict": { + "symfony/translation-contracts": "<2.5" }, "require-dev": { - "symfony/error-handler": "^4.4|^5.0", - "symfony/http-client": "^4.4|^5.0", - "symfony/translation-contracts": "^1.1|^2", - "symfony/var-exporter": "^4.4|^5.0" + "symfony/emoji": "^7.1", + "symfony/error-handler": "^6.4|^7.0", + "symfony/http-client": "^6.4|^7.0", + "symfony/intl": "^6.4|^7.0", + "symfony/translation-contracts": "^2.5|^3.0", + "symfony/var-exporter": "^6.4|^7.0" }, "type": "library", "autoload": { - "psr-4": { - "Symfony\\Component\\String\\": "" - }, "files": [ "Resources/functions.php" ], + "psr-4": { + "Symfony\\Component\\String\\": "" + }, "exclude-from-classmap": [ "/Tests/" ] @@ -1735,7 +1913,7 @@ "utf8" ], "support": { - "source": "https://github.com/symfony/string/tree/v5.2.3" + "source": "https://github.com/symfony/string/tree/v7.1.5" }, "funding": [ { @@ -1751,29 +1929,30 @@ "type": "tidelift" } ], - "time": "2021-01-25T15:14:59+00:00" + "time": "2024-09-20T08:28:38+00:00" }, { "name": "vimeo/psalm", - "version": "4.6.1", + "version": "4.30.0", "source": { "type": "git", "url": "https://github.com/vimeo/psalm.git", - "reference": "e93e532e4eaad6d68c4d7b606853800eaceccc72" + "reference": "d0bc6e25d89f649e4f36a534f330f8bb4643dd69" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/vimeo/psalm/zipball/e93e532e4eaad6d68c4d7b606853800eaceccc72", - "reference": "e93e532e4eaad6d68c4d7b606853800eaceccc72", + "url": "https://api.github.com/repos/vimeo/psalm/zipball/d0bc6e25d89f649e4f36a534f330f8bb4643dd69", + "reference": "d0bc6e25d89f649e4f36a534f330f8bb4643dd69", "shasum": "" }, "require": { - "amphp/amp": "^2.1", + "amphp/amp": "^2.4.2", "amphp/byte-stream": "^1.5", "composer/package-versions-deprecated": "^1.8.0", "composer/semver": "^1.4 || ^2.0 || ^3.0", - "composer/xdebug-handler": "^1.1", + "composer/xdebug-handler": "^1.1 || ^2.0 || ^3.0", "dnoegel/php-xdg-base-dir": "^0.1.1", + "ext-ctype": "*", "ext-dom": "*", "ext-json": "*", "ext-libxml": "*", @@ -1781,20 +1960,20 @@ "ext-simplexml": "*", "ext-tokenizer": "*", "felixfbecker/advanced-json-rpc": "^3.0.3", - "felixfbecker/language-server-protocol": "^1.4", + "felixfbecker/language-server-protocol": "^1.5", "netresearch/jsonmapper": "^1.0 || ^2.0 || ^3.0 || ^4.0", - "nikic/php-parser": "^4.10.1", + "nikic/php-parser": "^4.13", "openlss/lib-array2xml": "^1.0", "php": "^7.1|^8", "sebastian/diff": "^3.0 || ^4.0", - "symfony/console": "^3.4.17 || ^4.1.6 || ^5.0", + "symfony/console": "^3.4.17 || ^4.1.6 || ^5.0 || ^6.0", + "symfony/polyfill-php80": "^1.25", "webmozart/path-util": "^2.3" }, "provide": { "psalm/psalm": "self.version" }, "require-dev": { - "amphp/amp": "^2.4.2", "bamarni/composer-bin-plugin": "^1.2", "brianium/paratest": "^4.0||^6.0", "ext-curl": "*", @@ -1802,15 +1981,17 @@ "phpdocumentor/reflection-docblock": "^5", "phpmyadmin/sql-parser": "5.1.0||dev-master", "phpspec/prophecy": ">=1.9.0", + "phpstan/phpdoc-parser": "1.2.* || 1.6.4", "phpunit/phpunit": "^9.0", - "psalm/plugin-phpunit": "^0.13", - "slevomat/coding-standard": "^6.3.11", + "psalm/plugin-phpunit": "^0.16", + "slevomat/coding-standard": "^7.0", "squizlabs/php_codesniffer": "^3.5", - "symfony/process": "^4.3", + "symfony/process": "^4.3 || ^5.0 || ^6.0", "weirdan/prophecy-shim": "^1.0 || ^2.0" }, "suggest": { - "ext-igbinary": "^2.0.5" + "ext-curl": "In order to send data to shepherd", + "ext-igbinary": "^2.0.5 is required, used to serialize caching data" }, "bin": [ "psalm", @@ -1829,13 +2010,13 @@ } }, "autoload": { - "psr-4": { - "Psalm\\": "src/Psalm/" - }, "files": [ "src/functions.php", "src/spl_object_id.php" - ] + ], + "psr-4": { + "Psalm\\": "src/Psalm/" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -1854,36 +2035,41 @@ ], "support": { "issues": "https://github.com/vimeo/psalm/issues", - "source": "https://github.com/vimeo/psalm/tree/4.6.1" + "source": "https://github.com/vimeo/psalm/tree/4.30.0" }, - "time": "2021-02-17T21:54:11+00:00" + "time": "2022-11-06T20:37:08+00:00" }, { "name": "webmozart/assert", - "version": "1.9.1", + "version": "1.11.0", "source": { "type": "git", "url": "https://github.com/webmozarts/assert.git", - "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389" + "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/webmozarts/assert/zipball/bafc69caeb4d49c39fd0779086c03a3738cbb389", - "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389", + "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991", + "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991", "shasum": "" }, "require": { - "php": "^5.3.3 || ^7.0 || ^8.0", - "symfony/polyfill-ctype": "^1.8" + "ext-ctype": "*", + "php": "^7.2 || ^8.0" }, "conflict": { "phpstan/phpstan": "<0.12.20", - "vimeo/psalm": "<3.9.1" + "vimeo/psalm": "<4.6.1 || 4.6.2" }, "require-dev": { - "phpunit/phpunit": "^4.8.36 || ^7.5.13" + "phpunit/phpunit": "^8.5.13" }, "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.10-dev" + } + }, "autoload": { "psr-4": { "Webmozart\\Assert\\": "src/" @@ -1907,9 +2093,9 @@ ], "support": { "issues": "https://github.com/webmozarts/assert/issues", - "source": "https://github.com/webmozarts/assert/tree/1.9.1" + "source": "https://github.com/webmozarts/assert/tree/1.11.0" }, - "time": "2020-07-08T17:02:28+00:00" + "time": "2022-06-03T18:03:27+00:00" }, { "name": "webmozart/path-util", @@ -1959,16 +2145,16 @@ "issues": "https://github.com/webmozart/path-util/issues", "source": "https://github.com/webmozart/path-util/tree/2.3.0" }, + "abandoned": "symfony/filesystem", "time": "2015-12-17T08:42:14+00:00" } ], - "packages-dev": [], "aliases": [], "minimum-stability": "stable", - "stability-flags": [], + "stability-flags": {}, "prefer-stable": false, "prefer-lowest": false, - "platform": [], - "platform-dev": [], - "plugin-api-version": "2.0.0" + "platform": {}, + "platform-dev": {}, + "plugin-api-version": "2.6.0" } diff --git a/tools/roave-bc-check/composer.json b/tools/roave-bc-check/composer.json new file mode 100644 index 00000000..bdbe8a9a --- /dev/null +++ b/tools/roave-bc-check/composer.json @@ -0,0 +1,5 @@ +{ + "require-dev": { + "roave/backward-compatibility-check": "^8.10" + } +} diff --git a/tools/roave-bc-check/composer.lock b/tools/roave-bc-check/composer.lock new file mode 100644 index 00000000..90efb136 --- /dev/null +++ b/tools/roave-bc-check/composer.lock @@ -0,0 +1,2758 @@ +{ + "_readme": [ + "This file locks the dependencies of your project to a known state", + "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", + "This file is @generated automatically" + ], + "content-hash": "2d19c63baad41ea376c162772616a2f8", + "packages": [], + "packages-dev": [ + { + "name": "azjezz/psl", + "version": "3.0.2", + "source": { + "type": "git", + "url": "https://github.com/azjezz/psl.git", + "reference": "6683d60ba4d3abf8b4a4a9d94c39d0d08caa0214" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/azjezz/psl/zipball/6683d60ba4d3abf8b4a4a9d94c39d0d08caa0214", + "reference": "6683d60ba4d3abf8b4a4a9d94c39d0d08caa0214", + "shasum": "" + }, + "require": { + "ext-bcmath": "*", + "ext-intl": "*", + "ext-json": "*", + "ext-mbstring": "*", + "ext-sodium": "*", + "php": "~8.2.0 || ~8.3.0", + "revolt/event-loop": "^1.0.6" + }, + "require-dev": { + "friendsofphp/php-cs-fixer": "^3.52.1", + "php-coveralls/php-coveralls": "^2.7.0", + "php-standard-library/psalm-plugin": "^2.3.0", + "phpbench/phpbench": "^1.2.15", + "phpunit/phpunit": "^9.6.18", + "roave/infection-static-analysis-plugin": "^1.35.0", + "squizlabs/php_codesniffer": "^3.9.0", + "vimeo/psalm": "^5.23.1" + }, + "suggest": { + "php-standard-library/phpstan-extension": "PHPStan integration", + "php-standard-library/psalm-plugin": "Psalm integration" + }, + "type": "library", + "extra": { + "thanks": { + "name": "hhvm/hsl", + "url": "https://github.com/hhvm/hsl" + } + }, + "autoload": { + "files": [ + "src/bootstrap.php" + ], + "psr-4": { + "Psl\\": "src/Psl" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "azjezz", + "email": "azjezz@protonmail.com" + } + ], + "description": "PHP Standard Library", + "support": { + "issues": "https://github.com/azjezz/psl/issues", + "source": "https://github.com/azjezz/psl/tree/3.0.2" + }, + "funding": [ + { + "url": "https://github.com/azjezz", + "type": "github" + } + ], + "time": "2024-09-13T10:34:56+00:00" + }, + { + "name": "beberlei/assert", + "version": "v3.3.2", + "source": { + "type": "git", + "url": "https://github.com/beberlei/assert.git", + "reference": "cb70015c04be1baee6f5f5c953703347c0ac1655" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/beberlei/assert/zipball/cb70015c04be1baee6f5f5c953703347c0ac1655", + "reference": "cb70015c04be1baee6f5f5c953703347c0ac1655", + "shasum": "" + }, + "require": { + "ext-ctype": "*", + "ext-json": "*", + "ext-mbstring": "*", + "ext-simplexml": "*", + "php": "^7.0 || ^8.0" + }, + "require-dev": { + "friendsofphp/php-cs-fixer": "*", + "phpstan/phpstan": "*", + "phpunit/phpunit": ">=6.0.0", + "yoast/phpunit-polyfills": "^0.1.0" + }, + "suggest": { + "ext-intl": "Needed to allow Assertion::count(), Assertion::isCountable(), Assertion::minCount(), and Assertion::maxCount() to operate on ResourceBundles" + }, + "type": "library", + "autoload": { + "files": [ + "lib/Assert/functions.php" + ], + "psr-4": { + "Assert\\": "lib/Assert" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-2-Clause" + ], + "authors": [ + { + "name": "Benjamin Eberlei", + "email": "kontakt@beberlei.de", + "role": "Lead Developer" + }, + { + "name": "Richard Quadling", + "email": "rquadling@gmail.com", + "role": "Collaborator" + } + ], + "description": "Thin assertion library for input validation in business models.", + "keywords": [ + "assert", + "assertion", + "validation" + ], + "support": { + "issues": "https://github.com/beberlei/assert/issues", + "source": "https://github.com/beberlei/assert/tree/v3.3.2" + }, + "time": "2021-12-16T21:41:27+00:00" + }, + { + "name": "composer/ca-bundle", + "version": "1.5.2", + "source": { + "type": "git", + "url": "https://github.com/composer/ca-bundle.git", + "reference": "48a792895a2b7a6ee65dd5442c299d7b835b6137" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/composer/ca-bundle/zipball/48a792895a2b7a6ee65dd5442c299d7b835b6137", + "reference": "48a792895a2b7a6ee65dd5442c299d7b835b6137", + "shasum": "" + }, + "require": { + "ext-openssl": "*", + "ext-pcre": "*", + "php": "^7.2 || ^8.0" + }, + "require-dev": { + "phpstan/phpstan": "^1.10", + "phpunit/phpunit": "^8 || ^9", + "psr/log": "^1.0 || ^2.0 || ^3.0", + "symfony/process": "^4.0 || ^5.0 || ^6.0 || ^7.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.x-dev" + } + }, + "autoload": { + "psr-4": { + "Composer\\CaBundle\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Jordi Boggiano", + "email": "j.boggiano@seld.be", + "homepage": "http://seld.be" + } + ], + "description": "Lets you find a path to the system CA bundle, and includes a fallback to the Mozilla CA bundle.", + "keywords": [ + "cabundle", + "cacert", + "certificate", + "ssl", + "tls" + ], + "support": { + "irc": "irc://irc.freenode.org/composer", + "issues": "https://github.com/composer/ca-bundle/issues", + "source": "https://github.com/composer/ca-bundle/tree/1.5.2" + }, + "funding": [ + { + "url": "https://packagist.com", + "type": "custom" + }, + { + "url": "https://github.com/composer", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/composer/composer", + "type": "tidelift" + } + ], + "time": "2024-09-25T07:49:53+00:00" + }, + { + "name": "composer/class-map-generator", + "version": "1.4.0", + "source": { + "type": "git", + "url": "https://github.com/composer/class-map-generator.git", + "reference": "98bbf6780e56e0fd2404fe4b82eb665a0f93b783" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/composer/class-map-generator/zipball/98bbf6780e56e0fd2404fe4b82eb665a0f93b783", + "reference": "98bbf6780e56e0fd2404fe4b82eb665a0f93b783", + "shasum": "" + }, + "require": { + "composer/pcre": "^2.1 || ^3.1", + "php": "^7.2 || ^8.0", + "symfony/finder": "^4.4 || ^5.3 || ^6 || ^7" + }, + "require-dev": { + "phpstan/phpstan": "^1.6", + "phpstan/phpstan-deprecation-rules": "^1", + "phpstan/phpstan-phpunit": "^1", + "phpstan/phpstan-strict-rules": "^1.1", + "phpunit/phpunit": "^8", + "symfony/filesystem": "^5.4 || ^6" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.x-dev" + } + }, + "autoload": { + "psr-4": { + "Composer\\ClassMapGenerator\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Jordi Boggiano", + "email": "j.boggiano@seld.be", + "homepage": "https://seld.be" + } + ], + "description": "Utilities to scan PHP code and generate class maps.", + "keywords": [ + "classmap" + ], + "support": { + "issues": "https://github.com/composer/class-map-generator/issues", + "source": "https://github.com/composer/class-map-generator/tree/1.4.0" + }, + "funding": [ + { + "url": "https://packagist.com", + "type": "custom" + }, + { + "url": "https://github.com/composer", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/composer/composer", + "type": "tidelift" + } + ], + "time": "2024-10-03T18:14:00+00:00" + }, + { + "name": "composer/composer", + "version": "2.8.1", + "source": { + "type": "git", + "url": "https://github.com/composer/composer.git", + "reference": "e52b8672276cf436670cdd6bd5de4353740e83b2" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/composer/composer/zipball/e52b8672276cf436670cdd6bd5de4353740e83b2", + "reference": "e52b8672276cf436670cdd6bd5de4353740e83b2", + "shasum": "" + }, + "require": { + "composer/ca-bundle": "^1.5", + "composer/class-map-generator": "^1.4.0", + "composer/metadata-minifier": "^1.0", + "composer/pcre": "^2.2 || ^3.2", + "composer/semver": "^3.3", + "composer/spdx-licenses": "^1.5.7", + "composer/xdebug-handler": "^2.0.2 || ^3.0.3", + "justinrainbow/json-schema": "^5.3", + "php": "^7.2.5 || ^8.0", + "psr/log": "^1.0 || ^2.0 || ^3.0", + "react/promise": "^3.2", + "seld/jsonlint": "^1.4", + "seld/phar-utils": "^1.2", + "seld/signal-handler": "^2.0", + "symfony/console": "^5.4.35 || ^6.3.12 || ^7.0.3", + "symfony/filesystem": "^5.4.35 || ^6.3.12 || ^7.0.3", + "symfony/finder": "^5.4.35 || ^6.3.12 || ^7.0.3", + "symfony/polyfill-php73": "^1.24", + "symfony/polyfill-php80": "^1.24", + "symfony/polyfill-php81": "^1.24", + "symfony/process": "^5.4.35 || ^6.3.12 || ^7.0.3" + }, + "require-dev": { + "phpstan/phpstan": "^1.11.8", + "phpstan/phpstan-deprecation-rules": "^1.2.0", + "phpstan/phpstan-phpunit": "^1.4.0", + "phpstan/phpstan-strict-rules": "^1.6.0", + "phpstan/phpstan-symfony": "^1.4.0", + "symfony/phpunit-bridge": "^6.4.3 || ^7.0.1" + }, + "suggest": { + "ext-openssl": "Enabling the openssl extension allows you to access https URLs for repositories and packages", + "ext-zip": "Enabling the zip extension allows you to unzip archives", + "ext-zlib": "Allow gzip compression of HTTP requests" + }, + "bin": [ + "bin/composer" + ], + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "2.8-dev" + }, + "phpstan": { + "includes": [ + "phpstan/rules.neon" + ] + } + }, + "autoload": { + "psr-4": { + "Composer\\": "src/Composer/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nils Adermann", + "email": "naderman@naderman.de", + "homepage": "https://www.naderman.de" + }, + { + "name": "Jordi Boggiano", + "email": "j.boggiano@seld.be", + "homepage": "https://seld.be" + } + ], + "description": "Composer helps you declare, manage and install dependencies of PHP projects. It ensures you have the right stack everywhere.", + "homepage": "https://getcomposer.org/", + "keywords": [ + "autoload", + "dependency", + "package" + ], + "support": { + "irc": "ircs://irc.libera.chat:6697/composer", + "issues": "https://github.com/composer/composer/issues", + "security": "https://github.com/composer/composer/security/policy", + "source": "https://github.com/composer/composer/tree/2.8.1" + }, + "funding": [ + { + "url": "https://packagist.com", + "type": "custom" + }, + { + "url": "https://github.com/composer", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/composer/composer", + "type": "tidelift" + } + ], + "time": "2024-10-04T09:31:01+00:00" + }, + { + "name": "composer/metadata-minifier", + "version": "1.0.0", + "source": { + "type": "git", + "url": "https://github.com/composer/metadata-minifier.git", + "reference": "c549d23829536f0d0e984aaabbf02af91f443207" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/composer/metadata-minifier/zipball/c549d23829536f0d0e984aaabbf02af91f443207", + "reference": "c549d23829536f0d0e984aaabbf02af91f443207", + "shasum": "" + }, + "require": { + "php": "^5.3.2 || ^7.0 || ^8.0" + }, + "require-dev": { + "composer/composer": "^2", + "phpstan/phpstan": "^0.12.55", + "symfony/phpunit-bridge": "^4.2 || ^5" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.x-dev" + } + }, + "autoload": { + "psr-4": { + "Composer\\MetadataMinifier\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Jordi Boggiano", + "email": "j.boggiano@seld.be", + "homepage": "http://seld.be" + } + ], + "description": "Small utility library that handles metadata minification and expansion.", + "keywords": [ + "composer", + "compression" + ], + "support": { + "issues": "https://github.com/composer/metadata-minifier/issues", + "source": "https://github.com/composer/metadata-minifier/tree/1.0.0" + }, + "funding": [ + { + "url": "https://packagist.com", + "type": "custom" + }, + { + "url": "https://github.com/composer", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/composer/composer", + "type": "tidelift" + } + ], + "time": "2021-04-07T13:37:33+00:00" + }, + { + "name": "composer/pcre", + "version": "3.3.1", + "source": { + "type": "git", + "url": "https://github.com/composer/pcre.git", + "reference": "63aaeac21d7e775ff9bc9d45021e1745c97521c4" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/composer/pcre/zipball/63aaeac21d7e775ff9bc9d45021e1745c97521c4", + "reference": "63aaeac21d7e775ff9bc9d45021e1745c97521c4", + "shasum": "" + }, + "require": { + "php": "^7.4 || ^8.0" + }, + "conflict": { + "phpstan/phpstan": "<1.11.10" + }, + "require-dev": { + "phpstan/phpstan": "^1.11.10", + "phpstan/phpstan-strict-rules": "^1.1", + "phpunit/phpunit": "^8 || ^9" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "3.x-dev" + }, + "phpstan": { + "includes": [ + "extension.neon" + ] + } + }, + "autoload": { + "psr-4": { + "Composer\\Pcre\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Jordi Boggiano", + "email": "j.boggiano@seld.be", + "homepage": "http://seld.be" + } + ], + "description": "PCRE wrapping library that offers type-safe preg_* replacements.", + "keywords": [ + "PCRE", + "preg", + "regex", + "regular expression" + ], + "support": { + "issues": "https://github.com/composer/pcre/issues", + "source": "https://github.com/composer/pcre/tree/3.3.1" + }, + "funding": [ + { + "url": "https://packagist.com", + "type": "custom" + }, + { + "url": "https://github.com/composer", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/composer/composer", + "type": "tidelift" + } + ], + "time": "2024-08-27T18:44:43+00:00" + }, + { + "name": "composer/semver", + "version": "3.4.3", + "source": { + "type": "git", + "url": "https://github.com/composer/semver.git", + "reference": "4313d26ada5e0c4edfbd1dc481a92ff7bff91f12" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/composer/semver/zipball/4313d26ada5e0c4edfbd1dc481a92ff7bff91f12", + "reference": "4313d26ada5e0c4edfbd1dc481a92ff7bff91f12", + "shasum": "" + }, + "require": { + "php": "^5.3.2 || ^7.0 || ^8.0" + }, + "require-dev": { + "phpstan/phpstan": "^1.11", + "symfony/phpunit-bridge": "^3 || ^7" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "3.x-dev" + } + }, + "autoload": { + "psr-4": { + "Composer\\Semver\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nils Adermann", + "email": "naderman@naderman.de", + "homepage": "http://www.naderman.de" + }, + { + "name": "Jordi Boggiano", + "email": "j.boggiano@seld.be", + "homepage": "http://seld.be" + }, + { + "name": "Rob Bast", + "email": "rob.bast@gmail.com", + "homepage": "http://robbast.nl" + } + ], + "description": "Semver library that offers utilities, version constraint parsing and validation.", + "keywords": [ + "semantic", + "semver", + "validation", + "versioning" + ], + "support": { + "irc": "ircs://irc.libera.chat:6697/composer", + "issues": "https://github.com/composer/semver/issues", + "source": "https://github.com/composer/semver/tree/3.4.3" + }, + "funding": [ + { + "url": "https://packagist.com", + "type": "custom" + }, + { + "url": "https://github.com/composer", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/composer/composer", + "type": "tidelift" + } + ], + "time": "2024-09-19T14:15:21+00:00" + }, + { + "name": "composer/spdx-licenses", + "version": "1.5.8", + "source": { + "type": "git", + "url": "https://github.com/composer/spdx-licenses.git", + "reference": "560bdcf8deb88ae5d611c80a2de8ea9d0358cc0a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/composer/spdx-licenses/zipball/560bdcf8deb88ae5d611c80a2de8ea9d0358cc0a", + "reference": "560bdcf8deb88ae5d611c80a2de8ea9d0358cc0a", + "shasum": "" + }, + "require": { + "php": "^5.3.2 || ^7.0 || ^8.0" + }, + "require-dev": { + "phpstan/phpstan": "^0.12.55", + "symfony/phpunit-bridge": "^4.2 || ^5" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.x-dev" + } + }, + "autoload": { + "psr-4": { + "Composer\\Spdx\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nils Adermann", + "email": "naderman@naderman.de", + "homepage": "http://www.naderman.de" + }, + { + "name": "Jordi Boggiano", + "email": "j.boggiano@seld.be", + "homepage": "http://seld.be" + }, + { + "name": "Rob Bast", + "email": "rob.bast@gmail.com", + "homepage": "http://robbast.nl" + } + ], + "description": "SPDX licenses list and validation library.", + "keywords": [ + "license", + "spdx", + "validator" + ], + "support": { + "irc": "ircs://irc.libera.chat:6697/composer", + "issues": "https://github.com/composer/spdx-licenses/issues", + "source": "https://github.com/composer/spdx-licenses/tree/1.5.8" + }, + "funding": [ + { + "url": "https://packagist.com", + "type": "custom" + }, + { + "url": "https://github.com/composer", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/composer/composer", + "type": "tidelift" + } + ], + "time": "2023-11-20T07:44:33+00:00" + }, + { + "name": "composer/xdebug-handler", + "version": "3.0.5", + "source": { + "type": "git", + "url": "https://github.com/composer/xdebug-handler.git", + "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/6c1925561632e83d60a44492e0b344cf48ab85ef", + "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef", + "shasum": "" + }, + "require": { + "composer/pcre": "^1 || ^2 || ^3", + "php": "^7.2.5 || ^8.0", + "psr/log": "^1 || ^2 || ^3" + }, + "require-dev": { + "phpstan/phpstan": "^1.0", + "phpstan/phpstan-strict-rules": "^1.1", + "phpunit/phpunit": "^8.5 || ^9.6 || ^10.5" + }, + "type": "library", + "autoload": { + "psr-4": { + "Composer\\XdebugHandler\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "John Stevenson", + "email": "john-stevenson@blueyonder.co.uk" + } + ], + "description": "Restarts a process without Xdebug.", + "keywords": [ + "Xdebug", + "performance" + ], + "support": { + "irc": "ircs://irc.libera.chat:6697/composer", + "issues": "https://github.com/composer/xdebug-handler/issues", + "source": "https://github.com/composer/xdebug-handler/tree/3.0.5" + }, + "funding": [ + { + "url": "https://packagist.com", + "type": "custom" + }, + { + "url": "https://github.com/composer", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/composer/composer", + "type": "tidelift" + } + ], + "time": "2024-05-06T16:37:16+00:00" + }, + { + "name": "jetbrains/phpstorm-stubs", + "version": "v2023.3", + "source": { + "type": "git", + "url": "https://github.com/JetBrains/phpstorm-stubs.git", + "reference": "99d8bcab934ae5362f33660b1cd4b8c4d617c40b" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/JetBrains/phpstorm-stubs/zipball/99d8bcab934ae5362f33660b1cd4b8c4d617c40b", + "reference": "99d8bcab934ae5362f33660b1cd4b8c4d617c40b", + "shasum": "" + }, + "require-dev": { + "friendsofphp/php-cs-fixer": "@stable", + "nikic/php-parser": "@stable", + "php": "^8.0", + "phpdocumentor/reflection-docblock": "@stable", + "phpunit/phpunit": "^9.6" + }, + "type": "library", + "autoload": { + "files": [ + "PhpStormStubsMap.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "Apache-2.0" + ], + "description": "PHP runtime & extensions header files for PhpStorm", + "homepage": "https://www.jetbrains.com/phpstorm", + "keywords": [ + "autocomplete", + "code", + "inference", + "inspection", + "jetbrains", + "phpstorm", + "stubs", + "type" + ], + "support": { + "source": "https://github.com/JetBrains/phpstorm-stubs/tree/v2023.3" + }, + "time": "2023-11-01T18:52:29+00:00" + }, + { + "name": "justinrainbow/json-schema", + "version": "5.3.0", + "source": { + "type": "git", + "url": "https://github.com/jsonrainbow/json-schema.git", + "reference": "feb2ca6dd1cebdaf1ed60a4c8de2e53ce11c4fd8" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/jsonrainbow/json-schema/zipball/feb2ca6dd1cebdaf1ed60a4c8de2e53ce11c4fd8", + "reference": "feb2ca6dd1cebdaf1ed60a4c8de2e53ce11c4fd8", + "shasum": "" + }, + "require": { + "php": ">=7.1" + }, + "require-dev": { + "friendsofphp/php-cs-fixer": "~2.2.20||~2.15.1", + "json-schema/json-schema-test-suite": "1.2.0", + "phpunit/phpunit": "^4.8.35" + }, + "bin": [ + "bin/validate-json" + ], + "type": "library", + "autoload": { + "psr-4": { + "JsonSchema\\": "src/JsonSchema/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Bruno Prieto Reis", + "email": "bruno.p.reis@gmail.com" + }, + { + "name": "Justin Rainbow", + "email": "justin.rainbow@gmail.com" + }, + { + "name": "Igor Wiedler", + "email": "igor@wiedler.ch" + }, + { + "name": "Robert Schönthal", + "email": "seroscho@googlemail.com" + } + ], + "description": "A library to validate a json schema.", + "homepage": "https://github.com/justinrainbow/json-schema", + "keywords": [ + "json", + "schema" + ], + "support": { + "issues": "https://github.com/jsonrainbow/json-schema/issues", + "source": "https://github.com/jsonrainbow/json-schema/tree/5.3.0" + }, + "time": "2024-07-06T21:00:26+00:00" + }, + { + "name": "nikic/php-parser", + "version": "v4.19.4", + "source": { + "type": "git", + "url": "https://github.com/nikic/PHP-Parser.git", + "reference": "715f4d25e225bc47b293a8b997fe6ce99bf987d2" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/715f4d25e225bc47b293a8b997fe6ce99bf987d2", + "reference": "715f4d25e225bc47b293a8b997fe6ce99bf987d2", + "shasum": "" + }, + "require": { + "ext-tokenizer": "*", + "php": ">=7.1" + }, + "require-dev": { + "ircmaxell/php-yacc": "^0.0.7", + "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0" + }, + "bin": [ + "bin/php-parse" + ], + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "4.9-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/v4.19.4" + }, + "time": "2024-09-29T15:01:53+00:00" + }, + { + "name": "nikolaposa/version", + "version": "4.2.0", + "source": { + "type": "git", + "url": "https://github.com/nikolaposa/version.git", + "reference": "003fefa14f47cd44917546285e39d196af062a95" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/nikolaposa/version/zipball/003fefa14f47cd44917546285e39d196af062a95", + "reference": "003fefa14f47cd44917546285e39d196af062a95", + "shasum": "" + }, + "require": { + "beberlei/assert": "^3.2", + "php": "^8.1" + }, + "require-dev": { + "friendsofphp/php-cs-fixer": "^3.44", + "phpstan/phpstan": "^1.10", + "phpstan/phpstan-beberlei-assert": "^1.1", + "phpstan/phpstan-phpunit": "^1.3", + "phpunit/phpunit": "^10.5" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "4.2.x-dev" + } + }, + "autoload": { + "psr-4": { + "Version\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nikola Poša", + "email": "posa.nikola@gmail.com", + "homepage": "https://www.nikolaposa.in.rs" + } + ], + "description": "Value Object that represents a SemVer-compliant version number.", + "homepage": "https://github.com/nikolaposa/version", + "keywords": [ + "semantic", + "semver", + "version", + "versioning" + ], + "support": { + "issues": "https://github.com/nikolaposa/version/issues", + "source": "https://github.com/nikolaposa/version/tree/4.2.0" + }, + "time": "2023-12-29T22:07:54+00:00" + }, + { + "name": "ocramius/package-versions", + "version": "2.9.0", + "source": { + "type": "git", + "url": "https://github.com/Ocramius/PackageVersions.git", + "reference": "b3397b9b4578989929d3bc2602c26fe19f035095" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/Ocramius/PackageVersions/zipball/b3397b9b4578989929d3bc2602c26fe19f035095", + "reference": "b3397b9b4578989929d3bc2602c26fe19f035095", + "shasum": "" + }, + "require": { + "composer-runtime-api": "^2.2.0", + "php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0" + }, + "replace": { + "composer/package-versions-deprecated": "*" + }, + "require-dev": { + "composer/composer": "^2.7.7", + "doctrine/coding-standard": "^12.0.0", + "ext-zip": "^1.15.0", + "phpunit/phpunit": "^9.6.20", + "roave/infection-static-analysis-plugin": "^1.35.0", + "vimeo/psalm": "^5.25.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "PackageVersions\\": "src/PackageVersions" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Marco Pivetta", + "email": "ocramius@gmail.com" + } + ], + "description": "Provides efficient querying for installed package versions (no runtime IO)", + "support": { + "issues": "https://github.com/Ocramius/PackageVersions/issues", + "source": "https://github.com/Ocramius/PackageVersions/tree/2.9.0" + }, + "funding": [ + { + "url": "https://github.com/Ocramius", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/ocramius/package-versions", + "type": "tidelift" + } + ], + "time": "2024-08-04T10:04:51+00:00" + }, + { + "name": "psr/container", + "version": "2.0.2", + "source": { + "type": "git", + "url": "https://github.com/php-fig/container.git", + "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963", + "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963", + "shasum": "" + }, + "require": { + "php": ">=7.4.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\Container\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" + } + ], + "description": "Common Container Interface (PHP FIG PSR-11)", + "homepage": "https://github.com/php-fig/container", + "keywords": [ + "PSR-11", + "container", + "container-interface", + "container-interop", + "psr" + ], + "support": { + "issues": "https://github.com/php-fig/container/issues", + "source": "https://github.com/php-fig/container/tree/2.0.2" + }, + "time": "2021-11-05T16:47:00+00:00" + }, + { + "name": "psr/log", + "version": "3.0.2", + "source": { + "type": "git", + "url": "https://github.com/php-fig/log.git", + "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3", + "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3", + "shasum": "" + }, + "require": { + "php": ">=8.0.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\Log\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" + } + ], + "description": "Common interface for logging libraries", + "homepage": "https://github.com/php-fig/log", + "keywords": [ + "log", + "psr", + "psr-3" + ], + "support": { + "source": "https://github.com/php-fig/log/tree/3.0.2" + }, + "time": "2024-09-11T13:17:53+00:00" + }, + { + "name": "react/promise", + "version": "v3.2.0", + "source": { + "type": "git", + "url": "https://github.com/reactphp/promise.git", + "reference": "8a164643313c71354582dc850b42b33fa12a4b63" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/reactphp/promise/zipball/8a164643313c71354582dc850b42b33fa12a4b63", + "reference": "8a164643313c71354582dc850b42b33fa12a4b63", + "shasum": "" + }, + "require": { + "php": ">=7.1.0" + }, + "require-dev": { + "phpstan/phpstan": "1.10.39 || 1.4.10", + "phpunit/phpunit": "^9.6 || ^7.5" + }, + "type": "library", + "autoload": { + "files": [ + "src/functions_include.php" + ], + "psr-4": { + "React\\Promise\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Jan Sorgalla", + "email": "jsorgalla@gmail.com", + "homepage": "https://sorgalla.com/" + }, + { + "name": "Christian Lück", + "email": "christian@clue.engineering", + "homepage": "https://clue.engineering/" + }, + { + "name": "Cees-Jan Kiewiet", + "email": "reactphp@ceesjankiewiet.nl", + "homepage": "https://wyrihaximus.net/" + }, + { + "name": "Chris Boden", + "email": "cboden@gmail.com", + "homepage": "https://cboden.dev/" + } + ], + "description": "A lightweight implementation of CommonJS Promises/A for PHP", + "keywords": [ + "promise", + "promises" + ], + "support": { + "issues": "https://github.com/reactphp/promise/issues", + "source": "https://github.com/reactphp/promise/tree/v3.2.0" + }, + "funding": [ + { + "url": "https://opencollective.com/reactphp", + "type": "open_collective" + } + ], + "time": "2024-05-24T10:39:05+00:00" + }, + { + "name": "revolt/event-loop", + "version": "v1.0.6", + "source": { + "type": "git", + "url": "https://github.com/revoltphp/event-loop.git", + "reference": "25de49af7223ba039f64da4ae9a28ec2d10d0254" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/revoltphp/event-loop/zipball/25de49af7223ba039f64da4ae9a28ec2d10d0254", + "reference": "25de49af7223ba039f64da4ae9a28ec2d10d0254", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "require-dev": { + "ext-json": "*", + "jetbrains/phpstorm-stubs": "^2019.3", + "phpunit/phpunit": "^9", + "psalm/phar": "^5.15" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.x-dev" + } + }, + "autoload": { + "psr-4": { + "Revolt\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Aaron Piotrowski", + "email": "aaron@trowski.com" + }, + { + "name": "Cees-Jan Kiewiet", + "email": "ceesjank@gmail.com" + }, + { + "name": "Christian Lück", + "email": "christian@clue.engineering" + }, + { + "name": "Niklas Keller", + "email": "me@kelunik.com" + } + ], + "description": "Rock-solid event loop for concurrent PHP applications.", + "keywords": [ + "async", + "asynchronous", + "concurrency", + "event", + "event-loop", + "non-blocking", + "scheduler" + ], + "support": { + "issues": "https://github.com/revoltphp/event-loop/issues", + "source": "https://github.com/revoltphp/event-loop/tree/v1.0.6" + }, + "time": "2023-11-30T05:34:44+00:00" + }, + { + "name": "roave/backward-compatibility-check", + "version": "8.10.0", + "source": { + "type": "git", + "url": "https://github.com/Roave/BackwardCompatibilityCheck.git", + "reference": "52bcebf0edad5f216c0d0816972f19799bf11802" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/Roave/BackwardCompatibilityCheck/zipball/52bcebf0edad5f216c0d0816972f19799bf11802", + "reference": "52bcebf0edad5f216c0d0816972f19799bf11802", + "shasum": "" + }, + "require": { + "azjezz/psl": "^3.0.2", + "composer/composer": "^2.7.6", + "nikic/php-parser": "^4.19.1", + "nikolaposa/version": "^4.2.0", + "ocramius/package-versions": "^2.8.0", + "php": "~8.2.0 || ~8.3.0", + "roave/better-reflection": "^6.26.0", + "symfony/console": "^7.0.7" + }, + "conflict": { + "revolt/event-loop": "<0.2.5", + "symfony/process": "<5.3.7" + }, + "require-dev": { + "doctrine/coding-standard": "^12.0.0", + "estahn/phpunit-json-assertions": "^4.0", + "php-standard-library/psalm-plugin": "^2.3.0", + "phpunit/phpunit": "^9.6.19", + "psalm/plugin-phpunit": "^0.19.0", + "roave/infection-static-analysis-plugin": "^1.35.0", + "roave/security-advisories": "dev-master", + "squizlabs/php_codesniffer": "^3.10.0", + "vimeo/psalm": "^5.24.0" + }, + "bin": [ + "bin/roave-backward-compatibility-check" + ], + "type": "library", + "autoload": { + "psr-4": { + "Roave\\BackwardCompatibility\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "James Titcumb", + "email": "james@asgrim.com" + }, + { + "name": "Marco Pivetta", + "email": "ocramius@gmail.com" + } + ], + "description": "Tool to compare two revisions of a public API to check for BC breaks", + "support": { + "issues": "https://github.com/Roave/BackwardCompatibilityCheck/issues", + "source": "https://github.com/Roave/BackwardCompatibilityCheck/tree/8.10.0" + }, + "time": "2024-10-08T20:10:06+00:00" + }, + { + "name": "roave/better-reflection", + "version": "6.26.0", + "source": { + "type": "git", + "url": "https://github.com/Roave/BetterReflection.git", + "reference": "658309b70c5afd7b9cfaad20c18aff3943cce23a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/Roave/BetterReflection/zipball/658309b70c5afd7b9cfaad20c18aff3943cce23a", + "reference": "658309b70c5afd7b9cfaad20c18aff3943cce23a", + "shasum": "" + }, + "require": { + "ext-json": "*", + "jetbrains/phpstorm-stubs": "2023.3", + "nikic/php-parser": "^4.18.0", + "php": "~8.2.0 || ~8.3.2", + "roave/signature": "^1.8.0" + }, + "conflict": { + "thecodingmachine/safe": "<1.1.3" + }, + "suggest": { + "composer/composer": "Required to use the ComposerSourceLocator" + }, + "type": "library", + "autoload": { + "psr-4": { + "Roave\\BetterReflection\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "James Titcumb", + "email": "james@asgrim.com", + "homepage": "https://github.com/asgrim" + }, + { + "name": "Marco Pivetta", + "email": "ocramius@gmail.com", + "homepage": "https://ocramius.github.io/" + }, + { + "name": "Gary Hockin", + "email": "gary@roave.com", + "homepage": "https://github.com/geeh" + }, + { + "name": "Jaroslav Hanslík", + "email": "kukulich@kukulich.cz", + "homepage": "https://github.com/kukulich" + } + ], + "description": "Better Reflection - an improved code reflection API", + "support": { + "issues": "https://github.com/Roave/BetterReflection/issues", + "source": "https://github.com/Roave/BetterReflection/tree/6.26.0" + }, + "time": "2024-03-11T17:43:07+00:00" + }, + { + "name": "roave/signature", + "version": "1.8.0", + "source": { + "type": "git", + "url": "https://github.com/Roave/Signature.git", + "reference": "f92ce20f82c9a1df3b50fc56fbdaeb82cf4c9c5b" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/Roave/Signature/zipball/f92ce20f82c9a1df3b50fc56fbdaeb82cf4c9c5b", + "reference": "f92ce20f82c9a1df3b50fc56fbdaeb82cf4c9c5b", + "shasum": "" + }, + "require": { + "php": "~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0" + }, + "require-dev": { + "doctrine/coding-standard": "^12.0.0", + "infection/infection": "^0.26.19", + "phpunit/phpunit": "^9.6.7", + "vimeo/psalm": "^5.9.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Roave\\Signature\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "Sign and verify stuff", + "support": { + "issues": "https://github.com/Roave/Signature/issues", + "source": "https://github.com/Roave/Signature/tree/1.8.0" + }, + "time": "2023-11-25T00:11:29+00:00" + }, + { + "name": "seld/jsonlint", + "version": "1.11.0", + "source": { + "type": "git", + "url": "https://github.com/Seldaek/jsonlint.git", + "reference": "1748aaf847fc731cfad7725aec413ee46f0cc3a2" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/Seldaek/jsonlint/zipball/1748aaf847fc731cfad7725aec413ee46f0cc3a2", + "reference": "1748aaf847fc731cfad7725aec413ee46f0cc3a2", + "shasum": "" + }, + "require": { + "php": "^5.3 || ^7.0 || ^8.0" + }, + "require-dev": { + "phpstan/phpstan": "^1.11", + "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^8.5.13" + }, + "bin": [ + "bin/jsonlint" + ], + "type": "library", + "autoload": { + "psr-4": { + "Seld\\JsonLint\\": "src/Seld/JsonLint/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Jordi Boggiano", + "email": "j.boggiano@seld.be", + "homepage": "https://seld.be" + } + ], + "description": "JSON Linter", + "keywords": [ + "json", + "linter", + "parser", + "validator" + ], + "support": { + "issues": "https://github.com/Seldaek/jsonlint/issues", + "source": "https://github.com/Seldaek/jsonlint/tree/1.11.0" + }, + "funding": [ + { + "url": "https://github.com/Seldaek", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/seld/jsonlint", + "type": "tidelift" + } + ], + "time": "2024-07-11T14:55:45+00:00" + }, + { + "name": "seld/phar-utils", + "version": "1.2.1", + "source": { + "type": "git", + "url": "https://github.com/Seldaek/phar-utils.git", + "reference": "ea2f4014f163c1be4c601b9b7bd6af81ba8d701c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/Seldaek/phar-utils/zipball/ea2f4014f163c1be4c601b9b7bd6af81ba8d701c", + "reference": "ea2f4014f163c1be4c601b9b7bd6af81ba8d701c", + "shasum": "" + }, + "require": { + "php": ">=5.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.x-dev" + } + }, + "autoload": { + "psr-4": { + "Seld\\PharUtils\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Jordi Boggiano", + "email": "j.boggiano@seld.be" + } + ], + "description": "PHAR file format utilities, for when PHP phars you up", + "keywords": [ + "phar" + ], + "support": { + "issues": "https://github.com/Seldaek/phar-utils/issues", + "source": "https://github.com/Seldaek/phar-utils/tree/1.2.1" + }, + "time": "2022-08-31T10:31:18+00:00" + }, + { + "name": "seld/signal-handler", + "version": "2.0.2", + "source": { + "type": "git", + "url": "https://github.com/Seldaek/signal-handler.git", + "reference": "04a6112e883ad76c0ada8e4a9f7520bbfdb6bb98" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/Seldaek/signal-handler/zipball/04a6112e883ad76c0ada8e4a9f7520bbfdb6bb98", + "reference": "04a6112e883ad76c0ada8e4a9f7520bbfdb6bb98", + "shasum": "" + }, + "require": { + "php": ">=7.2.0" + }, + "require-dev": { + "phpstan/phpstan": "^1", + "phpstan/phpstan-deprecation-rules": "^1.0", + "phpstan/phpstan-phpunit": "^1", + "phpstan/phpstan-strict-rules": "^1.3", + "phpunit/phpunit": "^7.5.20 || ^8.5.23", + "psr/log": "^1 || ^2 || ^3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "2.x-dev" + } + }, + "autoload": { + "psr-4": { + "Seld\\Signal\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Jordi Boggiano", + "email": "j.boggiano@seld.be", + "homepage": "http://seld.be" + } + ], + "description": "Simple unix signal handler that silently fails where signals are not supported for easy cross-platform development", + "keywords": [ + "posix", + "sigint", + "signal", + "sigterm", + "unix" + ], + "support": { + "issues": "https://github.com/Seldaek/signal-handler/issues", + "source": "https://github.com/Seldaek/signal-handler/tree/2.0.2" + }, + "time": "2023-09-03T09:24:00+00:00" + }, + { + "name": "symfony/console", + "version": "v7.1.5", + "source": { + "type": "git", + "url": "https://github.com/symfony/console.git", + "reference": "0fa539d12b3ccf068a722bbbffa07ca7079af9ee" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/console/zipball/0fa539d12b3ccf068a722bbbffa07ca7079af9ee", + "reference": "0fa539d12b3ccf068a722bbbffa07ca7079af9ee", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "symfony/polyfill-mbstring": "~1.0", + "symfony/service-contracts": "^2.5|^3", + "symfony/string": "^6.4|^7.0" + }, + "conflict": { + "symfony/dependency-injection": "<6.4", + "symfony/dotenv": "<6.4", + "symfony/event-dispatcher": "<6.4", + "symfony/lock": "<6.4", + "symfony/process": "<6.4" + }, + "provide": { + "psr/log-implementation": "1.0|2.0|3.0" + }, + "require-dev": { + "psr/log": "^1|^2|^3", + "symfony/config": "^6.4|^7.0", + "symfony/dependency-injection": "^6.4|^7.0", + "symfony/event-dispatcher": "^6.4|^7.0", + "symfony/http-foundation": "^6.4|^7.0", + "symfony/http-kernel": "^6.4|^7.0", + "symfony/lock": "^6.4|^7.0", + "symfony/messenger": "^6.4|^7.0", + "symfony/process": "^6.4|^7.0", + "symfony/stopwatch": "^6.4|^7.0", + "symfony/var-dumper": "^6.4|^7.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Console\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Eases the creation of beautiful and testable command line interfaces", + "homepage": "https://symfony.com", + "keywords": [ + "cli", + "command-line", + "console", + "terminal" + ], + "support": { + "source": "https://github.com/symfony/console/tree/v7.1.5" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-09-20T08:28:38+00:00" + }, + { + "name": "symfony/deprecation-contracts", + "version": "v3.5.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/deprecation-contracts.git", + "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1", + "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "3.5-dev" + }, + "thanks": { + "name": "symfony/contracts", + "url": "https://github.com/symfony/contracts" + } + }, + "autoload": { + "files": [ + "function.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "A generic function and convention to trigger deprecation notices", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-04-18T09:32:20+00:00" + }, + { + "name": "symfony/filesystem", + "version": "v7.1.5", + "source": { + "type": "git", + "url": "https://github.com/symfony/filesystem.git", + "reference": "61fe0566189bf32e8cfee78335d8776f64a66f5a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/filesystem/zipball/61fe0566189bf32e8cfee78335d8776f64a66f5a", + "reference": "61fe0566189bf32e8cfee78335d8776f64a66f5a", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "symfony/polyfill-ctype": "~1.8", + "symfony/polyfill-mbstring": "~1.8" + }, + "require-dev": { + "symfony/process": "^6.4|^7.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Filesystem\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Provides basic utilities for the filesystem", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/filesystem/tree/v7.1.5" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-09-17T09:16:35+00:00" + }, + { + "name": "symfony/finder", + "version": "v7.1.4", + "source": { + "type": "git", + "url": "https://github.com/symfony/finder.git", + "reference": "d95bbf319f7d052082fb7af147e0f835a695e823" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/finder/zipball/d95bbf319f7d052082fb7af147e0f835a695e823", + "reference": "d95bbf319f7d052082fb7af147e0f835a695e823", + "shasum": "" + }, + "require": { + "php": ">=8.2" + }, + "require-dev": { + "symfony/filesystem": "^6.4|^7.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Finder\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Finds files and directories via an intuitive fluent interface", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/finder/tree/v7.1.4" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-08-13T14:28:19+00:00" + }, + { + "name": "symfony/polyfill-ctype", + "version": "v1.31.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-ctype.git", + "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638", + "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638", + "shasum": "" + }, + "require": { + "php": ">=7.2" + }, + "provide": { + "ext-ctype": "*" + }, + "suggest": { + "ext-ctype": "For best performance" + }, + "type": "library", + "extra": { + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Ctype\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Gert de Pagter", + "email": "BackEndTea@gmail.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill for ctype functions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "ctype", + "polyfill", + "portable" + ], + "support": { + "source": "https://github.com/symfony/polyfill-ctype/tree/v1.31.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-09-09T11:45:10+00:00" + }, + { + "name": "symfony/polyfill-intl-grapheme", + "version": "v1.31.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-intl-grapheme.git", + "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe", + "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe", + "shasum": "" + }, + "require": { + "php": ">=7.2" + }, + "suggest": { + "ext-intl": "For best performance" + }, + "type": "library", + "extra": { + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Intl\\Grapheme\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill for intl's grapheme_* functions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "grapheme", + "intl", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.31.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-09-09T11:45:10+00:00" + }, + { + "name": "symfony/polyfill-intl-normalizer", + "version": "v1.31.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-intl-normalizer.git", + "reference": "3833d7255cc303546435cb650316bff708a1c75c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c", + "reference": "3833d7255cc303546435cb650316bff708a1c75c", + "shasum": "" + }, + "require": { + "php": ">=7.2" + }, + "suggest": { + "ext-intl": "For best performance" + }, + "type": "library", + "extra": { + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Intl\\Normalizer\\": "" + }, + "classmap": [ + "Resources/stubs" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill for intl's Normalizer class and related functions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "intl", + "normalizer", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.31.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-09-09T11:45:10+00:00" + }, + { + "name": "symfony/polyfill-mbstring", + "version": "v1.31.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-mbstring.git", + "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/85181ba99b2345b0ef10ce42ecac37612d9fd341", + "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341", + "shasum": "" + }, + "require": { + "php": ">=7.2" + }, + "provide": { + "ext-mbstring": "*" + }, + "suggest": { + "ext-mbstring": "For best performance" + }, + "type": "library", + "extra": { + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Mbstring\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill for the Mbstring extension", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "mbstring", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.31.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-09-09T11:45:10+00:00" + }, + { + "name": "symfony/polyfill-php73", + "version": "v1.31.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-php73.git", + "reference": "0f68c03565dcaaf25a890667542e8bd75fe7e5bb" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/0f68c03565dcaaf25a890667542e8bd75fe7e5bb", + "reference": "0f68c03565dcaaf25a890667542e8bd75fe7e5bb", + "shasum": "" + }, + "require": { + "php": ">=7.2" + }, + "type": "library", + "extra": { + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Php73\\": "" + }, + "classmap": [ + "Resources/stubs" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-php73/tree/v1.31.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-09-09T11:45:10+00:00" + }, + { + "name": "symfony/polyfill-php80", + "version": "v1.31.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-php80.git", + "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/60328e362d4c2c802a54fcbf04f9d3fb892b4cf8", + "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8", + "shasum": "" + }, + "require": { + "php": ">=7.2" + }, + "type": "library", + "extra": { + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Php80\\": "" + }, + "classmap": [ + "Resources/stubs" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Ion Bazan", + "email": "ion.bazan@gmail.com" + }, + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-php80/tree/v1.31.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-09-09T11:45:10+00:00" + }, + { + "name": "symfony/polyfill-php81", + "version": "v1.31.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-php81.git", + "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c", + "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c", + "shasum": "" + }, + "require": { + "php": ">=7.2" + }, + "type": "library", + "extra": { + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Php81\\": "" + }, + "classmap": [ + "Resources/stubs" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-php81/tree/v1.31.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-09-09T11:45:10+00:00" + }, + { + "name": "symfony/process", + "version": "v7.1.5", + "source": { + "type": "git", + "url": "https://github.com/symfony/process.git", + "reference": "5c03ee6369281177f07f7c68252a280beccba847" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/process/zipball/5c03ee6369281177f07f7c68252a280beccba847", + "reference": "5c03ee6369281177f07f7c68252a280beccba847", + "shasum": "" + }, + "require": { + "php": ">=8.2" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Process\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Executes commands in sub-processes", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/process/tree/v7.1.5" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-09-19T21:48:23+00:00" + }, + { + "name": "symfony/service-contracts", + "version": "v3.5.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/service-contracts.git", + "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/service-contracts/zipball/bd1d9e59a81d8fa4acdcea3f617c581f7475a80f", + "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "psr/container": "^1.1|^2.0", + "symfony/deprecation-contracts": "^2.5|^3" + }, + "conflict": { + "ext-psr": "<1.1|>=2" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "3.5-dev" + }, + "thanks": { + "name": "symfony/contracts", + "url": "https://github.com/symfony/contracts" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Contracts\\Service\\": "" + }, + "exclude-from-classmap": [ + "/Test/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Generic abstractions related to writing services", + "homepage": "https://symfony.com", + "keywords": [ + "abstractions", + "contracts", + "decoupling", + "interfaces", + "interoperability", + "standards" + ], + "support": { + "source": "https://github.com/symfony/service-contracts/tree/v3.5.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-04-18T09:32:20+00:00" + }, + { + "name": "symfony/string", + "version": "v7.1.5", + "source": { + "type": "git", + "url": "https://github.com/symfony/string.git", + "reference": "d66f9c343fa894ec2037cc928381df90a7ad4306" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/string/zipball/d66f9c343fa894ec2037cc928381df90a7ad4306", + "reference": "d66f9c343fa894ec2037cc928381df90a7ad4306", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "symfony/polyfill-ctype": "~1.8", + "symfony/polyfill-intl-grapheme": "~1.0", + "symfony/polyfill-intl-normalizer": "~1.0", + "symfony/polyfill-mbstring": "~1.0" + }, + "conflict": { + "symfony/translation-contracts": "<2.5" + }, + "require-dev": { + "symfony/emoji": "^7.1", + "symfony/error-handler": "^6.4|^7.0", + "symfony/http-client": "^6.4|^7.0", + "symfony/intl": "^6.4|^7.0", + "symfony/translation-contracts": "^2.5|^3.0", + "symfony/var-exporter": "^6.4|^7.0" + }, + "type": "library", + "autoload": { + "files": [ + "Resources/functions.php" + ], + "psr-4": { + "Symfony\\Component\\String\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way", + "homepage": "https://symfony.com", + "keywords": [ + "grapheme", + "i18n", + "string", + "unicode", + "utf-8", + "utf8" + ], + "support": { + "source": "https://github.com/symfony/string/tree/v7.1.5" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-09-20T08:28:38+00:00" + } + ], + "aliases": [], + "minimum-stability": "stable", + "stability-flags": [], + "prefer-stable": false, + "prefer-lowest": false, + "platform": [], + "platform-dev": [], + "plugin-api-version": "2.6.0" +}