From 68c49f4cc1b2e1520604d9ac965ae7eb1b1a84ff Mon Sep 17 00:00:00 2001 From: Joe Theuerkauf <105436210+jtheuerkauf@users.noreply.github.com> Date: Wed, 10 May 2023 14:53:42 -0400 Subject: [PATCH 1/2] Update Symfony.php Fix invalid constant name from RFC2817 --- src/Vendor/Symfony.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Vendor/Symfony.php b/src/Vendor/Symfony.php index 709b25a..f52b088 100644 --- a/src/Vendor/Symfony.php +++ b/src/Vendor/Symfony.php @@ -108,7 +108,7 @@ interface Symfony const HTTP_LOCKED = RFC4918::ENTITY_LOCKED; const HTTP_FAILED_DEPENDENCY = RFC4918::FAILED_DEPENDENCY; const HTTP_RESERVED_FOR_WEBDAV_ADVANCED_COLLECTIONS_EXPIRED_PROPOSAL = RFC3648::UNORDERED_COLLECTION; - const HTTP_UPGRADE_REQUIRED = RFC2817::UPDATE_REQUIRED; + const HTTP_UPGRADE_REQUIRED = RFC2817::UPGRADE_REQUIRED; const HTTP_PRECONDITION_REQUIRED = RFC6585::PRECONDITION_REQUIRED; const HTTP_TOO_MANY_REQUESTS = RFC6585::TOO_MANY_REQUESTS; const HTTP_REQUEST_HEADER_FIELDS_TOO_LARGE = RFC6585::REQUEST_HEADER_FIELDS_TOO_LARGE; From 34e77aedec2aafdb0244fbdd7393cbb41412ced5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 19 Apr 2023 06:01:19 +0000 Subject: [PATCH 2/2] github-actions(deps): Bump shivammathur/setup-php from 2.25.0 to 2.25.1 Bumps [shivammathur/setup-php](https://github.com/shivammathur/setup-php) from 2.25.0 to 2.25.1. - [Release notes](https://github.com/shivammathur/setup-php/releases) - [Commits](https://github.com/shivammathur/setup-php/compare/2.25.0...2.25.1) --- updated-dependencies: - dependency-name: shivammathur/setup-php dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/integrate.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/integrate.yaml b/.github/workflows/integrate.yaml index adff6b9..f9e96b8 100644 --- a/.github/workflows/integrate.yaml +++ b/.github/workflows/integrate.yaml @@ -27,7 +27,7 @@ jobs: uses: "actions/checkout@v3.5.2" - name: "Set up PHP" - uses: "shivammathur/setup-php@2.25.0" + uses: "shivammathur/setup-php@2.25.1" with: coverage: "none" php-version: "${{ matrix.php-version }}"