From beed9380245d94ab0ea3bed063c97b7599a5741d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 11 Mar 2026 14:31:45 +0000 Subject: [PATCH] bump rowbot/url from 1.1.1 to 4.1.0 Bumps [rowbot/url](https://github.com/TRowbotham/URL-Parser) from 1.1.1 to 4.1.0. - [Release notes](https://github.com/TRowbotham/URL-Parser/releases) - [Changelog](https://github.com/TRowbotham/URL-Parser/blob/master/CHANGELOG.md) - [Commits](https://github.com/TRowbotham/URL-Parser/compare/1.1.1...4.1.0) --- updated-dependencies: - dependency-name: rowbot/url dependency-version: 4.1.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- composer.json | 2 +- composer.lock | 349 +++++++++++++++++++++++++++++++++++++++++++++++--- 2 files changed, 334 insertions(+), 17 deletions(-) diff --git a/composer.json b/composer.json index 8ef00a7..7829ee9 100644 --- a/composer.json +++ b/composer.json @@ -16,7 +16,7 @@ } }, "require": { - "rowbot/url": "^1.1" + "rowbot/url": "^4.1" }, "require-dev": { "bamarni/composer-bin-plugin": "^1.8", diff --git a/composer.lock b/composer.lock index a08e079..24ba2db 100644 --- a/composer.lock +++ b/composer.lock @@ -4,31 +4,263 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "e836a9522a37d22b5ae5255a6e721a5c", + "content-hash": "aeb839d5c0ebd1c86380a4cc1e364bdd", "packages": [ + { + "name": "brick/math", + "version": "0.13.1", + "source": { + "type": "git", + "url": "https://github.com/brick/math.git", + "reference": "fc7ed316430118cc7836bf45faff18d5dfc8de04" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/brick/math/zipball/fc7ed316430118cc7836bf45faff18d5dfc8de04", + "reference": "fc7ed316430118cc7836bf45faff18d5dfc8de04", + "shasum": "" + }, + "require": { + "php": "^8.1" + }, + "require-dev": { + "php-coveralls/php-coveralls": "^2.2", + "phpunit/phpunit": "^10.1", + "vimeo/psalm": "6.8.8" + }, + "type": "library", + "autoload": { + "psr-4": { + "Brick\\Math\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "Arbitrary-precision arithmetic library", + "keywords": [ + "Arbitrary-precision", + "BigInteger", + "BigRational", + "arithmetic", + "bigdecimal", + "bignum", + "bignumber", + "brick", + "decimal", + "integer", + "math", + "mathematics", + "rational" + ], + "support": { + "issues": "https://github.com/brick/math/issues", + "source": "https://github.com/brick/math/tree/0.13.1" + }, + "funding": [ + { + "url": "https://github.com/BenMorel", + "type": "github" + } + ], + "time": "2025-03-29T13:50:30+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": "rowbot/idna", + "version": "0.3.0", + "source": { + "type": "git", + "url": "https://github.com/TRowbotham/idna.git", + "reference": "504900acc8e465a17668a61ae30391d1aebbb4f2" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/TRowbotham/idna/zipball/504900acc8e465a17668a61ae30391d1aebbb4f2", + "reference": "504900acc8e465a17668a61ae30391d1aebbb4f2", + "shasum": "" + }, + "require": { + "ext-mbstring": "*", + "php": ">=8.1", + "rowbot/punycode": "^1.0", + "symfony/polyfill-intl-normalizer": "^1.18" + }, + "require-dev": { + "guzzlehttp/guzzle": "^6.5 || ^7.0", + "phpstan/phpstan": "^2.1", + "phpstan/phpstan-deprecation-rules": "^2.0", + "phpstan/phpstan-strict-rules": "^2.0", + "phpunit/phpunit": "^10.0 || ^11.0 || ^12.0", + "squizlabs/php_codesniffer": "^3.7.1", + "symfony/cache": "^5.0 || ^6.0 || ^7.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Rowbot\\Idna\\": "src/", + "Rowbot\\Idna\\Resource\\": "resources/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Trevor Rowbotham" + } + ], + "description": "An implementation of UTS#46 Unicode IDNA Compatibility Processing.", + "keywords": [ + "idn", + "idna", + "international domain names", + "iri", + "tr46", + "unicode", + "uts46" + ], + "support": { + "issues": "https://github.com/TRowbotham/idna/issues", + "source": "https://github.com/TRowbotham/idna/tree/0.3.0" + }, + "time": "2025-09-19T00:30:13+00:00" + }, + { + "name": "rowbot/punycode", + "version": "1.0.4", + "source": { + "type": "git", + "url": "https://github.com/TRowbotham/punycode.git", + "reference": "ec116e99cb089a25d45147813d61bfa2deb29328" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/TRowbotham/punycode/zipball/ec116e99cb089a25d45147813d61bfa2deb29328", + "reference": "ec116e99cb089a25d45147813d61bfa2deb29328", + "shasum": "" + }, + "require": { + "php": ">=7.1" + }, + "require-dev": { + "ext-mbstring": "*", + "phpstan/phpstan": "^1.2", + "phpstan/phpstan-deprecation-rules": "^1.0", + "phpstan/phpstan-strict-rules": "^1.0", + "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0", + "squizlabs/php_codesniffer": "^3.5.1" + }, + "type": "library", + "autoload": { + "psr-4": { + "Rowbot\\Punycode\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Trevor Rowbotham", + "homepage": "https://trowbotham.com", + "role": "Developer" + } + ], + "description": "A Bootstring encoding of Unicode for Internationalized Domain Names in Applications (IDNA).", + "keywords": [ + "punycode", + "rfc-3492", + "rfc3492" + ], + "support": { + "issues": "https://github.com/TRowbotham/punycode/issues", + "source": "https://github.com/TRowbotham/punycode/tree/1.0.4" + }, + "time": "2024-05-03T00:56:10+00:00" + }, { "name": "rowbot/url", - "version": "1.1.1", + "version": "4.1.0", "source": { "type": "git", "url": "https://github.com/TRowbotham/URL-Parser.git", - "reference": "f07bbf289b25471d6268474465ce80dec288bd56" + "reference": "3087a67802a11796590e4bb9507981e48b077529" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/TRowbotham/URL-Parser/zipball/f07bbf289b25471d6268474465ce80dec288bd56", - "reference": "f07bbf289b25471d6268474465ce80dec288bd56", + "url": "https://api.github.com/repos/TRowbotham/URL-Parser/zipball/3087a67802a11796590e4bb9507981e48b077529", + "reference": "3087a67802a11796590e4bb9507981e48b077529", "shasum": "" }, "require": { - "ext-gmp": "*", - "ext-intl": "*", + "brick/math": "^0.12 || ^0.13", "ext-mbstring": "*", - "php": ">=5.6" + "php": ">=8.1", + "psr/log": "^3.0", + "rowbot/idna": "^0.3.0" }, "require-dev": { - "phpunit/phpunit": "^5.7", - "squizlabs/php_codesniffer": "3.*" + "guzzlehttp/guzzle": "^7.0", + "phpstan/phpstan": "^2.1", + "phpstan/phpstan-deprecation-rules": "^2.0", + "phpstan/phpstan-strict-rules": "^2.0", + "phpunit/phpunit": "^10.0 || ^11.0 || ^12.0", + "slevomat/coding-standard": "^8.0", + "squizlabs/php_codesniffer": "^3.7.1", + "symfony/cache": "^5.0 || ^6.0 || ^7.0" }, "type": "library", "autoload": { @@ -43,7 +275,7 @@ "authors": [ { "name": "Trevor Rowbotham", - "homepage": "http://trowbotham.com", + "homepage": "https://trowbotham.com", "role": "Developer" } ], @@ -59,9 +291,94 @@ ], "support": { "issues": "https://github.com/TRowbotham/URL-Parser/issues", - "source": "https://github.com/TRowbotham/URL-Parser/tree/master" + "source": "https://github.com/TRowbotham/URL-Parser/tree/4.1.0" + }, + "time": "2025-09-19T00:44:16+00:00" + }, + { + "name": "symfony/polyfill-intl-normalizer", + "version": "v1.33.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": { + "url": "https://github.com/symfony/polyfill", + "name": "symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Intl\\Normalizer\\": "" + }, + "classmap": [ + "Resources/stubs" + ] }, - "time": "2018-08-16T00:23:09+00:00" + "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.33.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-09-09T11:45:10+00:00" } ], "packages-dev": [ @@ -1160,10 +1477,10 @@ }, "prefer-stable": false, "prefer-lowest": false, - "platform": [], - "platform-dev": [], + "platform": {}, + "platform-dev": {}, "platform-overrides": { "php": "8.3" }, - "plugin-api-version": "2.6.0" + "plugin-api-version": "2.9.0" }