Skip to content

Update dependency rmccue/requests to v2#8

Open
renovate[bot] wants to merge 1 commit intomasterfrom
renovate/rmccue-requests-2.x
Open

Update dependency rmccue/requests to v2#8
renovate[bot] wants to merge 1 commit intomasterfrom
renovate/rmccue-requests-2.x

Conversation

@renovate
Copy link
Copy Markdown

@renovate renovate bot commented Mar 27, 2026

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence
rmccue/requests (source) ^1.6^2.0 age confidence

Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

WordPress/Requests (rmccue/requests)

v2.0.17

Compare Source

Overview of changes
  • Update bundled certificates as of 2025-12-02. #​1000
  • General housekeeping.

v2.0.16

Compare Source

Overview of changes
  • Update bundled certificates as of 2025-11-04. #​954
  • Fixed: PHP 8.5 deprecation notices for Reflection*::setAccessible() #​940
  • Fixed: PHP 8.5 deprecation notices for curl_close() #​947 Props [@​TobiasBg][gh-TobiasBg]
  • Fixed: PHP 8.5 deprecation notices Using null as an array offset #​956
  • Fixed: Disallow FilteredIterator to accept objects (PHP 8.5 deprecation). #​968
    Note: This is technically a breaking change as this was documented behaviour. However, FilteredIterator is an internal class and the only detected use of this behavior was in a test.
  • Fixed: tests for expired and revoked SSL certificates. #​967
  • Composer: remove roave/security-advisories (no longer needed with Composer 2.9+). #​961
  • README: corrected Python Requests library URL. #​944 Props [@​pmbaldha][gh-pmbaldha]
  • General housekeeping.

v2.0.15

Compare Source

Overview of changes
  • Update bundled certificates as of 2024-12-31. #​919
  • General housekeeping.

v2.0.14

Compare Source

Overview of changes
  • Update bundled certificates as of 2024-11-26. #​910
  • Confirmed compatibility with PHP 8.4.
    No new changes were needed, so Request 2.0.11 and higher can be considered compatible with PHP 8.4.
  • Various other general housekeeping.

v2.0.13

Compare Source

Overview of changes
  • Update bundled certificates as of 2024-09-24. #​900
  • Various minor documentation improvements and other general housekeeping.

v2.0.12

Compare Source

Overview of changes
  • Update bundled certificates as of 2024-07-02. #​877

v2.0.11

Compare Source

Overview of changes
  • Update bundled certificates as of 2024-03-11. #​864
  • Fixed: PHP 8.4 deprecation of the two parameter signature of stream_context_set_option(). #​822 Props [@​jrfnl][gh-jrfnl]
  • Fixed: PHP 8.4 deprecation of implicitly nullable parameter. #​865 Props [@​Ayesh][gh-ayesh], [@​jrfnl][gh-jrfnl]
    Note: this fix constitutes an, albeit small, breaking change to the signature of the Cookie::parse_from_headers() method.
    Classes which extend the Cookie class and overload the parse_from_headers() method should be updated for the new method signature.
    Additionally, if code calling the Cookie::parse_from_headers() method would be wrapped in a try - catch to catch a potential PHP TypeError (PHP 7.0+) or Exception (PHP < 7.0) for when invalid data was passed as the $origin parameter, this code will need to be updated to now also catch a potential WpOrg\Requests\Exception\InvalidArgumentException.
    As due diligence could not find any classes which would be affected by this BC-break, we have deemed it acceptable to include this fix in the 2.0.11 release.

v2.0.10

Compare Source

Overview of changes
  • Update bundled certificates as of 2023-12-04. #​850

v2.0.9

Compare Source

Overview of changes

v2.0.8

Compare Source

Overview of changes
  • Update bundled certificates as of 2023-08-22. #​823
  • Fixed: only force close cURL connection when needed (cURL < 7.22). #​656, #​657 Props [@​mircobabini][gh-mircobabini]
  • Composer: updated list of suggested PHP extensions to enable. #​821
  • README: add information about the PSR-7/PSR-18 wrapper for Requests. #​827

v2.0.7

Compare Source

Overview of changes
  • Update bundled certificates as of 2023-05-30. #​809

v2.0.6

Compare Source

Overview of changes
  • Update bundled certificates as of 2023-01-10. #​791
  • Fix typo in deprecation notice. #​785 Props [@​costdev][gh-costdev]
  • Minor internal improvements for passing the correct type to function calls. #​779
  • Confirmed compatibility with PHP 8.2.
    No changes were needed, so Request 2.0.1 and higher can be considered compatible with PHP 8.2.
  • Various documentation improvements and other general housekeeping.

v2.0.5

Compare Source

Overview of changes
  • Update bundled certificates as of 2022-10-11. #​769

v2.0.4

Compare Source

Overview of changes
  • Update bundled certificates as of 2022-07-19. #​763

v2.0.3

Compare Source

Overview of changes
  • Update bundled certificates as of 2022-04-26. #​731

v2.0.2

Compare Source

Overview of changes
  • Update bundled certificates as of 2022-03-18. #​697

v2.0.1

Compare Source

Overview of changes
  • Update bundled certificates as of 2025-12-02. #​1000
  • General housekeeping.

v2.0.0

Compare Source

BREAKING CHANGES

As Requests 2.0.0 is a major release, this version contains breaking changes. There is an upgrade guide available to guide you through making the necessary changes in your own code.

