Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update tests and add PHP 8.3 to the CI matrix #3299

Merged
merged 6 commits into from
Dec 14, 2023

Commits on Nov 23, 2023

  1. Use setStaticPropertyValue() to set static properties in tests

    From PHP 8.3, calling ReflectionProperty::setValue() with a single value
    is deprecated, so we use ReflectionClass::setStaticPropertyValue()
    instead.
    akrabat committed Nov 23, 2023
    Configuration menu
    Copy the full SHA
    28e6319 View commit details
    Browse the repository at this point in the history
  2. Remove unused reflected property in ErrorHandlerTest

    It's not used and causes a warning.
    akrabat committed Nov 23, 2023
    Configuration menu
    Copy the full SHA
    fb55626 View commit details
    Browse the repository at this point in the history
  3. Update BodyParsingMiddlewareTest

    Dynamically adding a property to a class is deprecated and so rather
    than adding the request to the response from the handler, we now add it
    to the handler itself and test it there.
    akrabat committed Nov 23, 2023
    Configuration menu
    Copy the full SHA
    4c7e0cf View commit details
    Browse the repository at this point in the history
  4. Add PHP 8.3 to the CI matrix

    Also use 8.2 for the CS and static analysis tests.
    akrabat committed Nov 23, 2023
    Configuration menu
    Copy the full SHA
    85a19ec View commit details
    Browse the repository at this point in the history

Commits on Dec 2, 2023

  1. Configuration menu
    Copy the full SHA
    6013068 View commit details
    Browse the repository at this point in the history

Commits on Dec 12, 2023

  1. Import ReflectionClass

    akrabat committed Dec 12, 2023
    Configuration menu
    Copy the full SHA
    4bfb12a View commit details
    Browse the repository at this point in the history