Overview of changes
  • New minimum PHP version

    Support for PHP 5.2 - 5.5 has been dropped. The new minimum supported PHP version is now 5.6.

    Support for HHVM has also been dropped formally now.

    (props [@​datagutten][gh-datagutten], [@​jrfnl][gh-jrfnl], [@​schlessera][gh-schlessera], #​378, #​470, #​509)

  • New release branch name

    The stable version of Requests can be found in the stable branch (was master).
    Development of Requests happens in the develop branch.

    (props [@​jrfnl][gh-jrfnl], [@​schlessera][gh-schlessera], #​463, #​490)

  • All code is now namespaced (PSR-4)

    The code within the Requests library has all been namespaced and now lives in the WpOrg\Requests namespace.

    The namespaced classes can be found in the src directory. The old library directory and the files within are deprecated.

    For a number of classes, some subtle changes have also been made to their base class name, like renaming the Hooker interface to HookManager.

    A full backward-compatibility layer is available and using the non-namespaced class names will still work during the 2.x and 3.x release cycles, though a deprecation notice will be thrown the first time a class using one of the old PSR-0 based class names is requested.
    For the lifetime of Requests 2.x, the deprecation notices can be disabled by defining a global REQUESTS_SILENCE_PSR0_DEPRECATIONS constant and
    setting the value of this constant to true.

    A complete "translation table" between the Requests 1.x and 2.x class names is available in the upgrade guide.

    Users of the Requests native custom autoloader will need to adjust their code to initialize the autoloader:

    // OLD: Using the custom autoloader in Requests 1.x.
    require_once 'path/to/Requests/library/Requests.php';
    Requests::register_autoloader();
    
    // NEW: Using the custom autoloader in Requests 2.x.
    require_once 'path/to/Requests/src/Autoload.php';
    WpOrg\Requests\Autoload::register();

    (props [@​jrfnl][gh-jrfnl], [@​schlessera][gh-schlessera], #​503, #​519, #​586, #​587, #​594)

  • A large number of classes have been marked as final

    Marking a class as final prohibits extending it.

    These changes were made after researching which classes were being extended in userland code and due diligence has been applied before making these changes. If this change is causing a problem we didn't anticipate, please open an issue to report it.

    (props [@​jrfnl][gh-jrfnl], [@​schlessera][gh-schlessera], #​514, #​534)

  • Input validation

    All typical entry point methods in Requests will now, directly or indirectly, validate the received input parameters for being of the correct type.
    When an incorrect parameter type is received, a catchable WpOrg\Requests\Exception\InvalidArgument exception will be thrown.

    The input validation has been set up to be reasonably liberal, so if Requests was being used as per the documentation, this change should not affect you.
    If you still find the input validation to be too strict and you have a good use-case of why it should be loosened for a particular entry point, please open an issue to discuss this.

    The code within Requests itself has also received various improvements to be more type safe.

    (props [@​jrfnl][gh-jrfnl], [@​schlessera][gh-schlessera], #​499, #​542, #​547, #​558, #​572, #​573, #​574, #​591, #​592, #​593, #​601, #​602, #​603, #​604, #​605, #​609, #​610, #​611, #​613, #​614, #​615, #​620, #​621, #​629)

  • Update bundled certificates

    The bundled certificates were updated with the latest version available (published 2021-10-26).

    Previously the bundled certificates in Requests would include a small subset of expired certificates for legacy reasons.
    This is no longer the case as of Requests 2.0.0.

    ⚠️ Note: the included certificates bundle is only intended as a fallback.

    This fallback should only be used for servers that are not properly configured for SSL verification. A continuously managed server should provide a more up-to-date certificate authority list than a software library which only gets updates once in a while.

    Setting the $options['verify'] key to true when initiating a request enables certificate verification using the certificate authority list provided by the server environment, which is recommended.

    The documentation regarding Secure Requests with SSL has also been updated to reflect this and it is recommended to have a read through.

    The included certificates file has now also been moved to a dedicated /certificates directory off the project root.

    (props [@​jrfnl][gh-jrfnl], [@​schlessera][gh-schlessera], [@​wojsmol][gh-wojsmol], [@​ZsgsDesign][gh-ZsgsDesign], #​535, #​571, #​577, #​622, #​632)

  • New functionality

    The following new functionality has been added:

    • A public static WpOrg\Requests\Requests::has_capabilities($capabilities = array()) method is now available to check whether there is a transport available which supports the requested capabilities.
    • A public WpOrg\Requests\Response::decode_body($associative = true, $depth = 512, $options = 0) method is now available to handle JSON-decoding a response body.
      The method parameters correspond to the parameters of the PHP native json_decode() function.
      The method will throw an WpOrg\Requests\Exception when the response body is not valid JSON.
    • A WpOrg\Requests\Capability interface. This interface provides constants for the known capabilities. Transports can be tested whether or not they support these capabilities.
      Currently, the only capability supported is Capability::SSL.
    • A WpOrg\Requests\Port class. This class encapsulates typical port numbers as constants and offers a static Port::get($type) method to retrieve a port number based on a request type.
      Using this class when referring to port numbers is recommended.
    • An WpOrg\Requests\Exceptions\InvalidArgument class. This class is intended for internal use only.
    • An WpOrg\Requests\Utility\InputValidator class with helper methods for input validation. This class is intended for internal use only.

    (props [@​ccrims0n][gh-ccrims0n], [@​dd32][gh-dd32], [@​jrfnl][gh-jrfnl], [@​schlessera][gh-schlessera], #​167, #​214, #​250, #​251, #​492, #​499, #​538, #​542, #​547, #​559)

  • Changed functionality

    • The WpOrg\Requests\Requests::decompress() method has been fixed to recognize more compression levels and handle these correctly.
    • The method signature of the WpOrg\Requests\Transport::test() interface method has been adjusted to enforce support for an optional $capabilities parameter.
      The Request native WpOrg\Requests\Transport\Curl::test() and WpOrg\Requests\Transport\Fsockopen::test() methods both already supported this parameter.
    • The WpOrg\Requests\Transport\Curl::request() and the WpOrg\Requests\Transport\Fsockopen::request() methods will now throw an WpOrg\Requests\Exception when the $options['filename'] contains an invalid path.
    • The WpOrg\Requests\Transport\Curl::request() method will no longer set the CURLOPT_REFERER option.
    • The default value of the $key parameter in the WpOrg\Requests\Cookie\Jar::normalize_cookie() method has been changed from null to an empty string.

    (props [@​datagutten][gh-datagutten], [@​dustinrue][gh-dustinrue], [@​jrfnl][gh-jrfnl], [@​schlessera][gh-schlessera], [@​soulseekah][gh-soulseekah], [@​twdnhfr][gh-twdnhfr], #​301, #​309, #​379, #​444, #​492, #​610)

  • Removed functionality

    The following methods, which were deprecated during the 1.x cycle, have now been removed:

    • Requests::flattern(), use WpOrg\Requests\Requests::flatten() instead.
    • Requests_Cookie::formatForHeader(), use WpOrg\Requests\Cookie::format_for_header() instead.
    • Requests_Cookie::formatForSetCookie(), use WpOrg\Requests\Cookie::format_for_set_cookie() instead.
    • Requests_Cookie::parseFromHeaders(), use WpOrg\Requests\Cookie::parse_from_headers() instead.
    • Requests_Cookie_Jar::normalizeCookie(), use WpOrg\Requests\Cookie\Jar::normalize_cookie() instead

    A duplicate method has been removed:

    • Requests::match_domain(), use WpOrg\Requests\Ssl::match_domain() instead.

    A redundant method has been removed:

    • Hooks::__construct().

    (props [@​jrfnl][gh-jrfnl], [@​schlessera][gh-schlessera], #​510, #​525, #​617)

  • Compatibility with PHP 8.0 named parameters

    All parameter names have been reviewed to prevent issues for users using PHP 8.0 named parameters and where relevant, a number of parameter names have been changed.

    After this release, a parameter name rename will be treated as a breaking change (reserved for major releases) and will be marked as such in the changelog.

    (props [@​jrfnl][gh-jrfnl], [@​schlessera][gh-schlessera], #​533, #​560, #​561, #​599, #​612)

  • PHP 8.1 compatibility

    All known PHP 8.1 compatibility issues have been fixed and tests are now running (and passing) against PHP 8.1.

    In case you still run into a PHP 8.1 deprecation notice or other PHP 8.1 related issue, please open an issue to report it.

    (props [@​jrfnl][gh-jrfnl], [@​schlessera][gh-schlessera], #​498, #​499, #​500, #​501, #​505, #​634)

  • Updated documentation

    The documentation website has been updated to reflect all the changes in Requests 2.0.0.

    The API documentation for Requests 2.x is now generated using phpDocumentor ❤️ and available on the website.
    For the time being, the Requests 1.x API documentation will still be available on the website as well.

    (props [@​costdev][gh-costdev], [@​jrfnl][gh-jrfnl], [@​schlessera][gh-schlessera], [@​szepeviktor][gh-szepeviktor], #​476, #​480, #​489, [#​495][gh-495], #​526, #​528, #​532, #​543, #​562, #​578, #​590, #​606, #​607, #​608, #​618, #​622, #​625, #​626, #​630, #​642)

  • General housekeeping

    (props [@​jrfnl][gh-jrfnl], [@​schlessera][gh-schlessera])

v1.8.1

Compare Source

Overview of changes

v1.8.0

Compare Source

IMPORTANT NOTES
Last release supporting PHP 5.2 - 5.5

Release 1.8.0 will be the last release with compatibility for PHP 5.2 - 5.5. With the next release (v2.0.0), the minimum PHP version will be bumped to 5.6.

Last release supporting PEAR distribution

Release 1.8.0 will be the last release to be distributed via PEAR. From release 2.0.0 onwards, consumers of this library will have to switch to Composer to receive updates.

Overview of changes

v1.7.0

Compare Source

  • Add support for HHVM and PHP 7

    Requests is now tested against both HHVM and PHP 7, and they are supported as
    first-party platforms.

    (props [@​rmccue][gh-rmccue], [#​106][gh-106], [#​176][gh-176])

  • Transfer & connect timeouts, in seconds & milliseconds

    cURL is unable to handle timeouts under a second in DNS lookups, so we round
    those up to ensure 1-999ms isn't counted as an instant failure.

    (props [@​ozh][gh-ozh], [@​rmccue][gh-rmccue], [#​97][gh-97], [#​216][gh-216])

  • Rework cookie handling to be more thorough.

    Cookies are now restricted to the same-origin by default, expiration is checked.

    (props [@​catharsisjelly][gh-catharsisje


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate
Copy link
Copy Markdown
Author

renovate bot commented Mar 27, 2026

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: cgi-bin/composer.lock
Command failed: composer update rmccue/requests:2.0.17 --with-dependencies --ignore-platform-reqs --no-ansi --no-interaction --no-scripts --no-autoloader --no-plugins
Deprecation Notice: Composer\Command\ShowCommand::printPackageInfo(): Implicitly marking parameter $latestPackage as nullable is deprecated, the explicit nullable type must be used instead in phar:///opt/containerbase/tools/composer/1.10.27/bin/composer/src/Composer/Command/ShowCommand.php:586
Deprecation Notice: Composer\Command\ShowCommand::printMeta(): Implicitly marking parameter $latestPackage as nullable is deprecated, the explicit nullable type must be used instead in phar:///opt/containerbase/tools/composer/1.10.27/bin/composer/src/Composer/Command/ShowCommand.php:614
Deprecation Notice: Composer\Command\ShowCommand::printPackageInfoAsJson(): Implicitly marking parameter $latestPackage as nullable is deprecated, the explicit nullable type must be used instead in phar:///opt/containerbase/tools/composer/1.10.27/bin/composer/src/Composer/Command/ShowCommand.php:762
Deprecation Notice: Composer\Command\ArchiveCommand::archive(): Implicitly marking parameter $composer as nullable is deprecated, the explicit nullable type must be used instead in phar:///opt/containerbase/tools/composer/1.10.27/bin/composer/src/Composer/Command/ArchiveCommand.php:108
Deprecation Notice: Constant E_STRICT is deprecated since 8.4, the error level was removed in phar:///opt/containerbase/tools/composer/1.10.27/bin/composer/src/Composer/Util/Silencer.php:36
Deprecation Notice: Composer\Json\JsonFile::__construct(): Implicitly marking parameter $rfs as nullable is deprecated, the explicit nullable type must be used instead in phar:///opt/containerbase/tools/composer/1.10.27/bin/composer/src/Composer/Json/JsonFile.php:51
Deprecation Notice: Composer\Json\JsonFile::__construct(): Implicitly marking parameter $io as nullable is deprecated, the explicit nullable type must be used instead in phar:///opt/containerbase/tools/composer/1.10.27/bin/composer/src/Composer/Json/JsonFile.php:51
Deprecation Notice: JsonSchema\Constraints\BaseConstraint::__construct(): Implicitly marking parameter $factory as nullable is deprecated, the explicit nullable type must be used instead in phar:///opt/containerbase/tools/composer/1.10.27/bin/composer/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/BaseConstraint.php:41
Deprecation Notice: JsonSchema\Constraints\BaseConstraint::addError(): Implicitly marking parameter $path as nullable is deprecated, the explicit nullable type must be used instead in phar:///opt/containerbase/tools/composer/1.10.27/bin/composer/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/BaseConstraint.php:46
Deprecation Notice: JsonSchema\Constraints\BaseConstraint::addError(): Implicitly marking parameter $more as nullable is deprecated, the explicit nullable type must be used instead in phar:///opt/containerbase/tools/composer/1.10.27/bin/composer/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/BaseConstraint.php:46
Deprecation Notice: JsonSchema\Constraints\Factory::__construct(): Implicitly marking parameter $schemaStorage as nullable is deprecated, the explicit nullable type must be used instead in phar:///opt/containerbase/tools/composer/1.10.27/bin/composer/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/Factory.php:77
Deprecation Notice: JsonSchema\Constraints\Factory::__construct(): Implicitly marking parameter $uriRetriever as nullable is deprecated, the explicit nullable type must be used instead in phar:///opt/containerbase/tools/composer/1.10.27/bin/composer/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/Factory.php:78
Deprecation Notice: JsonSchema\Constraints\Constraint::incrementPath(): Implicitly marking parameter $path as nullable is deprecated, the explicit nullable type must be used instead in phar:///opt/containerbase/tools/composer/1.10.27/bin/composer/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/Constraint.php:42
Deprecation Notice: JsonSchema\Constraints\Constraint::checkArray(): Implicitly marking parameter $path as nullable is deprecated, the explicit nullable type must be used instead in phar:///opt/containerbase/tools/composer/1.10.27/bin/composer/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/Constraint.php:68
Deprecation Notice: JsonSchema\Constraints\Constraint::checkObject(): Implicitly marking parameter $path as nullable is deprecated, the explicit nullable type must be used instead in phar:///opt/containerbase/tools/composer/1.10.27/bin/composer/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/Constraint.php:86
Deprecation Notice: JsonSchema\Constraints\Constraint::checkType(): Implicitly marking parameter $path as nullable is deprecated, the explicit nullable type must be used instead in phar:///opt/containerbase/tools/composer/1.10.27/bin/composer/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/Constraint.php:103
Deprecation Notice: JsonSchema\Constraints\Constraint::checkUndefined(): Implicitly marking parameter $path as nullable is deprecated, the explicit nullable type must be used instead in phar:///opt/containerbase/tools/composer/1.10.27/bin/composer/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/Constraint.php:119
Deprecation Notice: JsonSchema\Constraints\Constraint::checkString(): Implicitly marking parameter $path as nullable is deprecated, the explicit nullable type must be used instead in phar:///opt/containerbase/tools/composer/1.10.27/bin/composer/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/Constraint.php:136
Deprecation Notice: JsonSchema\Constraints\Constraint::checkNumber(): Implicitly marking parameter $path as nullable is deprecated, the explicit nullable type must be used instead in phar:///opt/containerbase/tools/composer/1.10.27/bin/composer/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/Constraint.php:152
Deprecation Notice: JsonSchema\Constraints\Constraint::checkEnum(): Implicitly marking parameter $path as nullable is deprecated, the explicit nullable type must be used instead in phar:///opt/containerbase/tools/composer/1.10.27/bin/composer/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/Constraint.php:168
Deprecation Notice: JsonSchema\Constraints\Constraint::checkFormat(): Implicitly marking parameter $path as nullable is deprecated, the explicit nullable type must be used instead in phar:///opt/containerbase/tools/composer/1.10.27/bin/composer/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/Constraint.php:184
Deprecation Notice: JsonSchema\Constraints\ConstraintInterface::addError(): Implicitly marking parameter $path as nullable is deprecated, the explicit nullable type must be used instead in phar:///opt/containerbase/tools/composer/1.10.27/bin/composer/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/ConstraintInterface.php:43
Deprecation Notice: JsonSchema\Constraints\ConstraintInterface::addError(): Implicitly marking parameter $more as nullable is deprecated, the explicit nullable type must be used instead in phar:///opt/containerbase/tools/composer/1.10.27/bin/composer/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/ConstraintInterface.php:43
Deprecation Notice: JsonSchema\Constraints\ConstraintInterface::check(): Implicitly marking parameter $path as nullable is deprecated, the explicit nullable type must be used instead in phar:///opt/containerbase/tools/composer/1.10.27/bin/composer/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/ConstraintInterface.php:64
Deprecation Notice: JsonSchema\SchemaStorage::__construct(): Implicitly marking parameter $uriRetriever as nullable is deprecated, the explicit nullable type must be used instead in phar:///opt/containerbase/tools/composer/1.10.27/bin/composer/vendor/justinrainbow/json-schema/src/JsonSchema/SchemaStorage.php:20
Deprecation Notice: JsonSchema\SchemaStorage::__construct(): Implicitly marking parameter $uriResolver as nullable is deprecated, the explicit nullable type must be used instead in phar:///opt/containerbase/tools/composer/1.10.27/bin/composer/vendor/justinrainbow/json-schema/src/JsonSchema/SchemaStorage.php:21
Deprecation Notice: JsonSchema\Constraints\SchemaConstraint::check(): Implicitly marking parameter $path as nullable is deprecated, the explicit nullable type must be used instead in phar:///opt/containerbase/tools/composer/1.10.27/bin/composer/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/SchemaConstraint.php:31
Deprecation Notice: JsonSchema\Constraints\UndefinedConstraint::check(): Implicitly marking parameter $path as nullable is deprecated, the explicit nullable type must be used instead in phar:///opt/containerbase/tools/composer/1.10.27/bin/composer/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/UndefinedConstraint.php:34
Deprecation Notice: The predefined locally scoped $http_response_header variable is deprecated, call http_get_last_response_headers() instead in phar:///opt/containerbase/tools/composer/1.10.27/bin/composer/vendor/justinrainbow/json-schema/src/JsonSchema/Uri/Retrievers/FileGetContents.php:55
Deprecation Notice: JsonSchema\Constraints\TypeConstraint::check(): Implicitly marking parameter $path as nullable is deprecated, the explicit nullable type must be used instead in phar:///opt/containerbase/tools/composer/1.10.27/bin/composer/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/TypeConstraint.php:42
Deprecation Notice: JsonSchema\Constraints\ObjectConstraint::check(): Implicitly marking parameter $path as nullable is deprecated, the explicit nullable type must be used instead in phar:///opt/containerbase/tools/composer/1.10.27/bin/composer/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/ObjectConstraint.php:30
Deprecation Notice: JsonSchema\Constraints\ObjectConstraint::validatePatternProperties(): Implicitly marking parameter $path as nullable is deprecated, the explicit nullable type must be used instead in phar:///opt/containerbase/tools/composer/1.10.27/bin/composer/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/ObjectConstraint.php:54
Deprecation Notice: JsonSchema\Constraints\ObjectConstraint::validateElement(): Implicitly marking parameter $path as nullable is deprecated, the explicit nullable type must be used instead in phar:///opt/containerbase/tools/composer/1.10.27/bin/composer/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/ObjectConstraint.php:93
Deprecation Notice: JsonSchema\Constraints\ObjectConstraint::validateProperties(): Implicitly marking parameter $path as nullable is deprecated, the explicit nullable type must be used instead in phar:///opt/containerbase/tools/composer/1.10.27/bin/composer/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/ObjectConstraint.php:135
Deprecation Notice: JsonSchema\Constraints\ObjectConstraint::validateMinMaxConstraint(): Implicitly marking parameter $path as nullable is deprecated, the explicit nullable type must be used instead in phar:///opt/containerbase/tools/composer/1.10.27/bin/composer/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/ObjectConstraint.php:177
Deprecation Notice: JsonSchema\Constraints\StringConstraint::check(): Implicitly marking parameter $path as nullable is deprecated, the explicit nullable type must be used instead in phar:///opt/containerbase/tools/composer/1.10.27/bin/composer/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/StringConstraint.php:25
Deprecation Notice: JsonSchema\Constraints\FormatConstraint::check(): Implicitly marking parameter $path as nullable is deprecated, the explicit nullable type must be used instead in phar:///opt/containerbase/tools/composer/1.10.27/bin/composer/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/FormatConstraint.php:27
Deprecation Notice: Composer\Config::prohibitUrlByConfig(): Implicitly marking parameter $io as nullable is deprecated, the explicit nullable type must be used instead in phar:///opt/containerbase/tools/composer/1.10.27/bin/composer/src/Composer/Config.php:450
Deprecation Notice: Composer\Util\ProcessExecutor::__construct(): Implicitly marking parameter $io as nullable is deprecated, the explicit nullable type must be used instead in phar:///opt/containerbase/tools/composer/1.10.27/bin/composer/src/Composer/Util/ProcessExecutor.php:31
Deprecation Notice: Composer\Util\RemoteFilesystem::__construct(): Implicitly marking parameter $config as nullable is deprecated, the explicit nullable type must be used instead in phar:///opt/containerbase/tools/composer/1.10.27/bin/composer/src/Composer/Util/RemoteFilesystem.php:60
Deprecation Notice: The predefined locally scoped $http_response_header variable is deprecated, call http_get_last_response_headers() instead in phar:///opt/containerbase/tools/composer/1.10.27/bin/composer/src/Composer/Util/RemoteFilesystem.php:329
Deprecation Notice: The predefined locally scoped $http_response_header variable is deprecated, call http_get_last_response_headers() instead in phar:///opt/containerbase/tools/composer/1.10.27/bin/composer/src/Composer/Util/RemoteFilesystem.php:332
Deprecation Notice: The predefined locally scoped $http_response_header variable is deprecated, call http_get_last_response_headers() instead in phar:///opt/containerbase/tools/composer/1.10.27/bin/composer/src/Composer/Util/RemoteFilesystem.php:333
Deprecation Notice: The predefined locally scoped $http_response_header variable is deprecated, call http_get_last_response_headers() instead in phar:///opt/containerbase/tools/composer/1.10.27/bin/composer/src/Composer/Util/RemoteFilesystem.php:338
Deprecation Notice: The predefined locally scoped $http_response_header variable is deprecated, call http_get_last_response_headers() instead in phar:///opt/containerbase/tools/composer/1.10.27/bin/composer/src/Composer/Util/RemoteFilesystem.php:338
Deprecation Notice: The predefined locally scoped $http_response_header variable is deprecated, call http_get_last_response_headers() instead in phar:///opt/containerbase/tools/composer/1.10.27/bin/composer/src/Composer/Util/RemoteFilesystem.php:342
Deprecation Notice: The predefined locally scoped $http_response_header variable is deprecated, call http_get_last_response_headers() instead in phar:///opt/containerbase/tools/composer/1.10.27/bin/composer/src/Composer/Util/RemoteFilesystem.php:346
Deprecation Notice: The predefined locally scoped $http_response_header variable is deprecated, call http_get_last_response_headers() instead in phar:///opt/containerbase/tools/composer/1.10.27/bin/composer/src/Composer/Util/RemoteFilesystem.php:347
Deprecation Notice: The predefined locally scoped $http_response_header variable is deprecated, call http_get_last_response_headers() instead in phar:///opt/containerbase/tools/composer/1.10.27/bin/composer/src/Composer/Util/RemoteFilesystem.php:367
Deprecation Notice: The predefined locally scoped $http_response_header variable is deprecated, call http_get_last_response_headers() instead in phar:///opt/containerbase/tools/composer/1.10.27/bin/composer/src/Composer/Util/RemoteFilesystem.php:368
Deprecation Notice: The predefined locally scoped $http_response_header variable is deprecated, call http_get_last_response_headers() instead in phar:///opt/containerbase/tools/composer/1.10.27/bin/composer/src/Composer/Util/RemoteFilesystem.php:398
Deprecation Notice: The predefined locally scoped $http_response_header variable is deprecated, call http_get_last_response_headers() instead in phar:///opt/containerbase/tools/composer/1.10.27/bin/composer/src/Composer/Util/RemoteFilesystem.php:399
Deprecation Notice: The predefined locally scoped $http_response_header variable is deprecated, call http_get_last_response_headers() instead in phar:///opt/containerbase/tools/composer/1.10.27/bin/composer/src/Composer/Util/RemoteFilesystem.php:400
Deprecation Notice: The predefined locally scoped $http_response_header variable is deprecated, call http_get_last_response_headers() instead in phar:///opt/containerbase/tools/composer/1.10.27/bin/composer/src/Composer/Util/RemoteFilesystem.php:431
Deprecation Notice: The predefined locally scoped $http_response_header variable is deprecated, call http_get_last_response_headers() instead in phar:///opt/containerbase/tools/composer/1.10.27/bin/composer/src/Composer/Util/RemoteFilesystem.php:441
Deprecation Notice: The predefined locally scoped $http_response_header variable is deprecated, call http_get_last_response_headers() instead in phar:///opt/containerbase/tools/composer/1.10.27/bin/composer/src/Composer/Util/RemoteFilesystem.php:442
Deprecation Notice: The predefined locally scoped $http_response_header variable is deprecated, call http_get_last_response_headers() instead in phar:///opt/containerbase/tools/composer/1.10.27/bin/composer/src/Composer/Util/RemoteFilesystem.php:456
Deprecation Notice: The predefined locally scoped $http_response_header variable is deprecated, call http_get_last_response_headers() instead in phar:///opt/containerbase/tools/composer/1.10.27/bin/composer/src/Composer/Util/RemoteFilesystem.php:562
Deprecation Notice: The predefined locally scoped $http_response_header variable is deprecated, call http_get_last_response_headers() instead in phar:///opt/containerbase/tools/composer/1.10.27/bin/composer/src/Composer/Util/RemoteFilesystem.php:580
Deprecation Notice: Composer\Util\RemoteFilesystem::getRemoteContents(): Implicitly marking parameter $responseHeaders as nullable is deprecated, the explicit nullable type must be used instead in phar:///opt/containerbase/tools/composer/1.10.27/bin/composer/src/Composer/Util/RemoteFilesystem.php:595
Deprecation Notice: The predefined locally scoped $http_response_header variable is deprecated, call http_get_last_response_headers() instead in phar:///opt/containerbase/tools/composer/1.10.27/bin/composer/src/Composer/Util/RemoteFilesystem.php:604
Deprecation Notice: Composer\CaBundle\CaBundle::getSystemCaRootBundlePath(): Implicitly marking parameter $logger as nullable is deprecated, the explicit nullable type must be used instead in phar:///opt/containerbase/tools/composer/1.10.27/bin/composer/vendor/composer/ca-bundle/src/CaBundle.php:67
Deprecation Notice: Composer\CaBundle\CaBundle::validateCaFile(): Implicitly marking parameter $logger as nullable is deprecated, the explicit nullable type must be used instead in phar:///opt/containerbase/tools/composer/1.10.27/bin/composer/vendor/composer/ca-bundle/src/CaBundle.php:161
Deprecation Notice: Composer\CaBundle\CaBundle::caFileUsable(): Implicitly marking parameter $logger as nullable is deprecated, the explicit nullable type must be used instead in phar:///opt/containerbase/tools/composer/1.10.27/bin/composer/vendor/composer/ca-bundle/src/CaBundle.php:341
Deprecation Notice: Composer\CaBundle\CaBundle::caDirUsable(): Implicitly marking parameter $logger as nullable is deprecated, the explicit nullable type must be used instead in phar:///opt/containerbase/tools/composer/1.10.27/bin/composer/vendor/composer/ca-bundle/src/CaBundle.php:354
Deprecation Notice: Composer\CaBundle\CaBundle::isFile(): Implicitly marking parameter $logger as nullable is deprecated, the explicit nullable type must be used instead in phar:///opt/containerbase/tools/composer/1.10.27/bin/composer/vendor/composer/ca-bundle/src/CaBundle.php:367
Deprecation Notice: Composer\CaBundle\CaBundle::isDir(): Implicitly marking parameter $logger as nullable is deprecated, the explicit nullable type must be used instead in phar:///opt/containerbase/tools/composer/1.10.27/bin/composer/vendor/composer/ca-bundle/src/CaBundle.php:382
Deprecation Notice: Composer\CaBundle\CaBundle::isReadable(): Implicitly marking parameter $logger as nullable is deprecated, the explicit nullable type must be used instead in phar:///opt/containerbase/tools/composer/1.10.27/bin/composer/vendor/composer/ca-bundle/src/CaBundle.php:397
Deprecation Notice: Composer\CaBundle\CaBundle::glob(): Implicitly marking parameter $logger as nullable is deprecated, the explicit nullable type must be used instead in phar:///opt/containerbase/tools/composer/1.10.27/bin/composer/vendor/composer/ca-bundle/src/CaBundle.php:412
Deprecation Notice: Composer\EventDispatcher\EventDispatcher::__construct(): Implicitly marking parameter $process as nullable is deprecated, the explicit nullable type must be used instead in phar:///opt/containerbase/tools/composer/1.10.27/bin/composer/src/Composer/EventDispatcher/EventDispatcher.php:59
Deprecation Notice: Composer\EventDispatcher\EventDispatcher::dispatch(): Implicitly marking parameter $event as nullable is deprecated, the explicit nullable type must be used instead in phar:///opt/containerbase/tools/composer/1.10.27/bin/composer/src/Composer/EventDispatcher/EventDispatcher.php:75
Deprecation Notice: Composer\Repository\RepositoryFactory::fromString(): Implicitly marking parameter $rm as nullable is deprecated, the explicit nullable type must be used instead in phar:///opt/containerbase/tools/composer/1.10.27/bin/composer/src/Composer/Repository/RepositoryFactory.php:65
Deprecation Notice: Composer\Repository\RepositoryFactory::createRepo(): Implicitly marking parameter $rm as nullable is deprecated, the explicit nullable type must be used instead in phar:///opt/containerbase/tools/composer/1.10.27/bin/composer/src/Composer/Repository/RepositoryFactory.php:78
Deprecation Notice: Composer\Repository\RepositoryFactory::defaultRepos(): Implicitly marking parameter $io as nullable is deprecated, the explicit nullable type must be used instead in phar:///opt/containerbase/tools/composer/1.10.27/bin/composer/src/Composer/Repository/RepositoryFactory.php:94
Deprecation Notice: Composer\Repository\RepositoryFactory::defaultRepos(): Implicitly marking parameter $config as nullable is deprecated, the explicit nullable type must be used instead in phar:///opt/containerbase/tools/composer/1.10.27/bin/composer/src/Composer/Repository/RepositoryFactory.php:94
Deprecation Notice: Composer\Repository\RepositoryFactory::defaultRepos(): Implicitly marking parameter $rm as nullable is deprecated, the explicit nullable type must be used instead in phar:///opt/containerbase/tools/composer/1.10.27/bin/composer/src/Composer/Repository/RepositoryFactory.php:94
Deprecation Notice: Composer\Repository\RepositoryFactory::manager(): Implicitly marking parameter $eventDispatcher as nullable is deprecated, the explicit nullable type must be used instead in phar:///opt/containerbase/tools/composer/1.10.27/bin/composer/src/Composer/Repository/RepositoryFactory.php:119
Deprecation Notice: Composer\Repository\RepositoryFactory::manager(): Implicitly marking parameter $rfs as nullable is deprecated, the explicit nullable type must be used instead in phar:///opt/containerbase/tools/composer/1.10.27/bin/composer/src/Composer/Repository/RepositoryFactory.php:119
Deprecation Notice: Composer\Repository\RepositoryManager::__construct(): Implicitly marking parameter $eventDispatcher as nullable is deprecated, the explicit nullable type must be used instead in phar:///opt/containerbase/tools/composer/1.10.27/bin/composer/src/Composer/Repository/RepositoryManager.php:38
Deprecation Notice: Composer\Repository\RepositoryManager::__construct(): Implicitly marking parameter $rfs as nullable is deprecated, the explicit nullable type must be used instead in phar:///opt/containerbase/tools/composer/1.10.27/bin/composer/src/Composer/Repository/RepositoryManager.php:38
Deprecation Notice: Composer\Package\Loader\RootPackageLoader::__construct(): Implicitly marking parameter $parser as nullable is deprecated, the explicit nullable type must be used instead in phar:///opt/containerbase/tools/composer/1.10.27/bin/composer/src/Composer/Package/Loader/RootPackageLoader.php:55
Deprecation Notice: Composer\Package\Loader\RootPackageLoader::__construct(): Implicitly marking parameter $versionGuesser as nullable is deprecated, the explicit nullable type must be used instead in phar:///opt/containerbase/tools/composer/1.10.27/bin/composer/src/Composer/Package/Loader/RootPackageLoader.php:55
Deprecation Notice: Composer\Package\Loader\RootPackageLoader::__construct(): Implicitly marking parameter $io as nullable is deprecated, the explicit nullable type must be used instead in phar:///opt/containerbase/tools/composer/1.10.27/bin/composer/src/Composer/Package/Loader/RootPackageLoader.php:55
Deprecation Notice: Composer\Package\Loader\ArrayLoader::__construct(): Implicitly marking parameter $parser as nullable is deprecated, the explicit nullable type must be used instead in phar:///opt/containerbase/tools/composer/1.10.27/bin/composer/src/Composer/Package/Loader/ArrayLoader.php:32
Deprecation Notice: Composer\Util\Git::getVersion(): Implicitly marking parameter $process as nullable is deprecated, the explicit nullable type must be used instead in phar:///opt/containerbase/tools/composer/1.10.27/bin/composer/src/Composer/Util/Git.php:412
Deprecation Notice: Composer\Package\Link::__construct(): Implicitly marking parameter $constraint as nullable is deprecated, the explicit nullable type must be used instead in phar:///opt/containerbase/tools/composer/1.10.27/bin/composer/src/Composer/Package/Link.php:58
Deprecation Notice: Composer\Package\Loader\ValidatingArrayLoader::__construct(): Implicitly marking parameter $parser as nullable is deprecated, the explicit nullable type must be used instead in phar:///opt/containerbase/tools/composer/1.10.27/bin/composer/src/Composer/Package/Loader/ValidatingArrayLoader.php:38
Deprecation Notice: Composer\Repository\PlatformRepository::__construct(): Implicitly marking parameter $process as nullable is deprecated, the explicit nullable type must be used instead in phar:///opt/containerbase/tools/composer/1.10.27/bin/composer/src/Composer/Repository/PlatformRepository.php:46
Deprecation Notice: Composer\Repository\ComposerRepository::__construct(): Implicitly marking parameter $eventDispatcher as nullable is deprecated, the explicit nullable type must be used instead in phar:///opt/containerbase/tools/composer/1.10.27/bin/composer/src/Composer/Repository/ComposerRepository.php:66
Deprecation Notice: Composer\Repository\ComposerRepository::__construct(): Implicitly marking parameter $rfs as nullable is deprecated, the explicit nullable type must be used instead in phar:///opt/containerbase/tools/composer/1.10.27/bin/composer/src/Composer/Repository/ComposerRepository.php:66
Deprecation Notice: Composer\Cache::__construct(): Implicitly marking parameter $filesystem as nullable is deprecated, the explicit nullable type must be used instead in phar:///opt/containerbase/tools/composer/1.10.27/bin/composer/src/Composer/Cache.php:40
Deprecation Notice: Composer\Util\Filesystem::__construct(): Implicitly marking parameter $executor as nullable is deprecated, the explicit nullable type must be used instead in phar:///opt/containerbase/tools/composer/1.10.27/bin/composer/src/Composer/Util/Filesystem.php:28
Deprecation Notice: Composer\Downloader\DownloadManager::__construct(): Implicitly marking parameter $filesystem as nullable is deprecated, the explicit nullable type must be used instead in phar:///opt/containerbase/tools/composer/1.10.27/bin/composer/src/Composer/Downloader/DownloadManager.php:40
Deprecation Notice: Composer\Downloader\GitDownloader::__construct(): Implicitly marking parameter $process as nullable is deprecated, the explicit nullable type must be used instead in phar:///opt/containerbase/tools/composer/1.10.27/bin/composer/src/Composer/Downloader/GitDownloader.php:33
Deprecation Notice: Composer\Downloader\GitDownloader::__construct(): Implicitly marking parameter $fs as nullable is deprecated, the explicit nullable type must be used instead in phar:///opt/containerbase/tools/composer/1.10.27/bin/composer/src/Composer/Downloader/GitDownloader.php:33
Deprecation Notice: Composer\Downloader\VcsDownloader::__construct(): Implicitly marking parameter $process as nullable is deprecated, the explicit nullable type must be used instead in phar:///opt/containerbase/tools/composer/1.10.27/bin/composer/src/Composer/Downloader/VcsDownloader.php:38
Deprecation Notice: Composer\Downloader\VcsDownloader::__construct(): Implicitly marking parameter $fs as nullable is deprecated, the explicit nullable type must be used instead in phar:///opt/containerbase/tools/composer/1.10.27/bin/composer/src/Composer/Downloader/VcsDownloader.php:38
Deprecation Notice: Composer\Downloader\ZipDownloader::__construct(): Implicitly marking parameter $eventDispatcher as nullable is deprecated, the explicit nullable type must be used instead in phar:///opt/containerbase/tools/composer/1.10.27/bin/composer/src/Composer/Downloader/ZipDownloader.php:39
Deprecation Notice: Composer\Downloader\ZipDownloader::__construct(): Implicitly marking parameter $cache as nullable is deprecated, the explicit nullable type must be used instead in phar:///opt/containerbase/tools/composer/1.10.27/bin/composer/src/Composer/Downloader/ZipDownloader.php:39
Deprecation Notice: Composer\Downloader\ZipDownloader::__construct(): Implicitly marking parameter $process as nullable is deprecated, the explicit nullable type must be used instead in phar:///opt/containerbase/tools/composer/1.10.27/bin/composer/src/Composer/Downloader/ZipDownloader.php:39
Deprecation Notice: Composer\Downloader\ZipDownloader::__construct(): Implicitly marking parameter $rfs as nullable is deprecated, the explicit nullable type must be used instead in phar:///opt/containerbase/tools/composer/1.10.27/bin/composer/src/Composer/Downloader/ZipDownloader.php:39
Deprecation Notice: Composer\Downloader\FileDownloader::__construct(): Implicitly marking parameter $eventDispatcher as nullable is deprecated, the explicit nullable type must be used instead in phar:///opt/containerbase/tools/composer/1.10.27/bin/composer/src/Composer/Downloader/FileDownloader.php:59
Deprecation Notice: Composer\Downloader\FileDownloader::__construct(): Implicitly marking parameter $cache as nullable is deprecated, the explicit nullable type must be used instead in phar:///opt/containerbase/tools/composer/1.10.27/bin/composer/src/Composer/Downloader/FileDownloader.php:59
Deprecation Notice: Composer\Downloader\FileDownloader::__construct(): Implicitly marking parameter $rfs as nullable is deprecated, the explicit nullable type must be used instead in phar:///opt/containerbase/tools/composer/1.10.27/bin/composer/src/Composer/Downloader/FileDownloader.php:59
Deprecation Notice: Composer\Downloader\FileDownloader::__construct(): Implicitly marking parameter $filesystem as nullable is deprecated, the explicit nullable type must be used instead in phar:///opt/containerbase/tools/composer/1.10.27/bin/composer/src/Composer/Downloader/FileDownloader.php:59
Deprecation Notice: Composer\Downloader\RarDownloader::__construct(): Implicitly marking parameter $eventDispatcher as nullable is deprecated, the explicit nullable type must be used instead in phar:///opt/containerbase/tools/composer/1.10.27/bin/composer/src/Composer/Downloader/RarDownloader.php:36
Deprecation Notice: Composer\Downloader\RarDownloader::__construct(): Implicitly marking parameter $cache as nullable is deprecated, the explicit nullable type must be used instead in phar:///opt/containerbase/tools/composer/1.10.27/bin/composer/src/Composer/Downloader/RarDownloader.php:36
Deprecation Notice: Composer\Downloader\RarDownloader::__construct(): Implicitly marking parameter $process as nullable is deprecated, the explicit nullable type must be used instead in phar:///opt/containerbase/tools/composer/1.10.27/bin/composer/src/Composer/Downloader/RarDownloader.php:36
Deprecation Notice: Composer\Downloader\RarDownloader::__construct(): Implicitly marking parameter $rfs as nullable is deprecated, the explicit nullable type must be used instead in phar:///opt/containerbase/tools/composer/1.10.27/bin/composer/src/Composer/Downloader/RarDownloader.php:36
Deprecation Notice: Composer\Downloader\GzipDownloader::__construct(): Implicitly marking parameter $eventDispatcher as nullable is deprecated, the explicit nullable type must be used instead in phar:///opt/containerbase/tools/composer/1.10.27/bin/composer/src/Composer/Downloader/GzipDownloader.php:33
Deprecation Notice: Composer\Downloader\GzipDownloader::__construct(): Implicitly marking parameter $cache as nullable is deprecated, the explicit nullable type must be used instead in phar:///opt/containerbase/tools/composer/1.10.27/bin/composer/src/Composer/Downloader/GzipDownloader.php:33
Deprecation Notice: Composer\Downloader\GzipDownloader::__construct(): Implicitly marking parameter $process as nullable is deprecated, the explicit nullable type must be used instead in phar:///opt/containerbase/tools/composer/1.10.27/bin/composer/src/Composer/Downloader/GzipDownloader.php:33
Deprecation Notice: Composer\Downloader\GzipDownloader::__construct(): Implicitly marking parameter $rfs as nullable is deprecated, the explicit nullable type must be used instead in phar:///opt/containerbase/tools/composer/1.10.27/bin/composer/src/Composer/Downloader/GzipDownloader.php:33
Deprecation Notice: Composer\Downloader\XzDownloader::__construct(): Implicitly marking parameter $eventDispatcher as nullable is deprecated, the explicit nullable type must be used instead in phar:///opt/containerbase/tools/composer/1.10.27/bin/composer/src/Composer/Downloader/XzDownloader.php:33
Deprecation Notice: Composer\Downloader\XzDownloader::__construct(): Implicitly marking parameter $cache as nullable is deprecated, the explicit nullable type must be used instead in phar:///opt/containerbase/tools/composer/1.10.27/bin/composer/src/Composer/Downloader/XzDownloader.php:33
Deprecation Notice: Composer\Downloader\XzDownloader::__construct(): Implicitly marking parameter $process as nullable is deprecated, the explicit nullable type must be used instead in phar:///opt/containerbase/tools/composer/1.10.27/bin/composer/src/Composer/Downloader/XzDownloader.php:33
Deprecation Notice: Composer\Downloader\XzDownloader::__construct(): Implicitly marking parameter $rfs as nullable is deprecated, the explicit nullable type must be used instead in phar:///opt/containerbase/tools/composer/1.10.27/bin/composer/src/Composer/Downloader/XzDownloader.php:33
Deprecation Notice: Composer\Autoload\AutoloadGenerator::__construct(): Implicitly marking parameter $io as nullable is deprecated, the explicit nullable type must be used instead in phar:///opt/containerbase/tools/composer/1.10.27/bin/composer/src/Composer/Autoload/AutoloadGenerator.php:62
Deprecation Notice: Composer\Installer\LibraryInstaller::__construct(): Implicitly marking parameter $filesystem as nullable is deprecated, the explicit nullable type must be used instead in phar:///opt/containerbase/tools/composer/1.10.27/bin/composer/src/Composer/Installer/LibraryInstaller.php:50
Deprecation Notice: Composer\Installer\LibraryInstaller::__construct(): Implicitly marking parameter $binaryInstaller as nullable is deprecated, the explicit nullable type must be used instead in phar:///opt/containerbase/tools/composer/1.10.27/bin/composer/src/Composer/Installer/LibraryInstaller.php:50
Deprecation Notice: Composer\Installer\BinaryInstaller::__construct(): Implicitly marking parameter $filesystem as nullable is deprecated, the explicit nullable type must be used instead in phar:///opt/containerbase/tools/composer/1.10.27/bin/composer/src/Composer/Installer/BinaryInstaller.php:42
Deprecation Notice: Composer\Plugin\PluginManager::__construct(): Implicitly marking parameter $globalComposer as nullable is deprecated, the explicit nullable type must be used instead in phar:///opt/containerbase/tools/composer/1.10.27/bin/composer/src/Composer/Plugin/PluginManager.php:56
Deprecation Notice: Composer\Installer::createPool(): Implicitly marking parameter $lockedRepository as nullable is deprecated, the explicit nullable type must be used instead in phar:///opt/containerbase/tools/composer/1.10.27/bin/composer/src/Composer/Installer.php:878
Deprecation Notice: Composer\Installer::processDevPackages(): Implicitly marking parameter $operations as nullable is deprecated, the explicit nullable type must be used instead in phar:///opt/containerbase/tools/composer/1.10.27/bin/composer/src/Composer/Installer.php:985
Deprecation Notice: Composer\Installer\SuggestedPackagesReporter::output(): Implicitly marking parameter $installedRepo as nullable is deprecated, the explicit nullable type must be used instead in phar:///opt/containerbase/tools/composer/1.10.27/bin/composer/src/Composer/Installer/SuggestedPackagesReporter.php:99
Deprecation Notice: Composer\DependencyResolver\Pool::whatProvides(): Implicitly marking parameter $constraint as nullable is deprecated, the explicit nullable type must be used instead in phar:///opt/containerbase/tools/composer/1.10.27/bin/composer/src/Composer/DependencyResolver/Pool.php:191
Deprecation Notice: Composer\DependencyResolver\Pool::match(): Implicitly marking parameter $constraint as nullable is deprecated, the explicit nullable type must be used instead in phar:///opt/containerbase/tools/composer/1.10.27/bin/composer/src/Composer/DependencyResolver/Pool.php:334
Package "rmccue/requests:2.0.17" listed for update is not installed. Ignoring.
Loading composer repositories with package information

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants