From a0afd68f4893383a187a7e3ae3c7079773360c78 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 23 Nov 2021 05:01:01 +0000 Subject: [PATCH 01/64] github-actions(deps): bump actions/cache from 2.1.6 to 2.1.7 Bumps [actions/cache](https://github.com/actions/cache) from 2.1.6 to 2.1.7. - [Release notes](https://github.com/actions/cache/releases) - [Commits](https://github.com/actions/cache/compare/v2.1.6...v2.1.7) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/integrate.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/integrate.yaml b/.github/workflows/integrate.yaml index 8b18621c..3cf7e273 100644 --- a/.github/workflows/integrate.yaml +++ b/.github/workflows/integrate.yaml @@ -50,7 +50,7 @@ jobs: uses: "./.github/actions/composer/composer/determine-cache-directory" - name: "Cache dependencies installed with composer" - uses: "actions/cache@v2.1.6" + uses: "actions/cache@v2.1.7" with: path: "${{ env.COMPOSER_CACHE_DIR }}" key: "php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-${{ hashFiles('composer.lock') }}" @@ -68,7 +68,7 @@ jobs: run: "mkdir -p .build/php-cs-fixer" - name: "Cache cache directory for friendsofphp/php-cs-fixer" - uses: "actions/cache@v2.1.6" + uses: "actions/cache@v2.1.7" with: path: ".build/php-cs-fixer" key: "php-${{ matrix.php-version }}-php-cs-fixer-${{ github.sha }}" @@ -113,7 +113,7 @@ jobs: uses: "./.github/actions/composer/composer/determine-cache-directory" - name: "Cache dependencies installed with composer" - uses: "actions/cache@v2.1.6" + uses: "actions/cache@v2.1.7" with: path: "${{ env.COMPOSER_CACHE_DIR }}" key: "php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-${{ hashFiles('composer.lock') }}" @@ -131,7 +131,7 @@ jobs: run: "mkdir -p .build/phpstan" - name: "Cache cache directory for phpstan/phpstan" - uses: "actions/cache@v2.1.6" + uses: "actions/cache@v2.1.7" with: path: ".build/phpstan" key: "php-${{ matrix.php-version }}-phpstan-${{ github.sha }}" @@ -183,7 +183,7 @@ jobs: uses: "./.github/actions/composer/composer/determine-cache-directory" - name: "Cache dependencies installed with composer" - uses: "actions/cache@v2.1.6" + uses: "actions/cache@v2.1.7" with: path: "${{ env.COMPOSER_CACHE_DIR }}" key: "php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-${{ hashFiles('composer.lock') }}" From fcbd8b7eaebba7b4c356093c57a77c538e850a2f Mon Sep 17 00:00:00 2001 From: Rusi Papazov Date: Fri, 26 Nov 2021 00:17:55 +0200 Subject: [PATCH 02/64] Remove unnecessary `$` copy-pasting doesn't work with it. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 11c2521a..12dd433a 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ Provides a [`prophecy/prophecy`](https://github.com/phpspec/prophecy) extension Run ```shell -$ composer require --dev jangregor/phpstan-prophecy +composer require --dev jangregor/phpstan-prophecy ``` ## Configuration From c1bdd97b690e274dc5bb23b820d09318b3119353 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 14 Feb 2022 05:01:37 +0000 Subject: [PATCH 03/64] github-actions(deps): bump actions/github-script from 5 to 6 Bumps [actions/github-script](https://github.com/actions/github-script) from 5 to 6. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v5...v6) --- updated-dependencies: - dependency-name: actions/github-script dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/close.yaml | 2 +- .github/workflows/merge.yaml | 8 ++++---- .github/workflows/triage.yaml | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/close.yaml b/.github/workflows/close.yaml index 7ec7a982..b7babe67 100644 --- a/.github/workflows/close.yaml +++ b/.github/workflows/close.yaml @@ -16,7 +16,7 @@ jobs: steps: - name: "Close pull requests created by violinist-bot" - uses: "actions/github-script@v5" + uses: "actions/github-script@v6" with: github-token: "${{ secrets.GITHUB_TOKEN }}" script: | diff --git a/.github/workflows/merge.yaml b/.github/workflows/merge.yaml index 3dde43e1..b8d1a734 100644 --- a/.github/workflows/merge.yaml +++ b/.github/workflows/merge.yaml @@ -25,7 +25,7 @@ jobs: steps: - name: "Request review from @ergebnis-bot" - uses: "actions/github-script@v5" + uses: "actions/github-script@v6" with: github-token: "${{ secrets.GITHUB_TOKEN }}" script: | @@ -44,7 +44,7 @@ jobs: }) - name: "Assign @ergebnis-bot" - uses: "actions/github-script@v5" + uses: "actions/github-script@v6" with: github-token: "${{ secrets.GITHUB_TOKEN }}" script: | @@ -63,7 +63,7 @@ jobs: }) - name: "Approve pull request" - uses: "actions/github-script@v5" + uses: "actions/github-script@v6" with: github-token: "${{ secrets.GITHUB_TOKEN }}" script: | @@ -78,7 +78,7 @@ jobs: }) - name: "Merge pull request" - uses: "actions/github-script@v5" + uses: "actions/github-script@v6" with: github-token: "${{ secrets.GITHUB_TOKEN }}" script: | diff --git a/.github/workflows/triage.yaml b/.github/workflows/triage.yaml index 8e19a6d0..02ae15da 100644 --- a/.github/workflows/triage.yaml +++ b/.github/workflows/triage.yaml @@ -15,7 +15,7 @@ jobs: steps: - name: "Add labels based on branch name" - uses: "actions/github-script@v5" + uses: "actions/github-script@v6" with: github-token: "${{ secrets.GITHUB_TOKEN }}" script: | From a0e4dd8430d738b56b892a8684c65823a6d5506c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 2 Mar 2022 05:01:41 +0000 Subject: [PATCH 04/64] github-actions(deps): bump shivammathur/setup-php from 2.15.0 to 2.17.1 Bumps [shivammathur/setup-php](https://github.com/shivammathur/setup-php) from 2.15.0 to 2.17.1. - [Release notes](https://github.com/shivammathur/setup-php/releases) - [Commits](https://github.com/shivammathur/setup-php/compare/2.15.0...2.17.1) --- updated-dependencies: - dependency-name: shivammathur/setup-php dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .github/workflows/integrate.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/integrate.yaml b/.github/workflows/integrate.yaml index 8b18621c..91b3dd5a 100644 --- a/.github/workflows/integrate.yaml +++ b/.github/workflows/integrate.yaml @@ -37,7 +37,7 @@ jobs: strict: true - name: "Install PHP with extensions" - uses: "shivammathur/setup-php@2.15.0" + uses: "shivammathur/setup-php@2.17.1" with: coverage: "none" extensions: "${{ env.PHP_EXTENSIONS }}" @@ -103,7 +103,7 @@ jobs: uses: "actions/checkout@v2.4.0" - name: "Install PHP with extensions" - uses: "shivammathur/setup-php@2.15.0" + uses: "shivammathur/setup-php@2.17.1" with: coverage: "none" extensions: "${{ env.PHP_EXTENSIONS }}" @@ -170,7 +170,7 @@ jobs: uses: "actions/checkout@v2.4.0" - name: "Install PHP with extensions" - uses: "shivammathur/setup-php@2.15.0" + uses: "shivammathur/setup-php@2.17.1" with: coverage: "none" extensions: "${{ env.PHP_EXTENSIONS }}" From b83d0876ad5a99c095eb24a1c53886fb342b5724 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 2 Mar 2022 05:01:44 +0000 Subject: [PATCH 05/64] github-actions(deps): bump actions/checkout from 2.4.0 to 3 Bumps [actions/checkout](https://github.com/actions/checkout) from 2.4.0 to 3. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v2.4.0...v3) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/integrate.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/integrate.yaml b/.github/workflows/integrate.yaml index 8b18621c..584b6d31 100644 --- a/.github/workflows/integrate.yaml +++ b/.github/workflows/integrate.yaml @@ -27,7 +27,7 @@ jobs: steps: - name: "Checkout" - uses: "actions/checkout@v2.4.0" + uses: "actions/checkout@v3" - name: "Lint YAML files" uses: "ibiqlik/action-yamllint@v3.0.1" @@ -100,7 +100,7 @@ jobs: steps: - name: "Checkout" - uses: "actions/checkout@v2.4.0" + uses: "actions/checkout@v3" - name: "Install PHP with extensions" uses: "shivammathur/setup-php@2.15.0" @@ -167,7 +167,7 @@ jobs: steps: - name: "Checkout" - uses: "actions/checkout@v2.4.0" + uses: "actions/checkout@v3" - name: "Install PHP with extensions" uses: "shivammathur/setup-php@2.15.0" From 3391399b7d029b81eaa1931946266745aaac6ac7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 3 Mar 2022 11:21:18 +0000 Subject: [PATCH 06/64] github-actions(deps): bump ibiqlik/action-yamllint from 3.0.1 to 3.1 Bumps [ibiqlik/action-yamllint](https://github.com/ibiqlik/action-yamllint) from 3.0.1 to 3.1. - [Release notes](https://github.com/ibiqlik/action-yamllint/releases) - [Commits](https://github.com/ibiqlik/action-yamllint/compare/v3.0.1...v3.1) --- updated-dependencies: - dependency-name: ibiqlik/action-yamllint dependency-type: direct:production update-type: version-update:semver-minor ... 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 46aae188..420a8854 100644 --- a/.github/workflows/integrate.yaml +++ b/.github/workflows/integrate.yaml @@ -30,7 +30,7 @@ jobs: uses: "actions/checkout@v3" - name: "Lint YAML files" - uses: "ibiqlik/action-yamllint@v3.0.1" + uses: "ibiqlik/action-yamllint@v3.1" with: config_file: ".yamllint.yaml" file_or_dir: "." From 1d7e5d81cfa15e91e04e5884d8c285f4da116e5c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Thu, 3 Mar 2022 12:24:05 +0100 Subject: [PATCH 07/64] Fix: Remove custom sponsoring options --- .github/FUNDING.yml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml index 0f40d050..66085dc0 100644 --- a/.github/FUNDING.yml +++ b/.github/FUNDING.yml @@ -1,6 +1 @@ -custom: - - "https://cottonbureau.com/people/andreas-moller" - - "https://paypal.me/localheinz" - - "https://www.amazon.de/hz/wishlist/ls/2NCHMSJ4BC1OW" - - "https://www.buymeacoffee.com/localheinz" github: "localheinz" From 706a7869d32d917a1bbe64757b1490fb6175a24b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Thu, 3 Mar 2022 12:25:43 +0100 Subject: [PATCH 08/64] Fix: Consistently use semicolons --- .github/workflows/close.yaml | 4 ++-- .github/workflows/merge.yaml | 20 ++++++++++---------- .github/workflows/triage.yaml | 10 +++++----- 3 files changed, 17 insertions(+), 17 deletions(-) diff --git a/.github/workflows/close.yaml b/.github/workflows/close.yaml index b7babe67..2f46afd2 100644 --- a/.github/workflows/close.yaml +++ b/.github/workflows/close.yaml @@ -24,8 +24,8 @@ jobs: "violinist-bot", ] - const pullRequest = context.payload.pull_request - const repository = context.repo + const pullRequest = context.payload.pull_request; + const repository = context.repo; const actor = context.actor; diff --git a/.github/workflows/merge.yaml b/.github/workflows/merge.yaml index b8d1a734..15c97359 100644 --- a/.github/workflows/merge.yaml +++ b/.github/workflows/merge.yaml @@ -48,46 +48,46 @@ jobs: with: github-token: "${{ secrets.GITHUB_TOKEN }}" script: | - const pullRequest = context.payload.workflow_run.pull_requests[0] - const repository = context.repo + const pullRequest = context.payload.workflow_run.pull_requests[0]; + const repository = context.repo; const assignees = [ "ergebnis-bot", - ] + ]; await github.rest.issues.addAssignees({ owner: repository.owner, repo: repository.repo, assignees: assignees, issue_number: pullRequest.number - }) + }); - name: "Approve pull request" uses: "actions/github-script@v6" with: github-token: "${{ secrets.GITHUB_TOKEN }}" script: | - const pullRequest = context.payload.workflow_run.pull_requests[0] - const repository = context.repo + const pullRequest = context.payload.workflow_run.pull_requests[0]; + const repository = context.repo; await github.rest.pulls.createReview({ event: "APPROVE", owner: repository.owner, repo: repository.repo, pull_number: pullRequest.number, - }) + }); - name: "Merge pull request" uses: "actions/github-script@v6" with: github-token: "${{ secrets.GITHUB_TOKEN }}" script: | - const pullRequest = context.payload.workflow_run.pull_requests[0] - const repository = context.repo + const pullRequest = context.payload.workflow_run.pull_requests[0]; + const repository = context.repo; await github.rest.pulls.merge({ merge_method: "merge", owner: repository.owner, pull_number: pullRequest.number, repo: repository.repo, - }) + }); diff --git a/.github/workflows/triage.yaml b/.github/workflows/triage.yaml index 02ae15da..485bc3e6 100644 --- a/.github/workflows/triage.yaml +++ b/.github/workflows/triage.yaml @@ -22,17 +22,17 @@ jobs: const branchPrefixLabels = { feature: "enhancement", fix: "bug", - } + }; - const pullRequest = context.payload.pull_request - const repository = context.repo + const pullRequest = context.payload.pull_request; + const repository = context.repo; - const branchName = pullRequest.head.ref + const branchName = pullRequest.head.ref; const matches = branchName.match(new RegExp('^([^/]+)\/')); if (matches instanceof Array && branchPrefixLabels.hasOwnProperty(matches[1])) { - const label = branchPrefixLabels[matches[1]] + const label = branchPrefixLabels[matches[1]]; github.rest.issues.addLabels({ issue_number: pullRequest.number, From 57e0cfb6096f3407c39985198a4ee21bee588f81 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Thu, 3 Mar 2022 12:30:31 +0100 Subject: [PATCH 09/64] Fix: Do not request reviews and assign pull request to @ergebnis-bot --- .github/workflows/merge.yaml | 38 ------------------------------------ 1 file changed, 38 deletions(-) diff --git a/.github/workflows/merge.yaml b/.github/workflows/merge.yaml index 15c97359..a76f49ae 100644 --- a/.github/workflows/merge.yaml +++ b/.github/workflows/merge.yaml @@ -24,44 +24,6 @@ jobs: ) steps: - - name: "Request review from @ergebnis-bot" - uses: "actions/github-script@v6" - with: - github-token: "${{ secrets.GITHUB_TOKEN }}" - script: | - const pullRequest = context.payload.workflow_run.pull_requests[0] - const repository = context.repo - - const reviewers = [ - "ergebnis-bot", - ] - - await github.rest.pulls.requestReviewers({ - owner: repository.owner, - repo: repository.repo, - pull_number: pullRequest.number, - reviewers: reviewers, - }) - - - name: "Assign @ergebnis-bot" - uses: "actions/github-script@v6" - with: - github-token: "${{ secrets.GITHUB_TOKEN }}" - script: | - const pullRequest = context.payload.workflow_run.pull_requests[0]; - const repository = context.repo; - - const assignees = [ - "ergebnis-bot", - ]; - - await github.rest.issues.addAssignees({ - owner: repository.owner, - repo: repository.repo, - assignees: assignees, - issue_number: pullRequest.number - }); - - name: "Approve pull request" uses: "actions/github-script@v6" with: From 2bdc9537337a890f5455dda12cc9174c0cf5e655 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Thu, 3 Mar 2022 12:44:11 +0100 Subject: [PATCH 10/64] Fix: Remove sponsoring options --- .github/FUNDING.yml | 1 - 1 file changed, 1 deletion(-) delete mode 100644 .github/FUNDING.yml diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml deleted file mode 100644 index 66085dc0..00000000 --- a/.github/FUNDING.yml +++ /dev/null @@ -1 +0,0 @@ -github: "localheinz" From c78f6d2c9a843e48c5ece8dd8d2e3c4b18037437 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 22 Mar 2022 05:01:04 +0000 Subject: [PATCH 11/64] github-actions(deps): bump actions/cache from 2.1.7 to 3 Bumps [actions/cache](https://github.com/actions/cache) from 2.1.7 to 3. - [Release notes](https://github.com/actions/cache/releases) - [Commits](https://github.com/actions/cache/compare/v2.1.7...v3) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/integrate.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/integrate.yaml b/.github/workflows/integrate.yaml index 420a8854..a63d47ec 100644 --- a/.github/workflows/integrate.yaml +++ b/.github/workflows/integrate.yaml @@ -50,7 +50,7 @@ jobs: uses: "./.github/actions/composer/composer/determine-cache-directory" - name: "Cache dependencies installed with composer" - uses: "actions/cache@v2.1.7" + uses: "actions/cache@v3" with: path: "${{ env.COMPOSER_CACHE_DIR }}" key: "php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-${{ hashFiles('composer.lock') }}" @@ -68,7 +68,7 @@ jobs: run: "mkdir -p .build/php-cs-fixer" - name: "Cache cache directory for friendsofphp/php-cs-fixer" - uses: "actions/cache@v2.1.7" + uses: "actions/cache@v3" with: path: ".build/php-cs-fixer" key: "php-${{ matrix.php-version }}-php-cs-fixer-${{ github.sha }}" @@ -113,7 +113,7 @@ jobs: uses: "./.github/actions/composer/composer/determine-cache-directory" - name: "Cache dependencies installed with composer" - uses: "actions/cache@v2.1.7" + uses: "actions/cache@v3" with: path: "${{ env.COMPOSER_CACHE_DIR }}" key: "php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-${{ hashFiles('composer.lock') }}" @@ -131,7 +131,7 @@ jobs: run: "mkdir -p .build/phpstan" - name: "Cache cache directory for phpstan/phpstan" - uses: "actions/cache@v2.1.7" + uses: "actions/cache@v3" with: path: ".build/phpstan" key: "php-${{ matrix.php-version }}-phpstan-${{ github.sha }}" @@ -183,7 +183,7 @@ jobs: uses: "./.github/actions/composer/composer/determine-cache-directory" - name: "Cache dependencies installed with composer" - uses: "actions/cache@v2.1.7" + uses: "actions/cache@v3" with: path: "${{ env.COMPOSER_CACHE_DIR }}" key: "php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-${{ hashFiles('composer.lock') }}" From 33e9249c973b4459d8c9f59d8c4331334248bad0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 23 Mar 2022 05:01:58 +0000 Subject: [PATCH 12/64] github-actions(deps): bump shivammathur/setup-php from 2.17.1 to 2.18.0 Bumps [shivammathur/setup-php](https://github.com/shivammathur/setup-php) from 2.17.1 to 2.18.0. - [Release notes](https://github.com/shivammathur/setup-php/releases) - [Commits](https://github.com/shivammathur/setup-php/compare/2.17.1...2.18.0) --- updated-dependencies: - dependency-name: shivammathur/setup-php dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .github/workflows/integrate.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/integrate.yaml b/.github/workflows/integrate.yaml index a63d47ec..6830855f 100644 --- a/.github/workflows/integrate.yaml +++ b/.github/workflows/integrate.yaml @@ -37,7 +37,7 @@ jobs: strict: true - name: "Install PHP with extensions" - uses: "shivammathur/setup-php@2.17.1" + uses: "shivammathur/setup-php@2.18.0" with: coverage: "none" extensions: "${{ env.PHP_EXTENSIONS }}" @@ -103,7 +103,7 @@ jobs: uses: "actions/checkout@v3" - name: "Install PHP with extensions" - uses: "shivammathur/setup-php@2.17.1" + uses: "shivammathur/setup-php@2.18.0" with: coverage: "none" extensions: "${{ env.PHP_EXTENSIONS }}" @@ -170,7 +170,7 @@ jobs: uses: "actions/checkout@v3" - name: "Install PHP with extensions" - uses: "shivammathur/setup-php@2.17.1" + uses: "shivammathur/setup-php@2.18.0" with: coverage: "none" extensions: "${{ env.PHP_EXTENSIONS }}" From e543dc7b2bc7ed79bfba73575ddfb9ed61d4d940 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 11 Apr 2022 05:01:04 +0000 Subject: [PATCH 13/64] github-actions(deps): bump shivammathur/setup-php from 2.18.0 to 2.18.1 Bumps [shivammathur/setup-php](https://github.com/shivammathur/setup-php) from 2.18.0 to 2.18.1. - [Release notes](https://github.com/shivammathur/setup-php/releases) - [Commits](https://github.com/shivammathur/setup-php/compare/2.18.0...2.18.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 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/integrate.yaml b/.github/workflows/integrate.yaml index 6830855f..cb0736af 100644 --- a/.github/workflows/integrate.yaml +++ b/.github/workflows/integrate.yaml @@ -37,7 +37,7 @@ jobs: strict: true - name: "Install PHP with extensions" - uses: "shivammathur/setup-php@2.18.0" + uses: "shivammathur/setup-php@2.18.1" with: coverage: "none" extensions: "${{ env.PHP_EXTENSIONS }}" @@ -103,7 +103,7 @@ jobs: uses: "actions/checkout@v3" - name: "Install PHP with extensions" - uses: "shivammathur/setup-php@2.18.0" + uses: "shivammathur/setup-php@2.18.1" with: coverage: "none" extensions: "${{ env.PHP_EXTENSIONS }}" @@ -170,7 +170,7 @@ jobs: uses: "actions/checkout@v3" - name: "Install PHP with extensions" - uses: "shivammathur/setup-php@2.18.0" + uses: "shivammathur/setup-php@2.18.1" with: coverage: "none" extensions: "${{ env.PHP_EXTENSIONS }}" From c42814e4ba138dbdbaf396dbf8e46d2bab3add07 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 31 May 2022 05:01:05 +0000 Subject: [PATCH 14/64] github-actions(deps): bump shivammathur/setup-php from 2.18.1 to 2.19.0 Bumps [shivammathur/setup-php](https://github.com/shivammathur/setup-php) from 2.18.1 to 2.19.0. - [Release notes](https://github.com/shivammathur/setup-php/releases) - [Commits](https://github.com/shivammathur/setup-php/compare/2.18.1...2.19.0) --- updated-dependencies: - dependency-name: shivammathur/setup-php dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .github/workflows/integrate.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/integrate.yaml b/.github/workflows/integrate.yaml index cb0736af..0590fe1a 100644 --- a/.github/workflows/integrate.yaml +++ b/.github/workflows/integrate.yaml @@ -37,7 +37,7 @@ jobs: strict: true - name: "Install PHP with extensions" - uses: "shivammathur/setup-php@2.18.1" + uses: "shivammathur/setup-php@2.19.0" with: coverage: "none" extensions: "${{ env.PHP_EXTENSIONS }}" @@ -103,7 +103,7 @@ jobs: uses: "actions/checkout@v3" - name: "Install PHP with extensions" - uses: "shivammathur/setup-php@2.18.1" + uses: "shivammathur/setup-php@2.19.0" with: coverage: "none" extensions: "${{ env.PHP_EXTENSIONS }}" @@ -170,7 +170,7 @@ jobs: uses: "actions/checkout@v3" - name: "Install PHP with extensions" - uses: "shivammathur/setup-php@2.18.1" + uses: "shivammathur/setup-php@2.19.0" with: coverage: "none" extensions: "${{ env.PHP_EXTENSIONS }}" From eb5e9fa2ec706d3bf4be07cc345a45c131f2e236 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 7 Jun 2022 05:01:17 +0000 Subject: [PATCH 15/64] github-actions(deps): bump shivammathur/setup-php from 2.19.0 to 2.19.1 Bumps [shivammathur/setup-php](https://github.com/shivammathur/setup-php) from 2.19.0 to 2.19.1. - [Release notes](https://github.com/shivammathur/setup-php/releases) - [Commits](https://github.com/shivammathur/setup-php/compare/2.19.0...2.19.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 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/integrate.yaml b/.github/workflows/integrate.yaml index 0590fe1a..3ebe2c99 100644 --- a/.github/workflows/integrate.yaml +++ b/.github/workflows/integrate.yaml @@ -37,7 +37,7 @@ jobs: strict: true - name: "Install PHP with extensions" - uses: "shivammathur/setup-php@2.19.0" + uses: "shivammathur/setup-php@2.19.1" with: coverage: "none" extensions: "${{ env.PHP_EXTENSIONS }}" @@ -103,7 +103,7 @@ jobs: uses: "actions/checkout@v3" - name: "Install PHP with extensions" - uses: "shivammathur/setup-php@2.19.0" + uses: "shivammathur/setup-php@2.19.1" with: coverage: "none" extensions: "${{ env.PHP_EXTENSIONS }}" @@ -170,7 +170,7 @@ jobs: uses: "actions/checkout@v3" - name: "Install PHP with extensions" - uses: "shivammathur/setup-php@2.19.0" + uses: "shivammathur/setup-php@2.19.1" with: coverage: "none" extensions: "${{ env.PHP_EXTENSIONS }}" From eafcdae363d91a11693b3254606becd0578319f4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Fri, 8 Jul 2022 09:28:04 +0200 Subject: [PATCH 16/64] Fix: Allow ergebnis/composer-normalize to run as composer plugin --- composer.json | 3 +++ composer.lock | 49 +++++++++++++++++++++++-------------------------- 2 files changed, 26 insertions(+), 26 deletions(-) diff --git a/composer.json b/composer.json index 9e7ad1f9..5e6c66b5 100644 --- a/composer.json +++ b/composer.json @@ -25,6 +25,9 @@ "phpunit/phpunit": "^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0" }, "config": { + "allow-plugins": { + "ergebnis/composer-normalize": true + }, "sort-packages": true }, "extra": { diff --git a/composer.lock b/composer.lock index 4f7557ec..437be973 100644 --- a/composer.lock +++ b/composer.lock @@ -1081,9 +1081,6 @@ "require": { "php": "^7.1 || ^8.0" }, - "replace": { - "myclabs/deep-copy": "self.version" - }, "require-dev": { "doctrine/collections": "^1.0", "doctrine/common": "^2.6", @@ -1091,12 +1088,12 @@ }, "type": "library", "autoload": { - "psr-4": { - "DeepCopy\\": "src/DeepCopy/" - }, "files": [ "src/DeepCopy/deep_copy.php" - ] + ], + "psr-4": { + "DeepCopy\\": "src/DeepCopy/" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -3185,12 +3182,12 @@ } }, "autoload": { - "psr-4": { - "Symfony\\Polyfill\\Ctype\\": "" - }, "files": [ "bootstrap.php" - ] + ], + "psr-4": { + "Symfony\\Polyfill\\Ctype\\": "" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -3264,12 +3261,12 @@ } }, "autoload": { - "psr-4": { - "Symfony\\Polyfill\\Mbstring\\": "" - }, "files": [ "bootstrap.php" - ] + ], + "psr-4": { + "Symfony\\Polyfill\\Mbstring\\": "" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -3409,12 +3406,12 @@ } }, "autoload": { - "psr-4": { - "Symfony\\Polyfill\\Php72\\": "" - }, "files": [ "bootstrap.php" - ] + ], + "psr-4": { + "Symfony\\Polyfill\\Php72\\": "" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -3485,12 +3482,12 @@ } }, "autoload": { - "psr-4": { - "Symfony\\Polyfill\\Php73\\": "" - }, "files": [ "bootstrap.php" ], + "psr-4": { + "Symfony\\Polyfill\\Php73\\": "" + }, "classmap": [ "Resources/stubs" ] @@ -3564,12 +3561,12 @@ } }, "autoload": { - "psr-4": { - "Symfony\\Polyfill\\Php80\\": "" - }, "files": [ "bootstrap.php" ], + "psr-4": { + "Symfony\\Polyfill\\Php80\\": "" + }, "classmap": [ "Resources/stubs" ] @@ -3929,5 +3926,5 @@ "php": "^7.1 || ^8.0" }, "platform-dev": [], - "plugin-api-version": "2.1.0" + "plugin-api-version": "2.3.0" } From b39c2a548f59aa2356cb61c31241681d99b02a8e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 8 Jul 2022 07:41:07 +0000 Subject: [PATCH 17/64] github-actions(deps): bump shivammathur/setup-php from 2.19.1 to 2.20.1 Bumps [shivammathur/setup-php](https://github.com/shivammathur/setup-php) from 2.19.1 to 2.20.1. - [Release notes](https://github.com/shivammathur/setup-php/releases) - [Commits](https://github.com/shivammathur/setup-php/compare/2.19.1...2.20.1) --- updated-dependencies: - dependency-name: shivammathur/setup-php dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .github/workflows/integrate.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/integrate.yaml b/.github/workflows/integrate.yaml index 3ebe2c99..f1e10bff 100644 --- a/.github/workflows/integrate.yaml +++ b/.github/workflows/integrate.yaml @@ -37,7 +37,7 @@ jobs: strict: true - name: "Install PHP with extensions" - uses: "shivammathur/setup-php@2.19.1" + uses: "shivammathur/setup-php@2.20.1" with: coverage: "none" extensions: "${{ env.PHP_EXTENSIONS }}" @@ -103,7 +103,7 @@ jobs: uses: "actions/checkout@v3" - name: "Install PHP with extensions" - uses: "shivammathur/setup-php@2.19.1" + uses: "shivammathur/setup-php@2.20.1" with: coverage: "none" extensions: "${{ env.PHP_EXTENSIONS }}" @@ -170,7 +170,7 @@ jobs: uses: "actions/checkout@v3" - name: "Install PHP with extensions" - uses: "shivammathur/setup-php@2.19.1" + uses: "shivammathur/setup-php@2.20.1" with: coverage: "none" extensions: "${{ env.PHP_EXTENSIONS }}" From 297e4f52ec46413dc32931b11abd70f91706bc00 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Viktor=20Sz=C3=A9pe?= Date: Fri, 8 Jul 2022 09:05:50 +0000 Subject: [PATCH 18/64] Force PHP syntax highlight for stub files --- .gitattributes | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitattributes b/.gitattributes index a5794eb4..c66b15c9 100644 --- a/.gitattributes +++ b/.gitattributes @@ -13,3 +13,6 @@ phpstan-with-extension.neon export-ignore phpstan-without-extension-baseline.neon export-ignore phpstan-without-extension.neon export-ignore phpunit.xml export-ignore + +# PHP syntax highlight for stub files +*.phpstub linguist-language=PHP From d4e1933a66342622567871959757346a48a6a838 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 20 Jul 2022 05:02:06 +0000 Subject: [PATCH 19/64] github-actions(deps): bump shivammathur/setup-php from 2.20.1 to 2.21.0 Bumps [shivammathur/setup-php](https://github.com/shivammathur/setup-php) from 2.20.1 to 2.21.0. - [Release notes](https://github.com/shivammathur/setup-php/releases) - [Commits](https://github.com/shivammathur/setup-php/compare/2.20.1...2.21.0) --- updated-dependencies: - dependency-name: shivammathur/setup-php dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .github/workflows/integrate.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/integrate.yaml b/.github/workflows/integrate.yaml index f1e10bff..c2a78679 100644 --- a/.github/workflows/integrate.yaml +++ b/.github/workflows/integrate.yaml @@ -37,7 +37,7 @@ jobs: strict: true - name: "Install PHP with extensions" - uses: "shivammathur/setup-php@2.20.1" + uses: "shivammathur/setup-php@2.21.0" with: coverage: "none" extensions: "${{ env.PHP_EXTENSIONS }}" @@ -103,7 +103,7 @@ jobs: uses: "actions/checkout@v3" - name: "Install PHP with extensions" - uses: "shivammathur/setup-php@2.20.1" + uses: "shivammathur/setup-php@2.21.0" with: coverage: "none" extensions: "${{ env.PHP_EXTENSIONS }}" @@ -170,7 +170,7 @@ jobs: uses: "actions/checkout@v3" - name: "Install PHP with extensions" - uses: "shivammathur/setup-php@2.20.1" + uses: "shivammathur/setup-php@2.21.0" with: coverage: "none" extensions: "${{ env.PHP_EXTENSIONS }}" From f13da6ffc174f46a47efd318fe6ad4d1165c62d2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 28 Jul 2022 05:01:21 +0000 Subject: [PATCH 20/64] github-actions(deps): bump shivammathur/setup-php from 2.21.0 to 2.21.1 Bumps [shivammathur/setup-php](https://github.com/shivammathur/setup-php) from 2.21.0 to 2.21.1. - [Release notes](https://github.com/shivammathur/setup-php/releases) - [Commits](https://github.com/shivammathur/setup-php/compare/2.21.0...2.21.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 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/integrate.yaml b/.github/workflows/integrate.yaml index c2a78679..2fab7091 100644 --- a/.github/workflows/integrate.yaml +++ b/.github/workflows/integrate.yaml @@ -37,7 +37,7 @@ jobs: strict: true - name: "Install PHP with extensions" - uses: "shivammathur/setup-php@2.21.0" + uses: "shivammathur/setup-php@2.21.1" with: coverage: "none" extensions: "${{ env.PHP_EXTENSIONS }}" @@ -103,7 +103,7 @@ jobs: uses: "actions/checkout@v3" - name: "Install PHP with extensions" - uses: "shivammathur/setup-php@2.21.0" + uses: "shivammathur/setup-php@2.21.1" with: coverage: "none" extensions: "${{ env.PHP_EXTENSIONS }}" @@ -170,7 +170,7 @@ jobs: uses: "actions/checkout@v3" - name: "Install PHP with extensions" - uses: "shivammathur/setup-php@2.21.0" + uses: "shivammathur/setup-php@2.21.1" with: coverage: "none" extensions: "${{ env.PHP_EXTENSIONS }}" From 93e5362135ff8cc543782569fdfcf185d7ed86aa Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 19 Aug 2022 05:01:34 +0000 Subject: [PATCH 21/64] github-actions(deps): bump shivammathur/setup-php from 2.21.1 to 2.21.2 Bumps [shivammathur/setup-php](https://github.com/shivammathur/setup-php) from 2.21.1 to 2.21.2. - [Release notes](https://github.com/shivammathur/setup-php/releases) - [Commits](https://github.com/shivammathur/setup-php/compare/2.21.1...2.21.2) --- 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 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/integrate.yaml b/.github/workflows/integrate.yaml index 2fab7091..83a3d22a 100644 --- a/.github/workflows/integrate.yaml +++ b/.github/workflows/integrate.yaml @@ -37,7 +37,7 @@ jobs: strict: true - name: "Install PHP with extensions" - uses: "shivammathur/setup-php@2.21.1" + uses: "shivammathur/setup-php@2.21.2" with: coverage: "none" extensions: "${{ env.PHP_EXTENSIONS }}" @@ -103,7 +103,7 @@ jobs: uses: "actions/checkout@v3" - name: "Install PHP with extensions" - uses: "shivammathur/setup-php@2.21.1" + uses: "shivammathur/setup-php@2.21.2" with: coverage: "none" extensions: "${{ env.PHP_EXTENSIONS }}" @@ -170,7 +170,7 @@ jobs: uses: "actions/checkout@v3" - name: "Install PHP with extensions" - uses: "shivammathur/setup-php@2.21.1" + uses: "shivammathur/setup-php@2.21.2" with: coverage: "none" extensions: "${{ env.PHP_EXTENSIONS }}" From 790a57ae051331af7a396d595a68f2938f9ed5a9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 31 Oct 2022 05:01:23 +0000 Subject: [PATCH 22/64] github-actions(deps): Bump shivammathur/setup-php from 2.21.2 to 2.22.0 Bumps [shivammathur/setup-php](https://github.com/shivammathur/setup-php) from 2.21.2 to 2.22.0. - [Release notes](https://github.com/shivammathur/setup-php/releases) - [Commits](https://github.com/shivammathur/setup-php/compare/2.21.2...2.22.0) --- updated-dependencies: - dependency-name: shivammathur/setup-php dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .github/workflows/integrate.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/integrate.yaml b/.github/workflows/integrate.yaml index 83a3d22a..f080829f 100644 --- a/.github/workflows/integrate.yaml +++ b/.github/workflows/integrate.yaml @@ -37,7 +37,7 @@ jobs: strict: true - name: "Install PHP with extensions" - uses: "shivammathur/setup-php@2.21.2" + uses: "shivammathur/setup-php@2.22.0" with: coverage: "none" extensions: "${{ env.PHP_EXTENSIONS }}" @@ -103,7 +103,7 @@ jobs: uses: "actions/checkout@v3" - name: "Install PHP with extensions" - uses: "shivammathur/setup-php@2.21.2" + uses: "shivammathur/setup-php@2.22.0" with: coverage: "none" extensions: "${{ env.PHP_EXTENSIONS }}" @@ -170,7 +170,7 @@ jobs: uses: "actions/checkout@v3" - name: "Install PHP with extensions" - uses: "shivammathur/setup-php@2.21.2" + uses: "shivammathur/setup-php@2.22.0" with: coverage: "none" extensions: "${{ env.PHP_EXTENSIONS }}" From f0821d6187f1a590300ca692ea4acb06a6fef67c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 26 Dec 2022 05:00:36 +0000 Subject: [PATCH 23/64] github-actions(deps): Bump shivammathur/setup-php from 2.22.0 to 2.23.0 Bumps [shivammathur/setup-php](https://github.com/shivammathur/setup-php) from 2.22.0 to 2.23.0. - [Release notes](https://github.com/shivammathur/setup-php/releases) - [Commits](https://github.com/shivammathur/setup-php/compare/2.22.0...2.23.0) --- updated-dependencies: - dependency-name: shivammathur/setup-php dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .github/workflows/integrate.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/integrate.yaml b/.github/workflows/integrate.yaml index f080829f..8f741fcb 100644 --- a/.github/workflows/integrate.yaml +++ b/.github/workflows/integrate.yaml @@ -37,7 +37,7 @@ jobs: strict: true - name: "Install PHP with extensions" - uses: "shivammathur/setup-php@2.22.0" + uses: "shivammathur/setup-php@2.23.0" with: coverage: "none" extensions: "${{ env.PHP_EXTENSIONS }}" @@ -103,7 +103,7 @@ jobs: uses: "actions/checkout@v3" - name: "Install PHP with extensions" - uses: "shivammathur/setup-php@2.22.0" + uses: "shivammathur/setup-php@2.23.0" with: coverage: "none" extensions: "${{ env.PHP_EXTENSIONS }}" @@ -170,7 +170,7 @@ jobs: uses: "actions/checkout@v3" - name: "Install PHP with extensions" - uses: "shivammathur/setup-php@2.22.0" + uses: "shivammathur/setup-php@2.23.0" with: coverage: "none" extensions: "${{ env.PHP_EXTENSIONS }}" From 3868f070165534b85eb8b9fd5837e82f9550ce05 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 27 Jan 2023 05:00:33 +0000 Subject: [PATCH 24/64] github-actions(deps): Bump shivammathur/setup-php from 2.23.0 to 2.24.0 Bumps [shivammathur/setup-php](https://github.com/shivammathur/setup-php) from 2.23.0 to 2.24.0. - [Release notes](https://github.com/shivammathur/setup-php/releases) - [Commits](https://github.com/shivammathur/setup-php/compare/2.23.0...2.24.0) --- updated-dependencies: - dependency-name: shivammathur/setup-php dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .github/workflows/integrate.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/integrate.yaml b/.github/workflows/integrate.yaml index 8f741fcb..ddaf6cac 100644 --- a/.github/workflows/integrate.yaml +++ b/.github/workflows/integrate.yaml @@ -37,7 +37,7 @@ jobs: strict: true - name: "Install PHP with extensions" - uses: "shivammathur/setup-php@2.23.0" + uses: "shivammathur/setup-php@2.24.0" with: coverage: "none" extensions: "${{ env.PHP_EXTENSIONS }}" @@ -103,7 +103,7 @@ jobs: uses: "actions/checkout@v3" - name: "Install PHP with extensions" - uses: "shivammathur/setup-php@2.23.0" + uses: "shivammathur/setup-php@2.24.0" with: coverage: "none" extensions: "${{ env.PHP_EXTENSIONS }}" @@ -170,7 +170,7 @@ jobs: uses: "actions/checkout@v3" - name: "Install PHP with extensions" - uses: "shivammathur/setup-php@2.23.0" + uses: "shivammathur/setup-php@2.24.0" with: coverage: "none" extensions: "${{ env.PHP_EXTENSIONS }}" From d61d98f1ab4d25051b17f0c1546017e4f04d683c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 17 Apr 2023 05:56:33 +0000 Subject: [PATCH 25/64] github-actions(deps): Bump shivammathur/setup-php from 2.24.0 to 2.25.0 Bumps [shivammathur/setup-php](https://github.com/shivammathur/setup-php) from 2.24.0 to 2.25.0. - [Release notes](https://github.com/shivammathur/setup-php/releases) - [Commits](https://github.com/shivammathur/setup-php/compare/2.24.0...2.25.0) --- updated-dependencies: - dependency-name: shivammathur/setup-php dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .github/workflows/integrate.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/integrate.yaml b/.github/workflows/integrate.yaml index ddaf6cac..35084398 100644 --- a/.github/workflows/integrate.yaml +++ b/.github/workflows/integrate.yaml @@ -37,7 +37,7 @@ jobs: strict: true - name: "Install PHP with extensions" - uses: "shivammathur/setup-php@2.24.0" + uses: "shivammathur/setup-php@2.25.0" with: coverage: "none" extensions: "${{ env.PHP_EXTENSIONS }}" @@ -103,7 +103,7 @@ jobs: uses: "actions/checkout@v3" - name: "Install PHP with extensions" - uses: "shivammathur/setup-php@2.24.0" + uses: "shivammathur/setup-php@2.25.0" with: coverage: "none" extensions: "${{ env.PHP_EXTENSIONS }}" @@ -170,7 +170,7 @@ jobs: uses: "actions/checkout@v3" - name: "Install PHP with extensions" - uses: "shivammathur/setup-php@2.24.0" + uses: "shivammathur/setup-php@2.25.0" with: coverage: "none" extensions: "${{ env.PHP_EXTENSIONS }}" From e8feb7c5941b6722336a2d1a4ee506e1814b3898 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 19 Apr 2023 05:56:27 +0000 Subject: [PATCH 26/64] 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 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/integrate.yaml b/.github/workflows/integrate.yaml index 35084398..280012f5 100644 --- a/.github/workflows/integrate.yaml +++ b/.github/workflows/integrate.yaml @@ -37,7 +37,7 @@ jobs: strict: true - name: "Install PHP with extensions" - uses: "shivammathur/setup-php@2.25.0" + uses: "shivammathur/setup-php@2.25.1" with: coverage: "none" extensions: "${{ env.PHP_EXTENSIONS }}" @@ -103,7 +103,7 @@ jobs: uses: "actions/checkout@v3" - name: "Install PHP with extensions" - uses: "shivammathur/setup-php@2.25.0" + uses: "shivammathur/setup-php@2.25.1" with: coverage: "none" extensions: "${{ env.PHP_EXTENSIONS }}" @@ -170,7 +170,7 @@ jobs: uses: "actions/checkout@v3" - name: "Install PHP with extensions" - uses: "shivammathur/setup-php@2.25.0" + uses: "shivammathur/setup-php@2.25.1" with: coverage: "none" extensions: "${{ env.PHP_EXTENSIONS }}" From 27ec32e258055a55bc7256fb1530bc9fc6acc8f5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 26 May 2023 05:56:30 +0000 Subject: [PATCH 27/64] github-actions(deps): Bump shivammathur/setup-php from 2.25.1 to 2.25.2 Bumps [shivammathur/setup-php](https://github.com/shivammathur/setup-php) from 2.25.1 to 2.25.2. - [Release notes](https://github.com/shivammathur/setup-php/releases) - [Commits](https://github.com/shivammathur/setup-php/compare/2.25.1...2.25.2) --- 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 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/integrate.yaml b/.github/workflows/integrate.yaml index 280012f5..186998ef 100644 --- a/.github/workflows/integrate.yaml +++ b/.github/workflows/integrate.yaml @@ -37,7 +37,7 @@ jobs: strict: true - name: "Install PHP with extensions" - uses: "shivammathur/setup-php@2.25.1" + uses: "shivammathur/setup-php@2.25.2" with: coverage: "none" extensions: "${{ env.PHP_EXTENSIONS }}" @@ -103,7 +103,7 @@ jobs: uses: "actions/checkout@v3" - name: "Install PHP with extensions" - uses: "shivammathur/setup-php@2.25.1" + uses: "shivammathur/setup-php@2.25.2" with: coverage: "none" extensions: "${{ env.PHP_EXTENSIONS }}" @@ -170,7 +170,7 @@ jobs: uses: "actions/checkout@v3" - name: "Install PHP with extensions" - uses: "shivammathur/setup-php@2.25.1" + uses: "shivammathur/setup-php@2.25.2" with: coverage: "none" extensions: "${{ env.PHP_EXTENSIONS }}" From 2cdc2f1642368da7fc310a3966f38b7b3593def8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 13 Jun 2023 05:56:33 +0000 Subject: [PATCH 28/64] github-actions(deps): Bump shivammathur/setup-php from 2.25.2 to 2.25.4 Bumps [shivammathur/setup-php](https://github.com/shivammathur/setup-php) from 2.25.2 to 2.25.4. - [Release notes](https://github.com/shivammathur/setup-php/releases) - [Commits](https://github.com/shivammathur/setup-php/compare/2.25.2...2.25.4) --- 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 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/integrate.yaml b/.github/workflows/integrate.yaml index 186998ef..d507aafe 100644 --- a/.github/workflows/integrate.yaml +++ b/.github/workflows/integrate.yaml @@ -37,7 +37,7 @@ jobs: strict: true - name: "Install PHP with extensions" - uses: "shivammathur/setup-php@2.25.2" + uses: "shivammathur/setup-php@2.25.4" with: coverage: "none" extensions: "${{ env.PHP_EXTENSIONS }}" @@ -103,7 +103,7 @@ jobs: uses: "actions/checkout@v3" - name: "Install PHP with extensions" - uses: "shivammathur/setup-php@2.25.2" + uses: "shivammathur/setup-php@2.25.4" with: coverage: "none" extensions: "${{ env.PHP_EXTENSIONS }}" @@ -170,7 +170,7 @@ jobs: uses: "actions/checkout@v3" - name: "Install PHP with extensions" - uses: "shivammathur/setup-php@2.25.2" + uses: "shivammathur/setup-php@2.25.4" with: coverage: "none" extensions: "${{ env.PHP_EXTENSIONS }}" From 61811a012554567e876ba687a82d0d3141623ed8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 31 Jul 2023 05:41:31 +0000 Subject: [PATCH 29/64] github-actions(deps): Bump shivammathur/setup-php from 2.25.4 to 2.25.5 Bumps [shivammathur/setup-php](https://github.com/shivammathur/setup-php) from 2.25.4 to 2.25.5. - [Release notes](https://github.com/shivammathur/setup-php/releases) - [Commits](https://github.com/shivammathur/setup-php/compare/2.25.4...2.25.5) --- 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 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/integrate.yaml b/.github/workflows/integrate.yaml index d507aafe..4c3f3492 100644 --- a/.github/workflows/integrate.yaml +++ b/.github/workflows/integrate.yaml @@ -37,7 +37,7 @@ jobs: strict: true - name: "Install PHP with extensions" - uses: "shivammathur/setup-php@2.25.4" + uses: "shivammathur/setup-php@2.25.5" with: coverage: "none" extensions: "${{ env.PHP_EXTENSIONS }}" @@ -103,7 +103,7 @@ jobs: uses: "actions/checkout@v3" - name: "Install PHP with extensions" - uses: "shivammathur/setup-php@2.25.4" + uses: "shivammathur/setup-php@2.25.5" with: coverage: "none" extensions: "${{ env.PHP_EXTENSIONS }}" @@ -170,7 +170,7 @@ jobs: uses: "actions/checkout@v3" - name: "Install PHP with extensions" - uses: "shivammathur/setup-php@2.25.4" + uses: "shivammathur/setup-php@2.25.5" with: coverage: "none" extensions: "${{ env.PHP_EXTENSIONS }}" From 18981966ea4a9d35c4e09de45ec1cd25248073e9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 5 Sep 2023 05:04:42 +0000 Subject: [PATCH 30/64] github-actions(deps): Bump actions/checkout from 3 to 4 Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/integrate.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/integrate.yaml b/.github/workflows/integrate.yaml index 4c3f3492..ed3ecae0 100644 --- a/.github/workflows/integrate.yaml +++ b/.github/workflows/integrate.yaml @@ -27,7 +27,7 @@ jobs: steps: - name: "Checkout" - uses: "actions/checkout@v3" + uses: "actions/checkout@v4" - name: "Lint YAML files" uses: "ibiqlik/action-yamllint@v3.1" @@ -100,7 +100,7 @@ jobs: steps: - name: "Checkout" - uses: "actions/checkout@v3" + uses: "actions/checkout@v4" - name: "Install PHP with extensions" uses: "shivammathur/setup-php@2.25.5" @@ -167,7 +167,7 @@ jobs: steps: - name: "Checkout" - uses: "actions/checkout@v3" + uses: "actions/checkout@v4" - name: "Install PHP with extensions" uses: "shivammathur/setup-php@2.25.5" From e845ed495bee58b78ddd078a03823c31f2e72928 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 15 Sep 2023 05:26:41 +0000 Subject: [PATCH 31/64] github-actions(deps): Bump shivammathur/setup-php from 2.25.5 to 2.26.0 Bumps [shivammathur/setup-php](https://github.com/shivammathur/setup-php) from 2.25.5 to 2.26.0. - [Release notes](https://github.com/shivammathur/setup-php/releases) - [Commits](https://github.com/shivammathur/setup-php/compare/2.25.5...2.26.0) --- updated-dependencies: - dependency-name: shivammathur/setup-php dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .github/workflows/integrate.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/integrate.yaml b/.github/workflows/integrate.yaml index ed3ecae0..ce80301f 100644 --- a/.github/workflows/integrate.yaml +++ b/.github/workflows/integrate.yaml @@ -37,7 +37,7 @@ jobs: strict: true - name: "Install PHP with extensions" - uses: "shivammathur/setup-php@2.25.5" + uses: "shivammathur/setup-php@2.26.0" with: coverage: "none" extensions: "${{ env.PHP_EXTENSIONS }}" @@ -103,7 +103,7 @@ jobs: uses: "actions/checkout@v4" - name: "Install PHP with extensions" - uses: "shivammathur/setup-php@2.25.5" + uses: "shivammathur/setup-php@2.26.0" with: coverage: "none" extensions: "${{ env.PHP_EXTENSIONS }}" @@ -170,7 +170,7 @@ jobs: uses: "actions/checkout@v4" - name: "Install PHP with extensions" - uses: "shivammathur/setup-php@2.25.5" + uses: "shivammathur/setup-php@2.26.0" with: coverage: "none" extensions: "${{ env.PHP_EXTENSIONS }}" From 9097598ebf4ef0d1a4ce2e97e3a8a2d7a1863fe5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 2 Nov 2023 05:40:28 +0000 Subject: [PATCH 32/64] github-actions(deps): Bump shivammathur/setup-php from 2.26.0 to 2.27.0 Bumps [shivammathur/setup-php](https://github.com/shivammathur/setup-php) from 2.26.0 to 2.27.0. - [Release notes](https://github.com/shivammathur/setup-php/releases) - [Commits](https://github.com/shivammathur/setup-php/compare/2.26.0...2.27.0) --- updated-dependencies: - dependency-name: shivammathur/setup-php dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .github/workflows/integrate.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/integrate.yaml b/.github/workflows/integrate.yaml index ce80301f..952b5e62 100644 --- a/.github/workflows/integrate.yaml +++ b/.github/workflows/integrate.yaml @@ -37,7 +37,7 @@ jobs: strict: true - name: "Install PHP with extensions" - uses: "shivammathur/setup-php@2.26.0" + uses: "shivammathur/setup-php@2.27.0" with: coverage: "none" extensions: "${{ env.PHP_EXTENSIONS }}" @@ -103,7 +103,7 @@ jobs: uses: "actions/checkout@v4" - name: "Install PHP with extensions" - uses: "shivammathur/setup-php@2.26.0" + uses: "shivammathur/setup-php@2.27.0" with: coverage: "none" extensions: "${{ env.PHP_EXTENSIONS }}" @@ -170,7 +170,7 @@ jobs: uses: "actions/checkout@v4" - name: "Install PHP with extensions" - uses: "shivammathur/setup-php@2.26.0" + uses: "shivammathur/setup-php@2.27.0" with: coverage: "none" extensions: "${{ env.PHP_EXTENSIONS }}" From df745b5c667f0fc42a64529c5f0f9e8baffb8ac8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 8 Nov 2023 05:52:50 +0000 Subject: [PATCH 33/64] github-actions(deps): Bump shivammathur/setup-php from 2.27.0 to 2.27.1 Bumps [shivammathur/setup-php](https://github.com/shivammathur/setup-php) from 2.27.0 to 2.27.1. - [Release notes](https://github.com/shivammathur/setup-php/releases) - [Commits](https://github.com/shivammathur/setup-php/compare/2.27.0...2.27.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 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/integrate.yaml b/.github/workflows/integrate.yaml index 952b5e62..987ba694 100644 --- a/.github/workflows/integrate.yaml +++ b/.github/workflows/integrate.yaml @@ -37,7 +37,7 @@ jobs: strict: true - name: "Install PHP with extensions" - uses: "shivammathur/setup-php@2.27.0" + uses: "shivammathur/setup-php@2.27.1" with: coverage: "none" extensions: "${{ env.PHP_EXTENSIONS }}" @@ -103,7 +103,7 @@ jobs: uses: "actions/checkout@v4" - name: "Install PHP with extensions" - uses: "shivammathur/setup-php@2.27.0" + uses: "shivammathur/setup-php@2.27.1" with: coverage: "none" extensions: "${{ env.PHP_EXTENSIONS }}" @@ -170,7 +170,7 @@ jobs: uses: "actions/checkout@v4" - name: "Install PHP with extensions" - uses: "shivammathur/setup-php@2.27.0" + uses: "shivammathur/setup-php@2.27.1" with: coverage: "none" extensions: "${{ env.PHP_EXTENSIONS }}" From 11ee3932efd425d083cece8cc29b3161ff86a814 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 14 Nov 2023 05:32:40 +0000 Subject: [PATCH 34/64] github-actions(deps): Bump actions/github-script from 6 to 7 Bumps [actions/github-script](https://github.com/actions/github-script) from 6 to 7. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v6...v7) --- updated-dependencies: - dependency-name: actions/github-script dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/close.yaml | 2 +- .github/workflows/merge.yaml | 4 ++-- .github/workflows/triage.yaml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/close.yaml b/.github/workflows/close.yaml index 2f46afd2..364ded40 100644 --- a/.github/workflows/close.yaml +++ b/.github/workflows/close.yaml @@ -16,7 +16,7 @@ jobs: steps: - name: "Close pull requests created by violinist-bot" - uses: "actions/github-script@v6" + uses: "actions/github-script@v7" with: github-token: "${{ secrets.GITHUB_TOKEN }}" script: | diff --git a/.github/workflows/merge.yaml b/.github/workflows/merge.yaml index a76f49ae..7ae35284 100644 --- a/.github/workflows/merge.yaml +++ b/.github/workflows/merge.yaml @@ -25,7 +25,7 @@ jobs: steps: - name: "Approve pull request" - uses: "actions/github-script@v6" + uses: "actions/github-script@v7" with: github-token: "${{ secrets.GITHUB_TOKEN }}" script: | @@ -40,7 +40,7 @@ jobs: }); - name: "Merge pull request" - uses: "actions/github-script@v6" + uses: "actions/github-script@v7" with: github-token: "${{ secrets.GITHUB_TOKEN }}" script: | diff --git a/.github/workflows/triage.yaml b/.github/workflows/triage.yaml index 485bc3e6..b5466f9c 100644 --- a/.github/workflows/triage.yaml +++ b/.github/workflows/triage.yaml @@ -15,7 +15,7 @@ jobs: steps: - name: "Add labels based on branch name" - uses: "actions/github-script@v6" + uses: "actions/github-script@v7" with: github-token: "${{ secrets.GITHUB_TOKEN }}" script: | From 7b3ed08c800dfde30f480dacc63fa93b8e6091de Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 28 Nov 2023 05:32:53 +0000 Subject: [PATCH 35/64] github-actions(deps): Bump shivammathur/setup-php from 2.27.1 to 2.28.0 Bumps [shivammathur/setup-php](https://github.com/shivammathur/setup-php) from 2.27.1 to 2.28.0. - [Release notes](https://github.com/shivammathur/setup-php/releases) - [Commits](https://github.com/shivammathur/setup-php/compare/2.27.1...2.28.0) --- updated-dependencies: - dependency-name: shivammathur/setup-php dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .github/workflows/integrate.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/integrate.yaml b/.github/workflows/integrate.yaml index 987ba694..941615b0 100644 --- a/.github/workflows/integrate.yaml +++ b/.github/workflows/integrate.yaml @@ -37,7 +37,7 @@ jobs: strict: true - name: "Install PHP with extensions" - uses: "shivammathur/setup-php@2.27.1" + uses: "shivammathur/setup-php@2.28.0" with: coverage: "none" extensions: "${{ env.PHP_EXTENSIONS }}" @@ -103,7 +103,7 @@ jobs: uses: "actions/checkout@v4" - name: "Install PHP with extensions" - uses: "shivammathur/setup-php@2.27.1" + uses: "shivammathur/setup-php@2.28.0" with: coverage: "none" extensions: "${{ env.PHP_EXTENSIONS }}" @@ -170,7 +170,7 @@ jobs: uses: "actions/checkout@v4" - name: "Install PHP with extensions" - uses: "shivammathur/setup-php@2.27.1" + uses: "shivammathur/setup-php@2.28.0" with: coverage: "none" extensions: "${{ env.PHP_EXTENSIONS }}" From 0f145e1bbd915bdb11545ef7a10fa7f47b568932 Mon Sep 17 00:00:00 2001 From: Jurica Separovic Date: Thu, 4 Jan 2024 12:07:39 +0100 Subject: [PATCH 36/64] Remove unused check --- phpstan-without-extension-baseline.neon | 8 ++++---- .../ProphesizeDynamicReturnTypeExtension.php | 4 ---- .../Test/ObjectProphecy/ProphesizeTest.php | 19 +++++++++++++++++++ 3 files changed, 23 insertions(+), 8 deletions(-) diff --git a/phpstan-without-extension-baseline.neon b/phpstan-without-extension-baseline.neon index 9466479d..a66a2150 100644 --- a/phpstan-without-extension-baseline.neon +++ b/phpstan-without-extension-baseline.neon @@ -22,22 +22,22 @@ parameters: - message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:doubleTheNumber\\(\\)\\.$#" - count: 1 + count: 2 path: test/StaticAnalysis/Test/ObjectProphecy/ProphesizeTest.php - message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getFoo\\(\\)\\.$#" - count: 1 + count: 2 path: test/StaticAnalysis/Test/ObjectProphecy/ProphesizeTest.php - message: "#^Call to an undefined method object\\:\\:doubleTheNumber\\(\\)\\.$#" - count: 1 + count: 2 path: test/StaticAnalysis/Test/ObjectProphecy/ProphesizeTest.php - message: "#^Call to an undefined method object\\:\\:getFoo\\(\\)\\.$#" - count: 1 + count: 2 path: test/StaticAnalysis/Test/ObjectProphecy/ProphesizeTest.php - diff --git a/src/Type/Prophet/ProphesizeDynamicReturnTypeExtension.php b/src/Type/Prophet/ProphesizeDynamicReturnTypeExtension.php index a33d8798..a9a30c83 100644 --- a/src/Type/Prophet/ProphesizeDynamicReturnTypeExtension.php +++ b/src/Type/Prophet/ProphesizeDynamicReturnTypeExtension.php @@ -66,10 +66,6 @@ public function getTypeFromMethodCall( $className = $argumentType->getValue(); - if (!$returnType instanceof Type\TypeWithClassName) { - throw new ShouldNotHappenException(); - } - if ('static' === $className) { return $returnType; } diff --git a/test/StaticAnalysis/Test/ObjectProphecy/ProphesizeTest.php b/test/StaticAnalysis/Test/ObjectProphecy/ProphesizeTest.php index edcc659a..559d7999 100644 --- a/test/StaticAnalysis/Test/ObjectProphecy/ProphesizeTest.php +++ b/test/StaticAnalysis/Test/ObjectProphecy/ProphesizeTest.php @@ -16,6 +16,7 @@ use JanGregor\Prophecy\Test\StaticAnalysis\Src; use PHPUnit\Framework; use Prophecy\Argument; +use Prophecy\Prophet; /** * @internal @@ -83,6 +84,24 @@ public function testCreateProphecyInHelperMethod(): void self::assertEquals(5, $testDouble->doubleTheNumber(2)); } + public function testCreateProphecyInline(): void + { + $prophecy = (new Prophet())->prophesize(Src\BaseModel::class); + + $prophecy + ->getFoo() + ->willReturn('bar'); + + $prophecy + ->doubleTheNumber(Argument::is(2)) + ->willReturn(5); + + $testDouble = $prophecy->reveal(); + + self::assertEquals('bar', $testDouble->getFoo()); + self::assertEquals(5, $testDouble->doubleTheNumber(2)); + } + private function createProphecy() { return $this->prophesize(Src\BaseModel::class); From 91af1d3658ea193b4b615e82115151a7c0d49c5a Mon Sep 17 00:00:00 2001 From: Jens Hatlak Date: Fri, 12 Jan 2024 15:39:16 +0100 Subject: [PATCH 37/64] Fix phpspec/prophecy link label --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 12dd433a..21b20e7b 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ [![Violinist Enabled](https://img.shields.io/badge/violinist-enabled-brightgreen.svg)](https://violinist.io) -Provides a [`prophecy/prophecy`](https://github.com/phpspec/prophecy) extension for [`phpstan/phpstan`](https://github.com/phpstan/phpstan). +Provides a [`phpspec/prophecy`](https://github.com/phpspec/prophecy) extension for [`phpstan/phpstan`](https://github.com/phpstan/phpstan). ## Installation From c0c7f36e95702eac534281308e30b7b8d89489d5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 16 Jan 2024 05:59:00 +0000 Subject: [PATCH 38/64] github-actions(deps): Bump shivammathur/setup-php from 2.28.0 to 2.29.0 Bumps [shivammathur/setup-php](https://github.com/shivammathur/setup-php) from 2.28.0 to 2.29.0. - [Release notes](https://github.com/shivammathur/setup-php/releases) - [Commits](https://github.com/shivammathur/setup-php/compare/2.28.0...2.29.0) --- updated-dependencies: - dependency-name: shivammathur/setup-php dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .github/workflows/integrate.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/integrate.yaml b/.github/workflows/integrate.yaml index 941615b0..f5dc9eee 100644 --- a/.github/workflows/integrate.yaml +++ b/.github/workflows/integrate.yaml @@ -37,7 +37,7 @@ jobs: strict: true - name: "Install PHP with extensions" - uses: "shivammathur/setup-php@2.28.0" + uses: "shivammathur/setup-php@2.29.0" with: coverage: "none" extensions: "${{ env.PHP_EXTENSIONS }}" @@ -103,7 +103,7 @@ jobs: uses: "actions/checkout@v4" - name: "Install PHP with extensions" - uses: "shivammathur/setup-php@2.28.0" + uses: "shivammathur/setup-php@2.29.0" with: coverage: "none" extensions: "${{ env.PHP_EXTENSIONS }}" @@ -170,7 +170,7 @@ jobs: uses: "actions/checkout@v4" - name: "Install PHP with extensions" - uses: "shivammathur/setup-php@2.28.0" + uses: "shivammathur/setup-php@2.29.0" with: coverage: "none" extensions: "${{ env.PHP_EXTENSIONS }}" From d58821bbfd8622fc7ee05115f2030364a00e451a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 18 Jan 2024 05:22:58 +0000 Subject: [PATCH 39/64] github-actions(deps): Bump actions/cache from 3 to 4 Bumps [actions/cache](https://github.com/actions/cache) from 3 to 4. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/integrate.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/integrate.yaml b/.github/workflows/integrate.yaml index f5dc9eee..41239c18 100644 --- a/.github/workflows/integrate.yaml +++ b/.github/workflows/integrate.yaml @@ -50,7 +50,7 @@ jobs: uses: "./.github/actions/composer/composer/determine-cache-directory" - name: "Cache dependencies installed with composer" - uses: "actions/cache@v3" + uses: "actions/cache@v4" with: path: "${{ env.COMPOSER_CACHE_DIR }}" key: "php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-${{ hashFiles('composer.lock') }}" @@ -68,7 +68,7 @@ jobs: run: "mkdir -p .build/php-cs-fixer" - name: "Cache cache directory for friendsofphp/php-cs-fixer" - uses: "actions/cache@v3" + uses: "actions/cache@v4" with: path: ".build/php-cs-fixer" key: "php-${{ matrix.php-version }}-php-cs-fixer-${{ github.sha }}" @@ -113,7 +113,7 @@ jobs: uses: "./.github/actions/composer/composer/determine-cache-directory" - name: "Cache dependencies installed with composer" - uses: "actions/cache@v3" + uses: "actions/cache@v4" with: path: "${{ env.COMPOSER_CACHE_DIR }}" key: "php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-${{ hashFiles('composer.lock') }}" @@ -131,7 +131,7 @@ jobs: run: "mkdir -p .build/phpstan" - name: "Cache cache directory for phpstan/phpstan" - uses: "actions/cache@v3" + uses: "actions/cache@v4" with: path: ".build/phpstan" key: "php-${{ matrix.php-version }}-phpstan-${{ github.sha }}" @@ -183,7 +183,7 @@ jobs: uses: "./.github/actions/composer/composer/determine-cache-directory" - name: "Cache dependencies installed with composer" - uses: "actions/cache@v3" + uses: "actions/cache@v4" with: path: "${{ env.COMPOSER_CACHE_DIR }}" key: "php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-${{ hashFiles('composer.lock') }}" From bea94c75fba70fbe2b33a8d3753dd6f9cf473d43 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Fri, 23 Feb 2024 10:26:42 +0100 Subject: [PATCH 40/64] Enhancement: Use --ansi option --- .github/workflows/integrate.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/integrate.yaml b/.github/workflows/integrate.yaml index 41239c18..ff26ed47 100644 --- a/.github/workflows/integrate.yaml +++ b/.github/workflows/integrate.yaml @@ -44,7 +44,7 @@ jobs: php-version: "${{ matrix.php-version }}" - name: "Validate composer.json and composer.lock" - run: "composer validate --strict" + run: "composer validate --ansi --strict" - name: "Determine composer cache directory" uses: "./.github/actions/composer/composer/determine-cache-directory" @@ -62,7 +62,7 @@ jobs: dependencies: "${{ matrix.dependencies }}" - name: "Run ergebnis/composer-normalize" - run: "composer normalize --dry-run" + run: "composer normalize --ansi --dry-run" - name: "Create cache directory for friendsofphp/php-cs-fixer" run: "mkdir -p .build/php-cs-fixer" @@ -120,7 +120,7 @@ jobs: restore-keys: "php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-" - name: "Require phpunit/phpunit" - run: "composer require --dev phpunit/phpunit:^${{ matrix.phpunit-version }} --update-with-dependencies" + run: "composer require --ansi --dev phpunit/phpunit:^${{ matrix.phpunit-version }} --update-with-dependencies" - name: "Install ${{ matrix.dependencies }} dependencies with composer" uses: "./.github/actions/composer/composer/install" From 4f3cdc0defddad5c37fb6c7a1202053e412ccac1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Fri, 23 Feb 2024 10:28:30 +0100 Subject: [PATCH 41/64] Fix: Do not bother creating directories --- .github/workflows/integrate.yaml | 9 --------- 1 file changed, 9 deletions(-) diff --git a/.github/workflows/integrate.yaml b/.github/workflows/integrate.yaml index ff26ed47..f451fffd 100644 --- a/.github/workflows/integrate.yaml +++ b/.github/workflows/integrate.yaml @@ -64,9 +64,6 @@ jobs: - name: "Run ergebnis/composer-normalize" run: "composer normalize --ansi --dry-run" - - name: "Create cache directory for friendsofphp/php-cs-fixer" - run: "mkdir -p .build/php-cs-fixer" - - name: "Cache cache directory for friendsofphp/php-cs-fixer" uses: "actions/cache@v4" with: @@ -127,9 +124,6 @@ jobs: with: dependencies: "${{ matrix.dependencies }}" - - name: "Create cache directory for phpstan/phpstan" - run: "mkdir -p .build/phpstan" - - name: "Cache cache directory for phpstan/phpstan" uses: "actions/cache@v4" with: @@ -143,9 +137,6 @@ jobs: - name: "Show phpunit/phpunit version" run: "vendor/bin/phpunit --version" - - name: "Create cache directory for phpstan/phpstan" - run: "mkdir -p .build/phpstan" - - name: "Run phpstan/phpstan with extension" run: "vendor/bin/phpstan analyse --configuration=phpstan-with-extension.neon --memory-limit=-1" From dcd0f8b24768b7d4f46e4f93137549c9f649dab8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Fri, 23 Feb 2024 10:31:23 +0100 Subject: [PATCH 42/64] Fix: Use dash instead of asterisk --- .github/ISSUE_TEMPLATE.md | 4 ++-- .github/PULL_REQUEST_TEMPLATE.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md index 1788742b..4f697f15 100644 --- a/.github/ISSUE_TEMPLATE.md +++ b/.github/ISSUE_TEMPLATE.md @@ -6,8 +6,8 @@ #### Expected Result -* +- #### Actual Result -* +- diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 9e4b1b48..0f1d81cd 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -1,7 +1,7 @@ This pull request -* [x] -* [ ] +- [x] +- [ ] Follows #. Related to #. From a64cf79592f6381aa349b16c0393afe24c3cd9e3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Fri, 23 Feb 2024 10:32:34 +0100 Subject: [PATCH 43/64] Fix: Use single item --- .github/PULL_REQUEST_TEMPLATE.md | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 0f1d81cd..c83332ef 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -1,7 +1,6 @@ This pull request - [x] -- [ ] Follows #. Related to #. From 727e339f70823a916b69d1a656a657a4365f9fa6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Fri, 23 Feb 2024 18:13:04 +0100 Subject: [PATCH 44/64] Fix: Do not fail fast --- .github/workflows/integrate.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/integrate.yaml b/.github/workflows/integrate.yaml index f451fffd..c3b96c56 100644 --- a/.github/workflows/integrate.yaml +++ b/.github/workflows/integrate.yaml @@ -80,6 +80,8 @@ jobs: runs-on: "ubuntu-latest" strategy: + fail-fast: false + matrix: php-version: - "7.4" From caad05e78cc234b121c2d96847ee273a1fa91f75 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Fri, 23 Feb 2024 18:19:12 +0100 Subject: [PATCH 45/64] Enhancement: Use --ansi option --- .github/actions/composer/composer/install/run.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/actions/composer/composer/install/run.sh b/.github/actions/composer/composer/install/run.sh index a052ba6a..d55744c7 100755 --- a/.github/actions/composer/composer/install/run.sh +++ b/.github/actions/composer/composer/install/run.sh @@ -3,19 +3,19 @@ dependencies="${COMPOSER_INSTALL_DEPENDENCIES}" if [[ ${dependencies} == "lowest" ]]; then - composer update --no-interaction --no-progress --prefer-lowest + composer update --ansi --no-interaction --no-progress --prefer-lowest exit $? fi if [[ ${dependencies} == "locked" ]]; then - composer install --no-interaction --no-progress + composer install --ansi --no-interaction --no-progress exit $? fi if [[ ${dependencies} == "highest" ]]; then - composer update --no-interaction --no-progress + composer update --ansi --no-interaction --no-progress exit $? fi From bac77b81f8ec52ba8b67e4cf88acde75950babd0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Fri, 23 Feb 2024 18:17:53 +0100 Subject: [PATCH 46/64] Fix: Run tests on PHP 7.1 --- .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 c3b96c56..9c3d4f32 100644 --- a/.github/workflows/integrate.yaml +++ b/.github/workflows/integrate.yaml @@ -153,7 +153,7 @@ jobs: strategy: matrix: php-version: - - "7.4" + - "7.1" dependencies: - "locked" From daf3c483ae84ef9f8e8fe5674d22ea0858d0acc1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Fri, 23 Feb 2024 18:20:50 +0100 Subject: [PATCH 47/64] Enhancement: Turn on verbosity when running tests --- phpunit.xml | 1 + 1 file changed, 1 insertion(+) diff --git a/phpunit.xml b/phpunit.xml index 94afa3d9..2f5053bf 100644 --- a/phpunit.xml +++ b/phpunit.xml @@ -11,6 +11,7 @@ colors="true" failOnRisky="true" failOnWarning="true" + verbose="true" > From 0ee928c6afc87b7432b8869fd6ac1a7f8bb0d56d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Fri, 23 Feb 2024 18:22:52 +0100 Subject: [PATCH 48/64] Fix: Whitespace --- .github/PULL_REQUEST_TEMPLATE.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index c83332ef..45485df2 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -1,6 +1,6 @@ This pull request -- [x] +- [x] Follows #. Related to #. From ab5a8e7c5c679078625e691c9dc69780548c2aa3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Fri, 23 Feb 2024 18:40:50 +0100 Subject: [PATCH 49/64] Fix: Use dash instead of asterisk --- CHANGELOG.md | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9dbde24a..23e3bc8c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,7 +14,7 @@ For a full diff see [`0.8.1...1.0.0`][0.8.1...1.0.0]. ### Changed -* Added support for `phpstan/phpstan:^1.0.0` and dropped support for non-stable versions of `phpstan/phpstan` ([#266]), by [@alexander-schranz] +- Added support for `phpstan/phpstan:^1.0.0` and dropped support for non-stable versions of `phpstan/phpstan` ([#266]), by [@alexander-schranz] ## [`0.8.1`][0.8.1] @@ -22,7 +22,7 @@ For a full diff see [`0.8.0...0.8.1`][0.8.0...0.8.1]. ### Changed -* Allowed installation with PHP 8.0 ([#236]), by [@localheinz] +- Allowed installation with PHP 8.0 ([#236]), by [@localheinz] ## [`0.8.0`][0.8.0] @@ -30,7 +30,7 @@ For a full diff see [`0.7.0...0.8.0`][0.7.0...0.8.0]. ### Removed -* Removed the symbolic link from `src/extension.neon` to `extension.neon` ([#182]), by [@localheinz] +- Removed the symbolic link from `src/extension.neon` to `extension.neon` ([#182]), by [@localheinz] When using [`phpstan/extension-installer`](https://github.com/phpstan/extension-installer), no changes on your end are required. @@ -48,11 +48,11 @@ For a full diff see [`0.6.2...0.7.0`][0.6.2...0.7.0]. ### Changed -* Moved `src/extension.neon` to `extension.neon` ([#140]), by [@localheinz] -* Marked classes as `@internal` ([#144]), by [@localheinz] -* Moved and renamed internal classes ([#153]), by [@localheinz] -* Required `phpstan/phpstan:~0.12.6` ([#165]), by [@Jean85] -* Simplified extension by making use of generics ([#165]), by [@Jean85] and [@ondrejmirtes] +- Moved `src/extension.neon` to `extension.neon` ([#140]), by [@localheinz] +- Marked classes as `@internal` ([#144]), by [@localheinz] +- Moved and renamed internal classes ([#153]), by [@localheinz] +- Required `phpstan/phpstan:~0.12.6` ([#165]), by [@Jean85] +- Simplified extension by making use of generics ([#165]), by [@Jean85] and [@ondrejmirtes] ## [`0.6.2`][0.6.2] @@ -60,7 +60,7 @@ For a full diff see [`0.6.1...0.6.2`][0.6.1...0.6.2]. ### Fixed -* Allowed installation with `phpunit/phpunit:^9` ([#124]), by [@localheinz] +- Allowed installation with `phpunit/phpunit:^9` ([#124]), by [@localheinz] ## [`0.6.1`][0.6.1] @@ -68,8 +68,8 @@ For a full diff see [`0.6.0...0.6.1`][0.6.0...0.6.1]. ### Changed -* Marked classes as `final` ([#118]), by [@localheinz] -* Modified return value of `ObjectPropecyMethodReflection::hasSideEffects()` as invoking methods on an instance of `Prophecy\Prophecy\ObjectProphecy` might have side effects ([#119]), by [@localheinz] +- Marked classes as `final` ([#118]), by [@localheinz] +- Modified return value of `ObjectPropecyMethodReflection::hasSideEffects()` as invoking methods on an instance of `Prophecy\Prophecy\ObjectProphecy` might have side effects ([#119]), by [@localheinz] ## [`0.6.0`][0.6.0] @@ -77,8 +77,8 @@ For a full diff see [`0.5.1...0.6.0`][0.5.1...0.6.0]. ### Added -* Support for `willImplement()` ([#92]), by [@localheinz] -* Support for `willExtend()` ([#94]), by [@localheinz] +- Support for `willImplement()` ([#92]), by [@localheinz] +- Support for `willExtend()` ([#94]), by [@localheinz] ## [`0.5.1`][0.5.1] @@ -86,7 +86,7 @@ For a full diff see [`0.5.0...0.5.1`][0.5.0...0.5.1]. ### Changed -* Required at least `phpstan/phpstan:^0.12.0` ([#79]), by [@localheinz] +- Required at least `phpstan/phpstan:^0.12.0` ([#79]), by [@localheinz] ## [`0.5.0`][0.5.0] @@ -94,7 +94,7 @@ For a full diff see [`0.4.2...0.5.0`][0.4.2...0.5.0]. ### Added -* Allowed installation with `phpstan/phpstan:~0.12.2` ([#67]), by [@localheinz] and [@PedroTroller] +- Allowed installation with `phpstan/phpstan:~0.12.2` ([#67]), by [@localheinz] and [@PedroTroller] ## [`0.4.2`][0.4.2] From 40b04c8843d28561fa90fca6ee97e95678305026 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Fri, 23 Feb 2024 18:49:54 +0100 Subject: [PATCH 50/64] Enhancement: Adjust name --- .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 9c3d4f32..fa7073f1 100644 --- a/.github/workflows/integrate.yaml +++ b/.github/workflows/integrate.yaml @@ -118,7 +118,7 @@ jobs: key: "php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-${{ hashFiles('composer.lock') }}" restore-keys: "php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-" - - name: "Require phpunit/phpunit" + - name: "Require phpunit/phpunit:^${{ matrix.phpunit-version }}" run: "composer require --ansi --dev phpunit/phpunit:^${{ matrix.phpunit-version }} --update-with-dependencies" - name: "Install ${{ matrix.dependencies }} dependencies with composer" From 2af1e3680425b50ca2dae4b7ef681138e4a461ad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Fri, 23 Feb 2024 18:34:59 +0100 Subject: [PATCH 51/64] Fix: Expand matrix for static-code-analysis job --- .github/workflows/integrate.yaml | 85 +++++++++++++++++++++++++++++--- 1 file changed, 79 insertions(+), 6 deletions(-) diff --git a/.github/workflows/integrate.yaml b/.github/workflows/integrate.yaml index fa7073f1..f1371d43 100644 --- a/.github/workflows/integrate.yaml +++ b/.github/workflows/integrate.yaml @@ -83,20 +83,93 @@ jobs: fail-fast: false matrix: - php-version: - - "7.4" - phpunit-version: - "6.0.0" - - "7.0.0" - - "8.0.0" - - "9.0.0" + + php-version: + - "7.1" + - "7.2" + - "7.3" + - "7.4" dependencies: - "lowest" - "locked" - "highest" + include: + - phpunit-version: "7.0.0" + php-version: "7.1" + dependencies: "lowest" + + - phpunit-version: "7.0.0" + php-version: "7.1" + dependencies: "highest" + + - phpunit-version: "7.0.0" + php-version: "7.2" + dependencies: "lowest" + + - phpunit-version: "7.0.0" + php-version: "7.2" + dependencies: "highest" + + - phpunit-version: "7.0.0" + php-version: "7.3" + dependencies: "lowest" + + - phpunit-version: "7.0.0" + php-version: "7.3" + dependencies: "highest" + + - phpunit-version: "7.0.0" + php-version: "7.4" + dependencies: "lowest" + + - phpunit-version: "7.0.0" + php-version: "7.4" + dependencies: "highest" + + - phpunit-version: "8.0.0" + php-version: "7.2" + dependencies: "lowest" + + - phpunit-version: "8.0.0" + php-version: "7.2" + dependencies: "highest" + + - phpunit-version: "8.0.0" + php-version: "7.3" + dependencies: "lowest" + + - phpunit-version: "8.0.0" + php-version: "7.3" + dependencies: "highest" + + - phpunit-version: "8.0.0" + php-version: "7.4" + dependencies: "lowest" + + - phpunit-version: "8.0.0" + php-version: "7.4" + dependencies: "highest" + + - phpunit-version: "9.0.0" + php-version: "7.3" + dependencies: "lowest" + + - phpunit-version: "9.0.0" + php-version: "7.3" + dependencies: "highest" + + - phpunit-version: "9.0.0" + php-version: "7.4" + dependencies: "lowest" + + - phpunit-version: "9.0.0" + php-version: "7.4" + dependencies: "highest" + steps: - name: "Checkout" uses: "actions/checkout@v4" From f1a359fa59e9b9cd1aa9cb30a183421f23cf1761 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Fri, 23 Feb 2024 18:57:27 +0100 Subject: [PATCH 52/64] Enhancement: Use --ansi option --- .github/workflows/integrate.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/integrate.yaml b/.github/workflows/integrate.yaml index fa7073f1..c5f3fcc0 100644 --- a/.github/workflows/integrate.yaml +++ b/.github/workflows/integrate.yaml @@ -134,16 +134,16 @@ jobs: restore-keys: "php-${{ matrix.php-version }}-phpstan-" - name: "Show phpstan/phpstan version" - run: "vendor/bin/phpstan --version" + run: "vendor/bin/phpstan --ansi --version" - name: "Show phpunit/phpunit version" run: "vendor/bin/phpunit --version" - name: "Run phpstan/phpstan with extension" - run: "vendor/bin/phpstan analyse --configuration=phpstan-with-extension.neon --memory-limit=-1" + run: "vendor/bin/phpstan analyse --ansi --configuration=phpstan-with-extension.neon --memory-limit=-1" - name: "Run phpstan/phpstan without extension" - run: "vendor/bin/phpstan analyse --configuration=phpstan-without-extension.neon --memory-limit=-1" + run: "vendor/bin/phpstan analyse --ansi --configuration=phpstan-without-extension.neon --memory-limit=-1" tests: name: "Tests" From ffa0c6cee76d957ee3df70ffc96406545f5f9727 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Fri, 23 Feb 2024 10:36:33 +0100 Subject: [PATCH 53/64] Fix: Configure platform in composer.json --- .github/workflows/integrate.yaml | 4 + composer.json | 3 + composer.lock | 851 +++++++++++-------------------- 3 files changed, 304 insertions(+), 554 deletions(-) diff --git a/.github/workflows/integrate.yaml b/.github/workflows/integrate.yaml index de54e812..a9499659 100644 --- a/.github/workflows/integrate.yaml +++ b/.github/workflows/integrate.yaml @@ -191,6 +191,10 @@ jobs: key: "php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-${{ hashFiles('composer.lock') }}" restore-keys: "php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-" + - name: "Remove platform configuration with composer" + if: "matrix.dependencies != 'locked'" + run: "composer config platform.php --ansi --unset" + - name: "Require phpunit/phpunit:^${{ matrix.phpunit-version }}" run: "composer require --ansi --dev phpunit/phpunit:^${{ matrix.phpunit-version }} --update-with-dependencies" diff --git a/composer.json b/composer.json index 5e6c66b5..885e5ad4 100644 --- a/composer.json +++ b/composer.json @@ -28,6 +28,9 @@ "allow-plugins": { "ergebnis/composer-normalize": true }, + "platform": { + "php": "7.1" + }, "sort-packages": true }, "extra": { diff --git a/composer.lock b/composer.lock index 437be973..dee4de26 100644 --- a/composer.lock +++ b/composer.lock @@ -4,20 +4,20 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "9acf80128cdf0db1b699ab00cb87b800", + "content-hash": "d23c9cb6ba98b294de6712481f0272cc", "packages": [ { "name": "phpstan/phpstan", - "version": "1.1.1", + "version": "1.4.10", "source": { "type": "git", "url": "https://github.com/phpstan/phpstan.git", - "reference": "cb317029197236c571c1b9305b8dd12850d8d85c" + "reference": "898c479c39caa727bedf4311dd294a8f4e250e72" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpstan/phpstan/zipball/cb317029197236c571c1b9305b8dd12850d8d85c", - "reference": "cb317029197236c571c1b9305b8dd12850d8d85c", + "url": "https://api.github.com/repos/phpstan/phpstan/zipball/898c479c39caa727bedf4311dd294a8f4e250e72", + "reference": "898c479c39caa727bedf4311dd294a8f4e250e72", "shasum": "" }, "require": { @@ -31,11 +31,6 @@ "phpstan.phar" ], "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.0-dev" - } - }, "autoload": { "files": [ "bootstrap.php" @@ -48,7 +43,7 @@ "description": "PHPStan - PHP Static Analysis Tool", "support": { "issues": "https://github.com/phpstan/phpstan/issues", - "source": "https://github.com/phpstan/phpstan/tree/1.1.1" + "source": "https://github.com/phpstan/phpstan/tree/1.4.10" }, "funding": [ { @@ -68,29 +63,29 @@ "type": "tidelift" } ], - "time": "2021-11-06T22:46:47+00:00" + "time": "2022-03-14T10:25:45+00:00" } ], "packages-dev": [ { "name": "composer/semver", - "version": "3.2.6", + "version": "3.4.0", "source": { "type": "git", "url": "https://github.com/composer/semver.git", - "reference": "83e511e247de329283478496f7a1e114c9517506" + "reference": "35e8d0af4486141bc745f23a29cc2091eb624a32" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/semver/zipball/83e511e247de329283478496f7a1e114c9517506", - "reference": "83e511e247de329283478496f7a1e114c9517506", + "url": "https://api.github.com/repos/composer/semver/zipball/35e8d0af4486141bc745f23a29cc2091eb624a32", + "reference": "35e8d0af4486141bc745f23a29cc2091eb624a32", "shasum": "" }, "require": { "php": "^5.3.2 || ^7.0 || ^8.0" }, "require-dev": { - "phpstan/phpstan": "^0.12.54", + "phpstan/phpstan": "^1.4", "symfony/phpunit-bridge": "^4.2 || ^5" }, "type": "library", @@ -133,9 +128,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.6" + "source": "https://github.com/composer/semver/tree/3.4.0" }, "funding": [ { @@ -151,7 +146,7 @@ "type": "tidelift" } ], - "time": "2021-10-25T11:34:17+00:00" + "time": "2023-08-31T09:50:34+00:00" }, { "name": "composer/xdebug-handler", @@ -219,30 +214,34 @@ }, { "name": "doctrine/annotations", - "version": "1.13.2", + "version": "1.14.3", "source": { "type": "git", "url": "https://github.com/doctrine/annotations.git", - "reference": "5b668aef16090008790395c02c893b1ba13f7e08" + "reference": "fb0d71a7393298a7b232cbf4c8b1f73f3ec3d5af" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/annotations/zipball/5b668aef16090008790395c02c893b1ba13f7e08", - "reference": "5b668aef16090008790395c02c893b1ba13f7e08", + "url": "https://api.github.com/repos/doctrine/annotations/zipball/fb0d71a7393298a7b232cbf4c8b1f73f3ec3d5af", + "reference": "fb0d71a7393298a7b232cbf4c8b1f73f3ec3d5af", "shasum": "" }, "require": { - "doctrine/lexer": "1.*", + "doctrine/lexer": "^1 || ^2", "ext-tokenizer": "*", "php": "^7.1 || ^8.0", "psr/cache": "^1 || ^2 || ^3" }, "require-dev": { "doctrine/cache": "^1.11 || ^2.0", - "doctrine/coding-standard": "^6.0 || ^8.1", - "phpstan/phpstan": "^0.12.20", - "phpunit/phpunit": "^7.5 || ^8.0 || ^9.1.5", - "symfony/cache": "^4.4 || ^5.2" + "doctrine/coding-standard": "^9 || ^10", + "phpstan/phpstan": "~1.4.10 || ^1.8.0", + "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5", + "symfony/cache": "^4.4 || ^5.4 || ^6", + "vimeo/psalm": "^4.10" + }, + "suggest": { + "php": "PHP 8.0 or higher comes with attributes, a native replacement for annotations" }, "type": "library", "autoload": { @@ -285,35 +284,83 @@ ], "support": { "issues": "https://github.com/doctrine/annotations/issues", - "source": "https://github.com/doctrine/annotations/tree/1.13.2" + "source": "https://github.com/doctrine/annotations/tree/1.14.3" + }, + "time": "2023-02-01T09:20:38+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": "2021-08-05T19:00:23+00:00" + "time": "2024-01-30T19:34:25+00:00" }, { "name": "doctrine/instantiator", - "version": "1.4.0", + "version": "1.5.0", "source": { "type": "git", "url": "https://github.com/doctrine/instantiator.git", - "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b" + "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/instantiator/zipball/d56bf6102915de5702778fe20f2de3b2fe570b5b", - "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b", + "url": "https://api.github.com/repos/doctrine/instantiator/zipball/0a0fa9780f5d4e507415a065172d26a98d02047b", + "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b", "shasum": "" }, "require": { "php": "^7.1 || ^8.0" }, "require-dev": { - "doctrine/coding-standard": "^8.0", + "doctrine/coding-standard": "^9 || ^11", "ext-pdo": "*", "ext-phar": "*", - "phpbench/phpbench": "^0.13 || 1.0.0-alpha2", - "phpstan/phpstan": "^0.12", - "phpstan/phpstan-phpunit": "^0.12", - "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0" + "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": { @@ -340,7 +387,7 @@ ], "support": { "issues": "https://github.com/doctrine/instantiator/issues", - "source": "https://github.com/doctrine/instantiator/tree/1.4.0" + "source": "https://github.com/doctrine/instantiator/tree/1.5.0" }, "funding": [ { @@ -356,37 +403,37 @@ "type": "tidelift" } ], - "time": "2020-11-10T18:47:58+00:00" + "time": "2022-12-30T00:15:36+00:00" }, { "name": "doctrine/lexer", - "version": "1.0.2", + "version": "2.1.1", "source": { "type": "git", "url": "https://github.com/doctrine/lexer.git", - "reference": "1febd6c3ef84253d7c815bed85fc622ad207a9f8" + "reference": "861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/lexer/zipball/1febd6c3ef84253d7c815bed85fc622ad207a9f8", - "reference": "1febd6c3ef84253d7c815bed85fc622ad207a9f8", + "url": "https://api.github.com/repos/doctrine/lexer/zipball/861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6", + "reference": "861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6", "shasum": "" }, "require": { - "php": ">=5.3.2" + "doctrine/deprecations": "^1.0", + "php": "^7.1 || ^8.0" }, "require-dev": { - "phpunit/phpunit": "^4.5" + "doctrine/coding-standard": "^9 || ^12", + "phpstan/phpstan": "^1.3", + "phpunit/phpunit": "^7.5 || ^8.5 || ^9.6", + "psalm/plugin-phpunit": "^0.18.3", + "vimeo/psalm": "^4.11 || ^5.21" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.0.x-dev" - } - }, "autoload": { "psr-4": { - "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer" + "Doctrine\\Common\\Lexer\\": "src" } }, "notification-url": "https://packagist.org/downloads/", @@ -394,14 +441,14 @@ "MIT" ], "authors": [ - { - "name": "Roman Borschel", - "email": "roman@code-factory.org" - }, { "name": "Guilherme Blanco", "email": "guilhermeblanco@gmail.com" }, + { + "name": "Roman Borschel", + "email": "roman@code-factory.org" + }, { "name": "Johannes Schmitt", "email": "schmittjoh@gmail.com" @@ -418,9 +465,23 @@ ], "support": { "issues": "https://github.com/doctrine/lexer/issues", - "source": "https://github.com/doctrine/lexer/tree/1.0.2" + "source": "https://github.com/doctrine/lexer/tree/2.1.1" }, - "time": "2019-06-08T11:03:04+00:00" + "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%2Flexer", + "type": "tidelift" + } + ], + "time": "2024-02-05T11:35:39+00:00" }, { "name": "ergebnis/composer-normalize", @@ -936,16 +997,16 @@ }, { "name": "justinrainbow/json-schema", - "version": "5.2.11", + "version": "v5.2.13", "source": { "type": "git", "url": "https://github.com/justinrainbow/json-schema.git", - "reference": "2ab6744b7296ded80f8cc4f9509abbff393399aa" + "reference": "fbbe7e5d79f618997bc3332a6f49246036c45793" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/justinrainbow/json-schema/zipball/2ab6744b7296ded80f8cc4f9509abbff393399aa", - "reference": "2ab6744b7296ded80f8cc4f9509abbff393399aa", + "url": "https://api.github.com/repos/justinrainbow/json-schema/zipball/fbbe7e5d79f618997bc3332a6f49246036c45793", + "reference": "fbbe7e5d79f618997bc3332a6f49246036c45793", "shasum": "" }, "require": { @@ -1000,9 +1061,9 @@ ], "support": { "issues": "https://github.com/justinrainbow/json-schema/issues", - "source": "https://github.com/justinrainbow/json-schema/tree/5.2.11" + "source": "https://github.com/justinrainbow/json-schema/tree/v5.2.13" }, - "time": "2021-07-22T09:24:00+00:00" + "time": "2023-09-26T02:20:38+00:00" }, { "name": "localheinz/diff", @@ -1066,25 +1127,29 @@ }, { "name": "myclabs/deep-copy", - "version": "1.10.2", + "version": "1.11.1", "source": { "type": "git", "url": "https://github.com/myclabs/DeepCopy.git", - "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220" + "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/776f831124e9c62e1a2c601ecc52e776d8bb7220", - "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220", + "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/7284c22080590fb39f2ffa3e9057f10a4ddd0e0c", + "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c", "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.0", - "doctrine/common": "^2.6", - "phpunit/phpunit": "^7.1" + "doctrine/collections": "^1.6.8", + "doctrine/common": "^2.13.3 || ^3.2.2", + "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13" }, "type": "library", "autoload": { @@ -1109,7 +1174,7 @@ ], "support": { "issues": "https://github.com/myclabs/DeepCopy/issues", - "source": "https://github.com/myclabs/DeepCopy/tree/1.10.2" + "source": "https://github.com/myclabs/DeepCopy/tree/1.11.1" }, "funding": [ { @@ -1117,7 +1182,7 @@ "type": "tidelift" } ], - "time": "2020-11-13T09:40:50+00:00" + "time": "2023-03-08T13:26:56+00:00" }, { "name": "phar-io/manifest", @@ -1282,6 +1347,7 @@ "issues": "https://github.com/PHP-CS-Fixer/diff/issues", "source": "https://github.com/PHP-CS-Fixer/diff/tree/v1.3.1" }, + "abandoned": true, "time": "2020-10-14T08:39:05+00:00" }, { @@ -1580,16 +1646,16 @@ }, { "name": "phpunit/php-file-iterator", - "version": "2.0.4", + "version": "2.0.5", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/php-file-iterator.git", - "reference": "28af674ff175d0768a5a978e6de83f697d4a7f05" + "reference": "42c5ba5220e6904cbfe8b1a1bda7c0cfdc8c12f5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/28af674ff175d0768a5a978e6de83f697d4a7f05", - "reference": "28af674ff175d0768a5a978e6de83f697d4a7f05", + "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/42c5ba5220e6904cbfe8b1a1bda7c0cfdc8c12f5", + "reference": "42c5ba5220e6904cbfe8b1a1bda7c0cfdc8c12f5", "shasum": "" }, "require": { @@ -1628,7 +1694,7 @@ ], "support": { "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues", - "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/2.0.4" + "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/2.0.5" }, "funding": [ { @@ -1636,7 +1702,7 @@ "type": "github" } ], - "time": "2021-07-19T06:46:01+00:00" + "time": "2021-12-02T12:42:26+00:00" }, { "name": "phpunit/php-text-template", @@ -1939,59 +2005,6 @@ }, "time": "2016-08-06T20:24:11+00:00" }, - { - "name": "psr/container", - "version": "1.0.0", - "source": { - "type": "git", - "url": "https://github.com/php-fig/container.git", - "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f", - "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f", - "shasum": "" - }, - "require": { - "php": ">=5.3.0" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.0.x-dev" - } - }, - "autoload": { - "psr-4": { - "Psr\\Container\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "PHP-FIG", - "homepage": "http://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/master" - }, - "time": "2017-02-14T16:28:37+00:00" - }, { "name": "psr/log", "version": "1.1.4", @@ -2099,16 +2112,16 @@ }, { "name": "sebastian/comparator", - "version": "3.0.3", + "version": "3.0.5", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/comparator.git", - "reference": "1071dfcef776a57013124ff35e1fc41ccd294758" + "reference": "1dc7ceb4a24aede938c7af2a9ed1de09609ca770" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/1071dfcef776a57013124ff35e1fc41ccd294758", - "reference": "1071dfcef776a57013124ff35e1fc41ccd294758", + "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/1dc7ceb4a24aede938c7af2a9ed1de09609ca770", + "reference": "1dc7ceb4a24aede938c7af2a9ed1de09609ca770", "shasum": "" }, "require": { @@ -2161,7 +2174,7 @@ ], "support": { "issues": "https://github.com/sebastianbergmann/comparator/issues", - "source": "https://github.com/sebastianbergmann/comparator/tree/3.0.3" + "source": "https://github.com/sebastianbergmann/comparator/tree/3.0.5" }, "funding": [ { @@ -2169,20 +2182,20 @@ "type": "github" } ], - "time": "2020-11-30T08:04:30+00:00" + "time": "2022-09-14T12:31:48+00:00" }, { "name": "sebastian/diff", - "version": "3.0.3", + "version": "3.0.4", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/diff.git", - "reference": "14f72dd46eaf2f2293cbe79c93cc0bc43161a211" + "reference": "6296a0c086dd0117c1b78b059374d7fcbe7545ae" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/14f72dd46eaf2f2293cbe79c93cc0bc43161a211", - "reference": "14f72dd46eaf2f2293cbe79c93cc0bc43161a211", + "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/6296a0c086dd0117c1b78b059374d7fcbe7545ae", + "reference": "6296a0c086dd0117c1b78b059374d7fcbe7545ae", "shasum": "" }, "require": { @@ -2227,7 +2240,7 @@ ], "support": { "issues": "https://github.com/sebastianbergmann/diff/issues", - "source": "https://github.com/sebastianbergmann/diff/tree/3.0.3" + "source": "https://github.com/sebastianbergmann/diff/tree/3.0.4" }, "funding": [ { @@ -2235,7 +2248,7 @@ "type": "github" } ], - "time": "2020-11-30T07:59:04+00:00" + "time": "2023-05-07T05:30:20+00:00" }, { "name": "sebastian/environment", @@ -2302,16 +2315,16 @@ }, { "name": "sebastian/exporter", - "version": "3.1.3", + "version": "3.1.5", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/exporter.git", - "reference": "6b853149eab67d4da22291d36f5b0631c0fd856e" + "reference": "73a9676f2833b9a7c36968f9d882589cd75511e6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/6b853149eab67d4da22291d36f5b0631c0fd856e", - "reference": "6b853149eab67d4da22291d36f5b0631c0fd856e", + "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/73a9676f2833b9a7c36968f9d882589cd75511e6", + "reference": "73a9676f2833b9a7c36968f9d882589cd75511e6", "shasum": "" }, "require": { @@ -2320,7 +2333,7 @@ }, "require-dev": { "ext-mbstring": "*", - "phpunit/phpunit": "^6.0" + "phpunit/phpunit": "^8.5" }, "type": "library", "extra": { @@ -2367,7 +2380,7 @@ ], "support": { "issues": "https://github.com/sebastianbergmann/exporter/issues", - "source": "https://github.com/sebastianbergmann/exporter/tree/3.1.3" + "source": "https://github.com/sebastianbergmann/exporter/tree/3.1.5" }, "funding": [ { @@ -2375,7 +2388,7 @@ "type": "github" } ], - "time": "2020-11-30T07:47:53+00:00" + "time": "2022-09-14T06:00:17+00:00" }, { "name": "sebastian/global-state", @@ -2708,43 +2721,37 @@ }, { "name": "symfony/console", - "version": "v4.4.33", + "version": "v3.4.47", "source": { "type": "git", "url": "https://github.com/symfony/console.git", - "reference": "8dbd23ef7a8884051482183ddee8d9061b5feed0" + "reference": "a10b1da6fc93080c180bba7219b5ff5b7518fe81" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/console/zipball/8dbd23ef7a8884051482183ddee8d9061b5feed0", - "reference": "8dbd23ef7a8884051482183ddee8d9061b5feed0", + "url": "https://api.github.com/repos/symfony/console/zipball/a10b1da6fc93080c180bba7219b5ff5b7518fe81", + "reference": "a10b1da6fc93080c180bba7219b5ff5b7518fe81", "shasum": "" }, "require": { - "php": ">=7.1.3", - "symfony/polyfill-mbstring": "~1.0", - "symfony/polyfill-php73": "^1.8", - "symfony/polyfill-php80": "^1.16", - "symfony/service-contracts": "^1.1|^2" + "php": "^5.5.9|>=7.0.8", + "symfony/debug": "~2.8|~3.0|~4.0", + "symfony/polyfill-mbstring": "~1.0" }, "conflict": { - "psr/log": ">=3", "symfony/dependency-injection": "<3.4", - "symfony/event-dispatcher": "<4.3|>=5", - "symfony/lock": "<4.4", "symfony/process": "<3.3" }, "provide": { - "psr/log-implementation": "1.0|2.0" + "psr/log-implementation": "1.0" }, "require-dev": { - "psr/log": "^1|^2", - "symfony/config": "^3.4|^4.0|^5.0", - "symfony/dependency-injection": "^3.4|^4.0|^5.0", - "symfony/event-dispatcher": "^4.3", - "symfony/lock": "^4.4|^5.0", - "symfony/process": "^3.4|^4.0|^5.0", - "symfony/var-dumper": "^4.3|^5.0" + "psr/log": "~1.0", + "symfony/config": "~3.3|~4.0", + "symfony/dependency-injection": "~3.4|~4.0", + "symfony/event-dispatcher": "~2.8|~3.0|~4.0", + "symfony/lock": "~3.4|~4.0", + "symfony/process": "~3.3|~4.0" }, "suggest": { "psr/log": "For using the console logger", @@ -2775,10 +2782,10 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Eases the creation of beautiful and testable command line interfaces", + "description": "Symfony Console Component", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/console/tree/v4.4.33" + "source": "https://github.com/symfony/console/tree/v3.4.47" }, "funding": [ { @@ -2794,52 +2801,36 @@ "type": "tidelift" } ], - "time": "2021-10-25T16:36:08+00:00" + "time": "2020-10-24T10:57:07+00:00" }, { - "name": "symfony/event-dispatcher", - "version": "v4.4.30", + "name": "symfony/debug", + "version": "v3.4.47", "source": { "type": "git", - "url": "https://github.com/symfony/event-dispatcher.git", - "reference": "2fe81680070043c4c80e7cedceb797e34f377bac" + "url": "https://github.com/symfony/debug.git", + "reference": "ab42889de57fdfcfcc0759ab102e2fd4ea72dcae" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/2fe81680070043c4c80e7cedceb797e34f377bac", - "reference": "2fe81680070043c4c80e7cedceb797e34f377bac", + "url": "https://api.github.com/repos/symfony/debug/zipball/ab42889de57fdfcfcc0759ab102e2fd4ea72dcae", + "reference": "ab42889de57fdfcfcc0759ab102e2fd4ea72dcae", "shasum": "" }, "require": { - "php": ">=7.1.3", - "symfony/event-dispatcher-contracts": "^1.1", - "symfony/polyfill-php80": "^1.16" + "php": "^5.5.9|>=7.0.8", + "psr/log": "~1.0" }, "conflict": { - "symfony/dependency-injection": "<3.4" - }, - "provide": { - "psr/event-dispatcher-implementation": "1.0", - "symfony/event-dispatcher-implementation": "1.1" + "symfony/http-kernel": ">=2.3,<2.3.24|~2.4.0|>=2.5,<2.5.9|>=2.6,<2.6.2" }, "require-dev": { - "psr/log": "^1|^2|^3", - "symfony/config": "^3.4|^4.0|^5.0", - "symfony/dependency-injection": "^3.4|^4.0|^5.0", - "symfony/error-handler": "~3.4|~4.4", - "symfony/expression-language": "^3.4|^4.0|^5.0", - "symfony/http-foundation": "^3.4|^4.0|^5.0", - "symfony/service-contracts": "^1.1|^2", - "symfony/stopwatch": "^3.4|^4.0|^5.0" - }, - "suggest": { - "symfony/dependency-injection": "", - "symfony/http-kernel": "" + "symfony/http-kernel": "~2.8|~3.0|~4.0" }, "type": "library", "autoload": { "psr-4": { - "Symfony\\Component\\EventDispatcher\\": "" + "Symfony\\Component\\Debug\\": "" }, "exclude-from-classmap": [ "/Tests/" @@ -2859,10 +2850,10 @@ "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", + "description": "Symfony Debug Component", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/event-dispatcher/tree/v4.4.30" + "source": "https://github.com/symfony/debug/tree/v3.4.47" }, "funding": [ { @@ -2878,43 +2869,49 @@ "type": "tidelift" } ], - "time": "2021-08-04T20:31:23+00:00" + "abandoned": "symfony/error-handler", + "time": "2020-10-24T10:57:07+00:00" }, { - "name": "symfony/event-dispatcher-contracts", - "version": "v1.1.9", + "name": "symfony/event-dispatcher", + "version": "v3.4.47", "source": { "type": "git", - "url": "https://github.com/symfony/event-dispatcher-contracts.git", - "reference": "84e23fdcd2517bf37aecbd16967e83f0caee25a7" + "url": "https://github.com/symfony/event-dispatcher.git", + "reference": "31fde73757b6bad247c54597beef974919ec6860" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/84e23fdcd2517bf37aecbd16967e83f0caee25a7", - "reference": "84e23fdcd2517bf37aecbd16967e83f0caee25a7", + "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/31fde73757b6bad247c54597beef974919ec6860", + "reference": "31fde73757b6bad247c54597beef974919ec6860", "shasum": "" }, "require": { - "php": ">=7.1.3" + "php": "^5.5.9|>=7.0.8" + }, + "conflict": { + "symfony/dependency-injection": "<3.3" + }, + "require-dev": { + "psr/log": "~1.0", + "symfony/config": "~2.8|~3.0|~4.0", + "symfony/debug": "~3.4|~4.4", + "symfony/dependency-injection": "~3.3|~4.0", + "symfony/expression-language": "~2.8|~3.0|~4.0", + "symfony/stopwatch": "~2.8|~3.0|~4.0" }, "suggest": { - "psr/event-dispatcher": "", - "symfony/event-dispatcher-implementation": "" + "symfony/dependency-injection": "", + "symfony/http-kernel": "" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.1-dev" - }, - "thanks": { - "name": "symfony/contracts", - "url": "https://github.com/symfony/contracts" - } - }, "autoload": { "psr-4": { - "Symfony\\Contracts\\EventDispatcher\\": "" - } + "Symfony\\Component\\EventDispatcher\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -2922,26 +2919,18 @@ ], "authors": [ { - "name": "Nicolas Grekas", - "email": "p@tchwork.com" + "name": "Fabien Potencier", + "email": "fabien@symfony.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], - "description": "Generic abstractions related to dispatching event", + "description": "Symfony EventDispatcher Component", "homepage": "https://symfony.com", - "keywords": [ - "abstractions", - "contracts", - "decoupling", - "interfaces", - "interoperability", - "standards" - ], "support": { - "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v1.1.9" + "source": "https://github.com/symfony/event-dispatcher/tree/v3.4.47" }, "funding": [ { @@ -2957,26 +2946,25 @@ "type": "tidelift" } ], - "time": "2020-07-06T13:19:58+00:00" + "time": "2020-10-24T10:57:07+00:00" }, { "name": "symfony/filesystem", - "version": "v4.4.27", + "version": "v3.4.47", "source": { "type": "git", "url": "https://github.com/symfony/filesystem.git", - "reference": "517fb795794faf29086a77d99eb8f35e457837a7" + "reference": "e58d7841cddfed6e846829040dca2cca0ebbbbb3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/filesystem/zipball/517fb795794faf29086a77d99eb8f35e457837a7", - "reference": "517fb795794faf29086a77d99eb8f35e457837a7", + "url": "https://api.github.com/repos/symfony/filesystem/zipball/e58d7841cddfed6e846829040dca2cca0ebbbbb3", + "reference": "e58d7841cddfed6e846829040dca2cca0ebbbbb3", "shasum": "" }, "require": { - "php": ">=7.1.3", - "symfony/polyfill-ctype": "~1.8", - "symfony/polyfill-php80": "^1.16" + "php": "^5.5.9|>=7.0.8", + "symfony/polyfill-ctype": "~1.8" }, "type": "library", "autoload": { @@ -3001,10 +2989,10 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Provides basic utilities for the filesystem", + "description": "Symfony Filesystem Component", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/filesystem/tree/v4.4.27" + "source": "https://github.com/symfony/filesystem/tree/v3.4.47" }, "funding": [ { @@ -3020,25 +3008,24 @@ "type": "tidelift" } ], - "time": "2021-07-21T12:19:41+00:00" + "time": "2020-10-24T10:57:07+00:00" }, { "name": "symfony/finder", - "version": "v4.4.30", + "version": "v3.4.47", "source": { "type": "git", "url": "https://github.com/symfony/finder.git", - "reference": "70362f1e112280d75b30087c7598b837c1b468b6" + "reference": "b6b6ad3db3edb1b4b1c1896b1975fb684994de6e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/finder/zipball/70362f1e112280d75b30087c7598b837c1b468b6", - "reference": "70362f1e112280d75b30087c7598b837c1b468b6", + "url": "https://api.github.com/repos/symfony/finder/zipball/b6b6ad3db3edb1b4b1c1896b1975fb684994de6e", + "reference": "b6b6ad3db3edb1b4b1c1896b1975fb684994de6e", "shasum": "" }, "require": { - "php": ">=7.1.3", - "symfony/polyfill-php80": "^1.16" + "php": "^5.5.9|>=7.0.8" }, "type": "library", "autoload": { @@ -3063,10 +3050,10 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Finds files and directories via an intuitive fluent interface", + "description": "Symfony Finder Component", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/finder/tree/v4.4.30" + "source": "https://github.com/symfony/finder/tree/v3.4.47" }, "funding": [ { @@ -3082,25 +3069,24 @@ "type": "tidelift" } ], - "time": "2021-08-04T20:31:23+00:00" + "time": "2020-11-16T17:02:08+00:00" }, { "name": "symfony/options-resolver", - "version": "v4.4.30", + "version": "v3.4.47", "source": { "type": "git", "url": "https://github.com/symfony/options-resolver.git", - "reference": "fa0b12a3a47ed25749d47d6b4f61412fd5ca1554" + "reference": "c7efc97a47b2ebaabc19d5b6c6b50f5c37c92744" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/options-resolver/zipball/fa0b12a3a47ed25749d47d6b4f61412fd5ca1554", - "reference": "fa0b12a3a47ed25749d47d6b4f61412fd5ca1554", + "url": "https://api.github.com/repos/symfony/options-resolver/zipball/c7efc97a47b2ebaabc19d5b6c6b50f5c37c92744", + "reference": "c7efc97a47b2ebaabc19d5b6c6b50f5c37c92744", "shasum": "" }, "require": { - "php": ">=7.1.3", - "symfony/polyfill-php80": "^1.16" + "php": "^5.5.9|>=7.0.8" }, "type": "library", "autoload": { @@ -3125,7 +3111,7 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Provides an improved replacement for the array_replace PHP function", + "description": "Symfony OptionsResolver Component", "homepage": "https://symfony.com", "keywords": [ "config", @@ -3133,7 +3119,7 @@ "options" ], "support": { - "source": "https://github.com/symfony/options-resolver/tree/v4.4.30" + "source": "https://github.com/symfony/options-resolver/tree/v3.4.47" }, "funding": [ { @@ -3149,33 +3135,33 @@ "type": "tidelift" } ], - "time": "2021-08-04T20:31:23+00:00" + "time": "2020-10-24T10:57:07+00:00" }, { "name": "symfony/polyfill-ctype", - "version": "v1.23.0", + "version": "v1.29.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-ctype.git", - "reference": "46cd95797e9df938fdd2b03693b5fca5e64b01ce" + "reference": "ef4d7e442ca910c4764bce785146269b30cb5fc4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/46cd95797e9df938fdd2b03693b5fca5e64b01ce", - "reference": "46cd95797e9df938fdd2b03693b5fca5e64b01ce", + "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/ef4d7e442ca910c4764bce785146269b30cb5fc4", + "reference": "ef4d7e442ca910c4764bce785146269b30cb5fc4", "shasum": "" }, "require": { "php": ">=7.1" }, + "provide": { + "ext-ctype": "*" + }, "suggest": { "ext-ctype": "For best performance" }, "type": "library", "extra": { - "branch-alias": { - "dev-main": "1.23-dev" - }, "thanks": { "name": "symfony/polyfill", "url": "https://github.com/symfony/polyfill" @@ -3212,7 +3198,7 @@ "portable" ], "support": { - "source": "https://github.com/symfony/polyfill-ctype/tree/v1.23.0" + "source": "https://github.com/symfony/polyfill-ctype/tree/v1.29.0" }, "funding": [ { @@ -3228,33 +3214,33 @@ "type": "tidelift" } ], - "time": "2021-02-19T12:13:01+00:00" + "time": "2024-01-29T20:11:03+00:00" }, { "name": "symfony/polyfill-mbstring", - "version": "v1.23.1", + "version": "v1.29.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-mbstring.git", - "reference": "9174a3d80210dca8daa7f31fec659150bbeabfc6" + "reference": "9773676c8a1bb1f8d4340a62efe641cf76eda7ec" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9174a3d80210dca8daa7f31fec659150bbeabfc6", - "reference": "9174a3d80210dca8daa7f31fec659150bbeabfc6", + "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9773676c8a1bb1f8d4340a62efe641cf76eda7ec", + "reference": "9773676c8a1bb1f8d4340a62efe641cf76eda7ec", "shasum": "" }, "require": { "php": ">=7.1" }, + "provide": { + "ext-mbstring": "*" + }, "suggest": { "ext-mbstring": "For best performance" }, "type": "library", "extra": { - "branch-alias": { - "dev-main": "1.23-dev" - }, "thanks": { "name": "symfony/polyfill", "url": "https://github.com/symfony/polyfill" @@ -3292,7 +3278,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.23.1" + "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.29.0" }, "funding": [ { @@ -3308,7 +3294,7 @@ "type": "tidelift" } ], - "time": "2021-05-27T12:26:48+00:00" + "time": "2024-01-29T20:11:03+00:00" }, { "name": "symfony/polyfill-php70", @@ -3380,16 +3366,16 @@ }, { "name": "symfony/polyfill-php72", - "version": "v1.23.0", + "version": "v1.29.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php72.git", - "reference": "9a142215a36a3888e30d0a9eeea9766764e96976" + "reference": "861391a8da9a04cbad2d232ddd9e4893220d6e25" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/9a142215a36a3888e30d0a9eeea9766764e96976", - "reference": "9a142215a36a3888e30d0a9eeea9766764e96976", + "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/861391a8da9a04cbad2d232ddd9e4893220d6e25", + "reference": "861391a8da9a04cbad2d232ddd9e4893220d6e25", "shasum": "" }, "require": { @@ -3397,9 +3383,6 @@ }, "type": "library", "extra": { - "branch-alias": { - "dev-main": "1.23-dev" - }, "thanks": { "name": "symfony/polyfill", "url": "https://github.com/symfony/polyfill" @@ -3436,7 +3419,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-php72/tree/v1.23.0" + "source": "https://github.com/symfony/polyfill-php72/tree/v1.29.0" }, "funding": [ { @@ -3452,187 +3435,24 @@ "type": "tidelift" } ], - "time": "2021-05-27T09:17:38+00:00" - }, - { - "name": "symfony/polyfill-php73", - "version": "v1.23.0", - "source": { - "type": "git", - "url": "https://github.com/symfony/polyfill-php73.git", - "reference": "fba8933c384d6476ab14fb7b8526e5287ca7e010" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/fba8933c384d6476ab14fb7b8526e5287ca7e010", - "reference": "fba8933c384d6476ab14fb7b8526e5287ca7e010", - "shasum": "" - }, - "require": { - "php": ">=7.1" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-main": "1.23-dev" - }, - "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.23.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": "2021-02-19T12:13:01+00:00" - }, - { - "name": "symfony/polyfill-php80", - "version": "v1.23.1", - "source": { - "type": "git", - "url": "https://github.com/symfony/polyfill-php80.git", - "reference": "1100343ed1a92e3a38f9ae122fc0eb21602547be" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/1100343ed1a92e3a38f9ae122fc0eb21602547be", - "reference": "1100343ed1a92e3a38f9ae122fc0eb21602547be", - "shasum": "" - }, - "require": { - "php": ">=7.1" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-main": "1.23-dev" - }, - "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.23.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": "2021-07-28T13:41:28+00:00" + "time": "2024-01-29T20:11:03+00:00" }, { "name": "symfony/process", - "version": "v4.4.30", + "version": "v3.4.47", "source": { "type": "git", "url": "https://github.com/symfony/process.git", - "reference": "13d3161ef63a8ec21eeccaaf9a4d7f784a87a97d" + "reference": "b8648cf1d5af12a44a51d07ef9bf980921f15fca" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/process/zipball/13d3161ef63a8ec21eeccaaf9a4d7f784a87a97d", - "reference": "13d3161ef63a8ec21eeccaaf9a4d7f784a87a97d", + "url": "https://api.github.com/repos/symfony/process/zipball/b8648cf1d5af12a44a51d07ef9bf980921f15fca", + "reference": "b8648cf1d5af12a44a51d07ef9bf980921f15fca", "shasum": "" }, "require": { - "php": ">=7.1.3", - "symfony/polyfill-php80": "^1.16" + "php": "^5.5.9|>=7.0.8" }, "type": "library", "autoload": { @@ -3657,10 +3477,10 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Executes commands in sub-processes", + "description": "Symfony Process Component", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/process/tree/v4.4.30" + "source": "https://github.com/symfony/process/tree/v3.4.47" }, "funding": [ { @@ -3676,104 +3496,24 @@ "type": "tidelift" } ], - "time": "2021-08-04T20:31:23+00:00" - }, - { - "name": "symfony/service-contracts", - "version": "v1.1.9", - "source": { - "type": "git", - "url": "https://github.com/symfony/service-contracts.git", - "reference": "b776d18b303a39f56c63747bcb977ad4b27aca26" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/service-contracts/zipball/b776d18b303a39f56c63747bcb977ad4b27aca26", - "reference": "b776d18b303a39f56c63747bcb977ad4b27aca26", - "shasum": "" - }, - "require": { - "php": ">=7.1.3", - "psr/container": "^1.0" - }, - "suggest": { - "symfony/service-implementation": "" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.1-dev" - }, - "thanks": { - "name": "symfony/contracts", - "url": "https://github.com/symfony/contracts" - } - }, - "autoload": { - "psr-4": { - "Symfony\\Contracts\\Service\\": "" - } - }, - "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/v1.1.9" - }, - "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": "2020-07-06T13:19:58+00:00" + "time": "2020-10-24T10:57:07+00:00" }, { "name": "symfony/stopwatch", - "version": "v4.4.27", + "version": "v3.4.47", "source": { "type": "git", "url": "https://github.com/symfony/stopwatch.git", - "reference": "c85d997af06a58ba83e2d2538e335b894c24523d" + "reference": "298b81faad4ce60e94466226b2abbb8c9bca7462" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/stopwatch/zipball/c85d997af06a58ba83e2d2538e335b894c24523d", - "reference": "c85d997af06a58ba83e2d2538e335b894c24523d", + "url": "https://api.github.com/repos/symfony/stopwatch/zipball/298b81faad4ce60e94466226b2abbb8c9bca7462", + "reference": "298b81faad4ce60e94466226b2abbb8c9bca7462", "shasum": "" }, "require": { - "php": ">=7.1.3", - "symfony/service-contracts": "^1.0|^2" + "php": "^5.5.9|>=7.0.8" }, "type": "library", "autoload": { @@ -3798,10 +3538,10 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Provides a way to profile code", + "description": "Symfony Stopwatch Component", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/stopwatch/tree/v4.4.27" + "source": "https://github.com/symfony/stopwatch/tree/v3.4.47" }, "funding": [ { @@ -3817,7 +3557,7 @@ "type": "tidelift" } ], - "time": "2021-07-10T08:41:57+00:00" + "time": "2020-10-24T10:57:07+00:00" }, { "name": "theseer/tokenizer", @@ -3926,5 +3666,8 @@ "php": "^7.1 || ^8.0" }, "platform-dev": [], - "plugin-api-version": "2.3.0" + "platform-overrides": { + "php": "7.1" + }, + "plugin-api-version": "2.6.0" } From 11cad89493c7d5318eb72ed6fe46fef380a11ac4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Fri, 23 Feb 2024 19:29:11 +0100 Subject: [PATCH 54/64] Fix: Order --- .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 a9499659..88763f15 100644 --- a/.github/workflows/integrate.yaml +++ b/.github/workflows/integrate.yaml @@ -196,7 +196,7 @@ jobs: run: "composer config platform.php --ansi --unset" - name: "Require phpunit/phpunit:^${{ matrix.phpunit-version }}" - run: "composer require --ansi --dev phpunit/phpunit:^${{ matrix.phpunit-version }} --update-with-dependencies" + run: "composer require phpunit/phpunit:^${{ matrix.phpunit-version }} --ansi --dev --update-with-dependencies" - name: "Install ${{ matrix.dependencies }} dependencies with composer" uses: "./.github/actions/composer/composer/install" From 58f362d66f147b3d51c0a33172dd0d0808a35470 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Sat, 24 Feb 2024 18:01:25 +0100 Subject: [PATCH 55/64] Fix: Revert --- .github/workflows/integrate.yaml | 91 +--- composer.json | 3 - composer.lock | 851 ++++++++++++++++++++----------- 3 files changed, 561 insertions(+), 384 deletions(-) diff --git a/.github/workflows/integrate.yaml b/.github/workflows/integrate.yaml index 88763f15..c25af09a 100644 --- a/.github/workflows/integrate.yaml +++ b/.github/workflows/integrate.yaml @@ -83,93 +83,20 @@ jobs: fail-fast: false matrix: - phpunit-version: - - "6.0.0" - php-version: - - "7.1" - - "7.2" - - "7.3" - "7.4" + phpunit-version: + - "6.0.0" + - "7.0.0" + - "8.0.0" + - "9.0.0" + dependencies: - "lowest" - "locked" - "highest" - include: - - phpunit-version: "7.0.0" - php-version: "7.1" - dependencies: "lowest" - - - phpunit-version: "7.0.0" - php-version: "7.1" - dependencies: "highest" - - - phpunit-version: "7.0.0" - php-version: "7.2" - dependencies: "lowest" - - - phpunit-version: "7.0.0" - php-version: "7.2" - dependencies: "highest" - - - phpunit-version: "7.0.0" - php-version: "7.3" - dependencies: "lowest" - - - phpunit-version: "7.0.0" - php-version: "7.3" - dependencies: "highest" - - - phpunit-version: "7.0.0" - php-version: "7.4" - dependencies: "lowest" - - - phpunit-version: "7.0.0" - php-version: "7.4" - dependencies: "highest" - - - phpunit-version: "8.0.0" - php-version: "7.2" - dependencies: "lowest" - - - phpunit-version: "8.0.0" - php-version: "7.2" - dependencies: "highest" - - - phpunit-version: "8.0.0" - php-version: "7.3" - dependencies: "lowest" - - - phpunit-version: "8.0.0" - php-version: "7.3" - dependencies: "highest" - - - phpunit-version: "8.0.0" - php-version: "7.4" - dependencies: "lowest" - - - phpunit-version: "8.0.0" - php-version: "7.4" - dependencies: "highest" - - - phpunit-version: "9.0.0" - php-version: "7.3" - dependencies: "lowest" - - - phpunit-version: "9.0.0" - php-version: "7.3" - dependencies: "highest" - - - phpunit-version: "9.0.0" - php-version: "7.4" - dependencies: "lowest" - - - phpunit-version: "9.0.0" - php-version: "7.4" - dependencies: "highest" - steps: - name: "Checkout" uses: "actions/checkout@v4" @@ -191,10 +118,6 @@ jobs: key: "php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-${{ hashFiles('composer.lock') }}" restore-keys: "php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-" - - name: "Remove platform configuration with composer" - if: "matrix.dependencies != 'locked'" - run: "composer config platform.php --ansi --unset" - - name: "Require phpunit/phpunit:^${{ matrix.phpunit-version }}" run: "composer require phpunit/phpunit:^${{ matrix.phpunit-version }} --ansi --dev --update-with-dependencies" @@ -230,7 +153,7 @@ jobs: strategy: matrix: php-version: - - "7.1" + - "7.4" dependencies: - "locked" diff --git a/composer.json b/composer.json index 885e5ad4..5e6c66b5 100644 --- a/composer.json +++ b/composer.json @@ -28,9 +28,6 @@ "allow-plugins": { "ergebnis/composer-normalize": true }, - "platform": { - "php": "7.1" - }, "sort-packages": true }, "extra": { diff --git a/composer.lock b/composer.lock index dee4de26..437be973 100644 --- a/composer.lock +++ b/composer.lock @@ -4,20 +4,20 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "d23c9cb6ba98b294de6712481f0272cc", + "content-hash": "9acf80128cdf0db1b699ab00cb87b800", "packages": [ { "name": "phpstan/phpstan", - "version": "1.4.10", + "version": "1.1.1", "source": { "type": "git", "url": "https://github.com/phpstan/phpstan.git", - "reference": "898c479c39caa727bedf4311dd294a8f4e250e72" + "reference": "cb317029197236c571c1b9305b8dd12850d8d85c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpstan/phpstan/zipball/898c479c39caa727bedf4311dd294a8f4e250e72", - "reference": "898c479c39caa727bedf4311dd294a8f4e250e72", + "url": "https://api.github.com/repos/phpstan/phpstan/zipball/cb317029197236c571c1b9305b8dd12850d8d85c", + "reference": "cb317029197236c571c1b9305b8dd12850d8d85c", "shasum": "" }, "require": { @@ -31,6 +31,11 @@ "phpstan.phar" ], "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0-dev" + } + }, "autoload": { "files": [ "bootstrap.php" @@ -43,7 +48,7 @@ "description": "PHPStan - PHP Static Analysis Tool", "support": { "issues": "https://github.com/phpstan/phpstan/issues", - "source": "https://github.com/phpstan/phpstan/tree/1.4.10" + "source": "https://github.com/phpstan/phpstan/tree/1.1.1" }, "funding": [ { @@ -63,29 +68,29 @@ "type": "tidelift" } ], - "time": "2022-03-14T10:25:45+00:00" + "time": "2021-11-06T22:46:47+00:00" } ], "packages-dev": [ { "name": "composer/semver", - "version": "3.4.0", + "version": "3.2.6", "source": { "type": "git", "url": "https://github.com/composer/semver.git", - "reference": "35e8d0af4486141bc745f23a29cc2091eb624a32" + "reference": "83e511e247de329283478496f7a1e114c9517506" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/semver/zipball/35e8d0af4486141bc745f23a29cc2091eb624a32", - "reference": "35e8d0af4486141bc745f23a29cc2091eb624a32", + "url": "https://api.github.com/repos/composer/semver/zipball/83e511e247de329283478496f7a1e114c9517506", + "reference": "83e511e247de329283478496f7a1e114c9517506", "shasum": "" }, "require": { "php": "^5.3.2 || ^7.0 || ^8.0" }, "require-dev": { - "phpstan/phpstan": "^1.4", + "phpstan/phpstan": "^0.12.54", "symfony/phpunit-bridge": "^4.2 || ^5" }, "type": "library", @@ -128,9 +133,9 @@ "versioning" ], "support": { - "irc": "ircs://irc.libera.chat:6697/composer", + "irc": "irc://irc.freenode.org/composer", "issues": "https://github.com/composer/semver/issues", - "source": "https://github.com/composer/semver/tree/3.4.0" + "source": "https://github.com/composer/semver/tree/3.2.6" }, "funding": [ { @@ -146,7 +151,7 @@ "type": "tidelift" } ], - "time": "2023-08-31T09:50:34+00:00" + "time": "2021-10-25T11:34:17+00:00" }, { "name": "composer/xdebug-handler", @@ -214,34 +219,30 @@ }, { "name": "doctrine/annotations", - "version": "1.14.3", + "version": "1.13.2", "source": { "type": "git", "url": "https://github.com/doctrine/annotations.git", - "reference": "fb0d71a7393298a7b232cbf4c8b1f73f3ec3d5af" + "reference": "5b668aef16090008790395c02c893b1ba13f7e08" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/annotations/zipball/fb0d71a7393298a7b232cbf4c8b1f73f3ec3d5af", - "reference": "fb0d71a7393298a7b232cbf4c8b1f73f3ec3d5af", + "url": "https://api.github.com/repos/doctrine/annotations/zipball/5b668aef16090008790395c02c893b1ba13f7e08", + "reference": "5b668aef16090008790395c02c893b1ba13f7e08", "shasum": "" }, "require": { - "doctrine/lexer": "^1 || ^2", + "doctrine/lexer": "1.*", "ext-tokenizer": "*", "php": "^7.1 || ^8.0", "psr/cache": "^1 || ^2 || ^3" }, "require-dev": { "doctrine/cache": "^1.11 || ^2.0", - "doctrine/coding-standard": "^9 || ^10", - "phpstan/phpstan": "~1.4.10 || ^1.8.0", - "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5", - "symfony/cache": "^4.4 || ^5.4 || ^6", - "vimeo/psalm": "^4.10" - }, - "suggest": { - "php": "PHP 8.0 or higher comes with attributes, a native replacement for annotations" + "doctrine/coding-standard": "^6.0 || ^8.1", + "phpstan/phpstan": "^0.12.20", + "phpunit/phpunit": "^7.5 || ^8.0 || ^9.1.5", + "symfony/cache": "^4.4 || ^5.2" }, "type": "library", "autoload": { @@ -284,83 +285,35 @@ ], "support": { "issues": "https://github.com/doctrine/annotations/issues", - "source": "https://github.com/doctrine/annotations/tree/1.14.3" - }, - "time": "2023-02-01T09:20:38+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" + "source": "https://github.com/doctrine/annotations/tree/1.13.2" }, - "time": "2024-01-30T19:34:25+00:00" + "time": "2021-08-05T19:00:23+00:00" }, { "name": "doctrine/instantiator", - "version": "1.5.0", + "version": "1.4.0", "source": { "type": "git", "url": "https://github.com/doctrine/instantiator.git", - "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b" + "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/instantiator/zipball/0a0fa9780f5d4e507415a065172d26a98d02047b", - "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b", + "url": "https://api.github.com/repos/doctrine/instantiator/zipball/d56bf6102915de5702778fe20f2de3b2fe570b5b", + "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b", "shasum": "" }, "require": { "php": "^7.1 || ^8.0" }, "require-dev": { - "doctrine/coding-standard": "^9 || ^11", + "doctrine/coding-standard": "^8.0", "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" + "phpbench/phpbench": "^0.13 || 1.0.0-alpha2", + "phpstan/phpstan": "^0.12", + "phpstan/phpstan-phpunit": "^0.12", + "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0" }, "type": "library", "autoload": { @@ -387,7 +340,7 @@ ], "support": { "issues": "https://github.com/doctrine/instantiator/issues", - "source": "https://github.com/doctrine/instantiator/tree/1.5.0" + "source": "https://github.com/doctrine/instantiator/tree/1.4.0" }, "funding": [ { @@ -403,37 +356,37 @@ "type": "tidelift" } ], - "time": "2022-12-30T00:15:36+00:00" + "time": "2020-11-10T18:47:58+00:00" }, { "name": "doctrine/lexer", - "version": "2.1.1", + "version": "1.0.2", "source": { "type": "git", "url": "https://github.com/doctrine/lexer.git", - "reference": "861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6" + "reference": "1febd6c3ef84253d7c815bed85fc622ad207a9f8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/lexer/zipball/861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6", - "reference": "861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6", + "url": "https://api.github.com/repos/doctrine/lexer/zipball/1febd6c3ef84253d7c815bed85fc622ad207a9f8", + "reference": "1febd6c3ef84253d7c815bed85fc622ad207a9f8", "shasum": "" }, "require": { - "doctrine/deprecations": "^1.0", - "php": "^7.1 || ^8.0" + "php": ">=5.3.2" }, "require-dev": { - "doctrine/coding-standard": "^9 || ^12", - "phpstan/phpstan": "^1.3", - "phpunit/phpunit": "^7.5 || ^8.5 || ^9.6", - "psalm/plugin-phpunit": "^0.18.3", - "vimeo/psalm": "^4.11 || ^5.21" + "phpunit/phpunit": "^4.5" }, "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, "autoload": { "psr-4": { - "Doctrine\\Common\\Lexer\\": "src" + "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer" } }, "notification-url": "https://packagist.org/downloads/", @@ -441,14 +394,14 @@ "MIT" ], "authors": [ - { - "name": "Guilherme Blanco", - "email": "guilhermeblanco@gmail.com" - }, { "name": "Roman Borschel", "email": "roman@code-factory.org" }, + { + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, { "name": "Johannes Schmitt", "email": "schmittjoh@gmail.com" @@ -465,23 +418,9 @@ ], "support": { "issues": "https://github.com/doctrine/lexer/issues", - "source": "https://github.com/doctrine/lexer/tree/2.1.1" + "source": "https://github.com/doctrine/lexer/tree/1.0.2" }, - "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%2Flexer", - "type": "tidelift" - } - ], - "time": "2024-02-05T11:35:39+00:00" + "time": "2019-06-08T11:03:04+00:00" }, { "name": "ergebnis/composer-normalize", @@ -997,16 +936,16 @@ }, { "name": "justinrainbow/json-schema", - "version": "v5.2.13", + "version": "5.2.11", "source": { "type": "git", "url": "https://github.com/justinrainbow/json-schema.git", - "reference": "fbbe7e5d79f618997bc3332a6f49246036c45793" + "reference": "2ab6744b7296ded80f8cc4f9509abbff393399aa" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/justinrainbow/json-schema/zipball/fbbe7e5d79f618997bc3332a6f49246036c45793", - "reference": "fbbe7e5d79f618997bc3332a6f49246036c45793", + "url": "https://api.github.com/repos/justinrainbow/json-schema/zipball/2ab6744b7296ded80f8cc4f9509abbff393399aa", + "reference": "2ab6744b7296ded80f8cc4f9509abbff393399aa", "shasum": "" }, "require": { @@ -1061,9 +1000,9 @@ ], "support": { "issues": "https://github.com/justinrainbow/json-schema/issues", - "source": "https://github.com/justinrainbow/json-schema/tree/v5.2.13" + "source": "https://github.com/justinrainbow/json-schema/tree/5.2.11" }, - "time": "2023-09-26T02:20:38+00:00" + "time": "2021-07-22T09:24:00+00:00" }, { "name": "localheinz/diff", @@ -1127,29 +1066,25 @@ }, { "name": "myclabs/deep-copy", - "version": "1.11.1", + "version": "1.10.2", "source": { "type": "git", "url": "https://github.com/myclabs/DeepCopy.git", - "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c" + "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/7284c22080590fb39f2ffa3e9057f10a4ddd0e0c", - "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c", + "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/776f831124e9c62e1a2c601ecc52e776d8bb7220", + "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220", "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", - "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13" + "doctrine/collections": "^1.0", + "doctrine/common": "^2.6", + "phpunit/phpunit": "^7.1" }, "type": "library", "autoload": { @@ -1174,7 +1109,7 @@ ], "support": { "issues": "https://github.com/myclabs/DeepCopy/issues", - "source": "https://github.com/myclabs/DeepCopy/tree/1.11.1" + "source": "https://github.com/myclabs/DeepCopy/tree/1.10.2" }, "funding": [ { @@ -1182,7 +1117,7 @@ "type": "tidelift" } ], - "time": "2023-03-08T13:26:56+00:00" + "time": "2020-11-13T09:40:50+00:00" }, { "name": "phar-io/manifest", @@ -1347,7 +1282,6 @@ "issues": "https://github.com/PHP-CS-Fixer/diff/issues", "source": "https://github.com/PHP-CS-Fixer/diff/tree/v1.3.1" }, - "abandoned": true, "time": "2020-10-14T08:39:05+00:00" }, { @@ -1646,16 +1580,16 @@ }, { "name": "phpunit/php-file-iterator", - "version": "2.0.5", + "version": "2.0.4", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/php-file-iterator.git", - "reference": "42c5ba5220e6904cbfe8b1a1bda7c0cfdc8c12f5" + "reference": "28af674ff175d0768a5a978e6de83f697d4a7f05" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/42c5ba5220e6904cbfe8b1a1bda7c0cfdc8c12f5", - "reference": "42c5ba5220e6904cbfe8b1a1bda7c0cfdc8c12f5", + "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/28af674ff175d0768a5a978e6de83f697d4a7f05", + "reference": "28af674ff175d0768a5a978e6de83f697d4a7f05", "shasum": "" }, "require": { @@ -1694,7 +1628,7 @@ ], "support": { "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues", - "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/2.0.5" + "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/2.0.4" }, "funding": [ { @@ -1702,7 +1636,7 @@ "type": "github" } ], - "time": "2021-12-02T12:42:26+00:00" + "time": "2021-07-19T06:46:01+00:00" }, { "name": "phpunit/php-text-template", @@ -2005,6 +1939,59 @@ }, "time": "2016-08-06T20:24:11+00:00" }, + { + "name": "psr/container", + "version": "1.0.0", + "source": { + "type": "git", + "url": "https://github.com/php-fig/container.git", + "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f", + "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f", + "shasum": "" + }, + "require": { + "php": ">=5.3.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\Container\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "http://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/master" + }, + "time": "2017-02-14T16:28:37+00:00" + }, { "name": "psr/log", "version": "1.1.4", @@ -2112,16 +2099,16 @@ }, { "name": "sebastian/comparator", - "version": "3.0.5", + "version": "3.0.3", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/comparator.git", - "reference": "1dc7ceb4a24aede938c7af2a9ed1de09609ca770" + "reference": "1071dfcef776a57013124ff35e1fc41ccd294758" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/1dc7ceb4a24aede938c7af2a9ed1de09609ca770", - "reference": "1dc7ceb4a24aede938c7af2a9ed1de09609ca770", + "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/1071dfcef776a57013124ff35e1fc41ccd294758", + "reference": "1071dfcef776a57013124ff35e1fc41ccd294758", "shasum": "" }, "require": { @@ -2174,7 +2161,7 @@ ], "support": { "issues": "https://github.com/sebastianbergmann/comparator/issues", - "source": "https://github.com/sebastianbergmann/comparator/tree/3.0.5" + "source": "https://github.com/sebastianbergmann/comparator/tree/3.0.3" }, "funding": [ { @@ -2182,20 +2169,20 @@ "type": "github" } ], - "time": "2022-09-14T12:31:48+00:00" + "time": "2020-11-30T08:04:30+00:00" }, { "name": "sebastian/diff", - "version": "3.0.4", + "version": "3.0.3", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/diff.git", - "reference": "6296a0c086dd0117c1b78b059374d7fcbe7545ae" + "reference": "14f72dd46eaf2f2293cbe79c93cc0bc43161a211" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/6296a0c086dd0117c1b78b059374d7fcbe7545ae", - "reference": "6296a0c086dd0117c1b78b059374d7fcbe7545ae", + "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/14f72dd46eaf2f2293cbe79c93cc0bc43161a211", + "reference": "14f72dd46eaf2f2293cbe79c93cc0bc43161a211", "shasum": "" }, "require": { @@ -2240,7 +2227,7 @@ ], "support": { "issues": "https://github.com/sebastianbergmann/diff/issues", - "source": "https://github.com/sebastianbergmann/diff/tree/3.0.4" + "source": "https://github.com/sebastianbergmann/diff/tree/3.0.3" }, "funding": [ { @@ -2248,7 +2235,7 @@ "type": "github" } ], - "time": "2023-05-07T05:30:20+00:00" + "time": "2020-11-30T07:59:04+00:00" }, { "name": "sebastian/environment", @@ -2315,16 +2302,16 @@ }, { "name": "sebastian/exporter", - "version": "3.1.5", + "version": "3.1.3", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/exporter.git", - "reference": "73a9676f2833b9a7c36968f9d882589cd75511e6" + "reference": "6b853149eab67d4da22291d36f5b0631c0fd856e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/73a9676f2833b9a7c36968f9d882589cd75511e6", - "reference": "73a9676f2833b9a7c36968f9d882589cd75511e6", + "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/6b853149eab67d4da22291d36f5b0631c0fd856e", + "reference": "6b853149eab67d4da22291d36f5b0631c0fd856e", "shasum": "" }, "require": { @@ -2333,7 +2320,7 @@ }, "require-dev": { "ext-mbstring": "*", - "phpunit/phpunit": "^8.5" + "phpunit/phpunit": "^6.0" }, "type": "library", "extra": { @@ -2380,7 +2367,7 @@ ], "support": { "issues": "https://github.com/sebastianbergmann/exporter/issues", - "source": "https://github.com/sebastianbergmann/exporter/tree/3.1.5" + "source": "https://github.com/sebastianbergmann/exporter/tree/3.1.3" }, "funding": [ { @@ -2388,7 +2375,7 @@ "type": "github" } ], - "time": "2022-09-14T06:00:17+00:00" + "time": "2020-11-30T07:47:53+00:00" }, { "name": "sebastian/global-state", @@ -2721,37 +2708,43 @@ }, { "name": "symfony/console", - "version": "v3.4.47", + "version": "v4.4.33", "source": { "type": "git", "url": "https://github.com/symfony/console.git", - "reference": "a10b1da6fc93080c180bba7219b5ff5b7518fe81" + "reference": "8dbd23ef7a8884051482183ddee8d9061b5feed0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/console/zipball/a10b1da6fc93080c180bba7219b5ff5b7518fe81", - "reference": "a10b1da6fc93080c180bba7219b5ff5b7518fe81", + "url": "https://api.github.com/repos/symfony/console/zipball/8dbd23ef7a8884051482183ddee8d9061b5feed0", + "reference": "8dbd23ef7a8884051482183ddee8d9061b5feed0", "shasum": "" }, "require": { - "php": "^5.5.9|>=7.0.8", - "symfony/debug": "~2.8|~3.0|~4.0", - "symfony/polyfill-mbstring": "~1.0" + "php": ">=7.1.3", + "symfony/polyfill-mbstring": "~1.0", + "symfony/polyfill-php73": "^1.8", + "symfony/polyfill-php80": "^1.16", + "symfony/service-contracts": "^1.1|^2" }, "conflict": { + "psr/log": ">=3", "symfony/dependency-injection": "<3.4", + "symfony/event-dispatcher": "<4.3|>=5", + "symfony/lock": "<4.4", "symfony/process": "<3.3" }, "provide": { - "psr/log-implementation": "1.0" + "psr/log-implementation": "1.0|2.0" }, "require-dev": { - "psr/log": "~1.0", - "symfony/config": "~3.3|~4.0", - "symfony/dependency-injection": "~3.4|~4.0", - "symfony/event-dispatcher": "~2.8|~3.0|~4.0", - "symfony/lock": "~3.4|~4.0", - "symfony/process": "~3.3|~4.0" + "psr/log": "^1|^2", + "symfony/config": "^3.4|^4.0|^5.0", + "symfony/dependency-injection": "^3.4|^4.0|^5.0", + "symfony/event-dispatcher": "^4.3", + "symfony/lock": "^4.4|^5.0", + "symfony/process": "^3.4|^4.0|^5.0", + "symfony/var-dumper": "^4.3|^5.0" }, "suggest": { "psr/log": "For using the console logger", @@ -2782,10 +2775,10 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony Console Component", + "description": "Eases the creation of beautiful and testable command line interfaces", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/console/tree/v3.4.47" + "source": "https://github.com/symfony/console/tree/v4.4.33" }, "funding": [ { @@ -2801,36 +2794,52 @@ "type": "tidelift" } ], - "time": "2020-10-24T10:57:07+00:00" + "time": "2021-10-25T16:36:08+00:00" }, { - "name": "symfony/debug", - "version": "v3.4.47", + "name": "symfony/event-dispatcher", + "version": "v4.4.30", "source": { "type": "git", - "url": "https://github.com/symfony/debug.git", - "reference": "ab42889de57fdfcfcc0759ab102e2fd4ea72dcae" + "url": "https://github.com/symfony/event-dispatcher.git", + "reference": "2fe81680070043c4c80e7cedceb797e34f377bac" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/debug/zipball/ab42889de57fdfcfcc0759ab102e2fd4ea72dcae", - "reference": "ab42889de57fdfcfcc0759ab102e2fd4ea72dcae", + "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/2fe81680070043c4c80e7cedceb797e34f377bac", + "reference": "2fe81680070043c4c80e7cedceb797e34f377bac", "shasum": "" }, "require": { - "php": "^5.5.9|>=7.0.8", - "psr/log": "~1.0" + "php": ">=7.1.3", + "symfony/event-dispatcher-contracts": "^1.1", + "symfony/polyfill-php80": "^1.16" }, "conflict": { - "symfony/http-kernel": ">=2.3,<2.3.24|~2.4.0|>=2.5,<2.5.9|>=2.6,<2.6.2" + "symfony/dependency-injection": "<3.4" + }, + "provide": { + "psr/event-dispatcher-implementation": "1.0", + "symfony/event-dispatcher-implementation": "1.1" }, "require-dev": { - "symfony/http-kernel": "~2.8|~3.0|~4.0" + "psr/log": "^1|^2|^3", + "symfony/config": "^3.4|^4.0|^5.0", + "symfony/dependency-injection": "^3.4|^4.0|^5.0", + "symfony/error-handler": "~3.4|~4.4", + "symfony/expression-language": "^3.4|^4.0|^5.0", + "symfony/http-foundation": "^3.4|^4.0|^5.0", + "symfony/service-contracts": "^1.1|^2", + "symfony/stopwatch": "^3.4|^4.0|^5.0" + }, + "suggest": { + "symfony/dependency-injection": "", + "symfony/http-kernel": "" }, "type": "library", "autoload": { "psr-4": { - "Symfony\\Component\\Debug\\": "" + "Symfony\\Component\\EventDispatcher\\": "" }, "exclude-from-classmap": [ "/Tests/" @@ -2850,10 +2859,10 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony Debug Component", + "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/debug/tree/v3.4.47" + "source": "https://github.com/symfony/event-dispatcher/tree/v4.4.30" }, "funding": [ { @@ -2869,49 +2878,43 @@ "type": "tidelift" } ], - "abandoned": "symfony/error-handler", - "time": "2020-10-24T10:57:07+00:00" + "time": "2021-08-04T20:31:23+00:00" }, { - "name": "symfony/event-dispatcher", - "version": "v3.4.47", + "name": "symfony/event-dispatcher-contracts", + "version": "v1.1.9", "source": { "type": "git", - "url": "https://github.com/symfony/event-dispatcher.git", - "reference": "31fde73757b6bad247c54597beef974919ec6860" + "url": "https://github.com/symfony/event-dispatcher-contracts.git", + "reference": "84e23fdcd2517bf37aecbd16967e83f0caee25a7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/31fde73757b6bad247c54597beef974919ec6860", - "reference": "31fde73757b6bad247c54597beef974919ec6860", + "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/84e23fdcd2517bf37aecbd16967e83f0caee25a7", + "reference": "84e23fdcd2517bf37aecbd16967e83f0caee25a7", "shasum": "" }, "require": { - "php": "^5.5.9|>=7.0.8" - }, - "conflict": { - "symfony/dependency-injection": "<3.3" - }, - "require-dev": { - "psr/log": "~1.0", - "symfony/config": "~2.8|~3.0|~4.0", - "symfony/debug": "~3.4|~4.4", - "symfony/dependency-injection": "~3.3|~4.0", - "symfony/expression-language": "~2.8|~3.0|~4.0", - "symfony/stopwatch": "~2.8|~3.0|~4.0" + "php": ">=7.1.3" }, "suggest": { - "symfony/dependency-injection": "", - "symfony/http-kernel": "" + "psr/event-dispatcher": "", + "symfony/event-dispatcher-implementation": "" }, "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.1-dev" + }, + "thanks": { + "name": "symfony/contracts", + "url": "https://github.com/symfony/contracts" + } + }, "autoload": { "psr-4": { - "Symfony\\Component\\EventDispatcher\\": "" - }, - "exclude-from-classmap": [ - "/Tests/" - ] + "Symfony\\Contracts\\EventDispatcher\\": "" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -2919,18 +2922,26 @@ ], "authors": [ { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" + "name": "Nicolas Grekas", + "email": "p@tchwork.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony EventDispatcher Component", + "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/tree/v3.4.47" + "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v1.1.9" }, "funding": [ { @@ -2946,25 +2957,26 @@ "type": "tidelift" } ], - "time": "2020-10-24T10:57:07+00:00" + "time": "2020-07-06T13:19:58+00:00" }, { "name": "symfony/filesystem", - "version": "v3.4.47", + "version": "v4.4.27", "source": { "type": "git", "url": "https://github.com/symfony/filesystem.git", - "reference": "e58d7841cddfed6e846829040dca2cca0ebbbbb3" + "reference": "517fb795794faf29086a77d99eb8f35e457837a7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/filesystem/zipball/e58d7841cddfed6e846829040dca2cca0ebbbbb3", - "reference": "e58d7841cddfed6e846829040dca2cca0ebbbbb3", + "url": "https://api.github.com/repos/symfony/filesystem/zipball/517fb795794faf29086a77d99eb8f35e457837a7", + "reference": "517fb795794faf29086a77d99eb8f35e457837a7", "shasum": "" }, "require": { - "php": "^5.5.9|>=7.0.8", - "symfony/polyfill-ctype": "~1.8" + "php": ">=7.1.3", + "symfony/polyfill-ctype": "~1.8", + "symfony/polyfill-php80": "^1.16" }, "type": "library", "autoload": { @@ -2989,10 +3001,10 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony Filesystem Component", + "description": "Provides basic utilities for the filesystem", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/filesystem/tree/v3.4.47" + "source": "https://github.com/symfony/filesystem/tree/v4.4.27" }, "funding": [ { @@ -3008,24 +3020,25 @@ "type": "tidelift" } ], - "time": "2020-10-24T10:57:07+00:00" + "time": "2021-07-21T12:19:41+00:00" }, { "name": "symfony/finder", - "version": "v3.4.47", + "version": "v4.4.30", "source": { "type": "git", "url": "https://github.com/symfony/finder.git", - "reference": "b6b6ad3db3edb1b4b1c1896b1975fb684994de6e" + "reference": "70362f1e112280d75b30087c7598b837c1b468b6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/finder/zipball/b6b6ad3db3edb1b4b1c1896b1975fb684994de6e", - "reference": "b6b6ad3db3edb1b4b1c1896b1975fb684994de6e", + "url": "https://api.github.com/repos/symfony/finder/zipball/70362f1e112280d75b30087c7598b837c1b468b6", + "reference": "70362f1e112280d75b30087c7598b837c1b468b6", "shasum": "" }, "require": { - "php": "^5.5.9|>=7.0.8" + "php": ">=7.1.3", + "symfony/polyfill-php80": "^1.16" }, "type": "library", "autoload": { @@ -3050,10 +3063,10 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony Finder Component", + "description": "Finds files and directories via an intuitive fluent interface", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/finder/tree/v3.4.47" + "source": "https://github.com/symfony/finder/tree/v4.4.30" }, "funding": [ { @@ -3069,24 +3082,25 @@ "type": "tidelift" } ], - "time": "2020-11-16T17:02:08+00:00" + "time": "2021-08-04T20:31:23+00:00" }, { "name": "symfony/options-resolver", - "version": "v3.4.47", + "version": "v4.4.30", "source": { "type": "git", "url": "https://github.com/symfony/options-resolver.git", - "reference": "c7efc97a47b2ebaabc19d5b6c6b50f5c37c92744" + "reference": "fa0b12a3a47ed25749d47d6b4f61412fd5ca1554" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/options-resolver/zipball/c7efc97a47b2ebaabc19d5b6c6b50f5c37c92744", - "reference": "c7efc97a47b2ebaabc19d5b6c6b50f5c37c92744", + "url": "https://api.github.com/repos/symfony/options-resolver/zipball/fa0b12a3a47ed25749d47d6b4f61412fd5ca1554", + "reference": "fa0b12a3a47ed25749d47d6b4f61412fd5ca1554", "shasum": "" }, "require": { - "php": "^5.5.9|>=7.0.8" + "php": ">=7.1.3", + "symfony/polyfill-php80": "^1.16" }, "type": "library", "autoload": { @@ -3111,7 +3125,7 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony OptionsResolver Component", + "description": "Provides an improved replacement for the array_replace PHP function", "homepage": "https://symfony.com", "keywords": [ "config", @@ -3119,7 +3133,7 @@ "options" ], "support": { - "source": "https://github.com/symfony/options-resolver/tree/v3.4.47" + "source": "https://github.com/symfony/options-resolver/tree/v4.4.30" }, "funding": [ { @@ -3135,33 +3149,33 @@ "type": "tidelift" } ], - "time": "2020-10-24T10:57:07+00:00" + "time": "2021-08-04T20:31:23+00:00" }, { "name": "symfony/polyfill-ctype", - "version": "v1.29.0", + "version": "v1.23.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-ctype.git", - "reference": "ef4d7e442ca910c4764bce785146269b30cb5fc4" + "reference": "46cd95797e9df938fdd2b03693b5fca5e64b01ce" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/ef4d7e442ca910c4764bce785146269b30cb5fc4", - "reference": "ef4d7e442ca910c4764bce785146269b30cb5fc4", + "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/46cd95797e9df938fdd2b03693b5fca5e64b01ce", + "reference": "46cd95797e9df938fdd2b03693b5fca5e64b01ce", "shasum": "" }, "require": { "php": ">=7.1" }, - "provide": { - "ext-ctype": "*" - }, "suggest": { "ext-ctype": "For best performance" }, "type": "library", "extra": { + "branch-alias": { + "dev-main": "1.23-dev" + }, "thanks": { "name": "symfony/polyfill", "url": "https://github.com/symfony/polyfill" @@ -3198,7 +3212,7 @@ "portable" ], "support": { - "source": "https://github.com/symfony/polyfill-ctype/tree/v1.29.0" + "source": "https://github.com/symfony/polyfill-ctype/tree/v1.23.0" }, "funding": [ { @@ -3214,33 +3228,33 @@ "type": "tidelift" } ], - "time": "2024-01-29T20:11:03+00:00" + "time": "2021-02-19T12:13:01+00:00" }, { "name": "symfony/polyfill-mbstring", - "version": "v1.29.0", + "version": "v1.23.1", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-mbstring.git", - "reference": "9773676c8a1bb1f8d4340a62efe641cf76eda7ec" + "reference": "9174a3d80210dca8daa7f31fec659150bbeabfc6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9773676c8a1bb1f8d4340a62efe641cf76eda7ec", - "reference": "9773676c8a1bb1f8d4340a62efe641cf76eda7ec", + "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9174a3d80210dca8daa7f31fec659150bbeabfc6", + "reference": "9174a3d80210dca8daa7f31fec659150bbeabfc6", "shasum": "" }, "require": { "php": ">=7.1" }, - "provide": { - "ext-mbstring": "*" - }, "suggest": { "ext-mbstring": "For best performance" }, "type": "library", "extra": { + "branch-alias": { + "dev-main": "1.23-dev" + }, "thanks": { "name": "symfony/polyfill", "url": "https://github.com/symfony/polyfill" @@ -3278,7 +3292,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.29.0" + "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.23.1" }, "funding": [ { @@ -3294,7 +3308,7 @@ "type": "tidelift" } ], - "time": "2024-01-29T20:11:03+00:00" + "time": "2021-05-27T12:26:48+00:00" }, { "name": "symfony/polyfill-php70", @@ -3366,16 +3380,16 @@ }, { "name": "symfony/polyfill-php72", - "version": "v1.29.0", + "version": "v1.23.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php72.git", - "reference": "861391a8da9a04cbad2d232ddd9e4893220d6e25" + "reference": "9a142215a36a3888e30d0a9eeea9766764e96976" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/861391a8da9a04cbad2d232ddd9e4893220d6e25", - "reference": "861391a8da9a04cbad2d232ddd9e4893220d6e25", + "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/9a142215a36a3888e30d0a9eeea9766764e96976", + "reference": "9a142215a36a3888e30d0a9eeea9766764e96976", "shasum": "" }, "require": { @@ -3383,6 +3397,9 @@ }, "type": "library", "extra": { + "branch-alias": { + "dev-main": "1.23-dev" + }, "thanks": { "name": "symfony/polyfill", "url": "https://github.com/symfony/polyfill" @@ -3419,7 +3436,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-php72/tree/v1.29.0" + "source": "https://github.com/symfony/polyfill-php72/tree/v1.23.0" }, "funding": [ { @@ -3435,24 +3452,187 @@ "type": "tidelift" } ], - "time": "2024-01-29T20:11:03+00:00" + "time": "2021-05-27T09:17:38+00:00" + }, + { + "name": "symfony/polyfill-php73", + "version": "v1.23.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-php73.git", + "reference": "fba8933c384d6476ab14fb7b8526e5287ca7e010" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/fba8933c384d6476ab14fb7b8526e5287ca7e010", + "reference": "fba8933c384d6476ab14fb7b8526e5287ca7e010", + "shasum": "" + }, + "require": { + "php": ">=7.1" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.23-dev" + }, + "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.23.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": "2021-02-19T12:13:01+00:00" + }, + { + "name": "symfony/polyfill-php80", + "version": "v1.23.1", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-php80.git", + "reference": "1100343ed1a92e3a38f9ae122fc0eb21602547be" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/1100343ed1a92e3a38f9ae122fc0eb21602547be", + "reference": "1100343ed1a92e3a38f9ae122fc0eb21602547be", + "shasum": "" + }, + "require": { + "php": ">=7.1" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.23-dev" + }, + "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.23.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": "2021-07-28T13:41:28+00:00" }, { "name": "symfony/process", - "version": "v3.4.47", + "version": "v4.4.30", "source": { "type": "git", "url": "https://github.com/symfony/process.git", - "reference": "b8648cf1d5af12a44a51d07ef9bf980921f15fca" + "reference": "13d3161ef63a8ec21eeccaaf9a4d7f784a87a97d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/process/zipball/b8648cf1d5af12a44a51d07ef9bf980921f15fca", - "reference": "b8648cf1d5af12a44a51d07ef9bf980921f15fca", + "url": "https://api.github.com/repos/symfony/process/zipball/13d3161ef63a8ec21eeccaaf9a4d7f784a87a97d", + "reference": "13d3161ef63a8ec21eeccaaf9a4d7f784a87a97d", "shasum": "" }, "require": { - "php": "^5.5.9|>=7.0.8" + "php": ">=7.1.3", + "symfony/polyfill-php80": "^1.16" }, "type": "library", "autoload": { @@ -3477,10 +3657,10 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony Process Component", + "description": "Executes commands in sub-processes", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/process/tree/v3.4.47" + "source": "https://github.com/symfony/process/tree/v4.4.30" }, "funding": [ { @@ -3496,24 +3676,104 @@ "type": "tidelift" } ], - "time": "2020-10-24T10:57:07+00:00" + "time": "2021-08-04T20:31:23+00:00" + }, + { + "name": "symfony/service-contracts", + "version": "v1.1.9", + "source": { + "type": "git", + "url": "https://github.com/symfony/service-contracts.git", + "reference": "b776d18b303a39f56c63747bcb977ad4b27aca26" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/service-contracts/zipball/b776d18b303a39f56c63747bcb977ad4b27aca26", + "reference": "b776d18b303a39f56c63747bcb977ad4b27aca26", + "shasum": "" + }, + "require": { + "php": ">=7.1.3", + "psr/container": "^1.0" + }, + "suggest": { + "symfony/service-implementation": "" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.1-dev" + }, + "thanks": { + "name": "symfony/contracts", + "url": "https://github.com/symfony/contracts" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Contracts\\Service\\": "" + } + }, + "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/v1.1.9" + }, + "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": "2020-07-06T13:19:58+00:00" }, { "name": "symfony/stopwatch", - "version": "v3.4.47", + "version": "v4.4.27", "source": { "type": "git", "url": "https://github.com/symfony/stopwatch.git", - "reference": "298b81faad4ce60e94466226b2abbb8c9bca7462" + "reference": "c85d997af06a58ba83e2d2538e335b894c24523d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/stopwatch/zipball/298b81faad4ce60e94466226b2abbb8c9bca7462", - "reference": "298b81faad4ce60e94466226b2abbb8c9bca7462", + "url": "https://api.github.com/repos/symfony/stopwatch/zipball/c85d997af06a58ba83e2d2538e335b894c24523d", + "reference": "c85d997af06a58ba83e2d2538e335b894c24523d", "shasum": "" }, "require": { - "php": "^5.5.9|>=7.0.8" + "php": ">=7.1.3", + "symfony/service-contracts": "^1.0|^2" }, "type": "library", "autoload": { @@ -3538,10 +3798,10 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony Stopwatch Component", + "description": "Provides a way to profile code", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/stopwatch/tree/v3.4.47" + "source": "https://github.com/symfony/stopwatch/tree/v4.4.27" }, "funding": [ { @@ -3557,7 +3817,7 @@ "type": "tidelift" } ], - "time": "2020-10-24T10:57:07+00:00" + "time": "2021-07-10T08:41:57+00:00" }, { "name": "theseer/tokenizer", @@ -3666,8 +3926,5 @@ "php": "^7.1 || ^8.0" }, "platform-dev": [], - "platform-overrides": { - "php": "7.1" - }, - "plugin-api-version": "2.6.0" + "plugin-api-version": "2.3.0" } From 0e2394a081433ec6ecdbaff2caca428e1955255b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Mon, 4 Mar 2024 08:51:45 +0100 Subject: [PATCH 56/64] Fix: Create cache directory for friendsofphp/php-cs-fixer --- .github/workflows/integrate.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/integrate.yaml b/.github/workflows/integrate.yaml index c25af09a..7c4fa192 100644 --- a/.github/workflows/integrate.yaml +++ b/.github/workflows/integrate.yaml @@ -64,6 +64,9 @@ jobs: - name: "Run ergebnis/composer-normalize" run: "composer normalize --ansi --dry-run" + - name: "Create cache directory for friendsofphp/php-cs-fixer" + run: "mkdir -p .build/php-cs-fixer" + - name: "Cache cache directory for friendsofphp/php-cs-fixer" uses: "actions/cache@v4" with: From 877c3a9c6cb4f9c45529fb45451e295f4b7f9c0c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 4 Mar 2024 07:52:56 +0000 Subject: [PATCH 57/64] github-actions(deps): Bump shivammathur/setup-php from 2.29.0 to 2.30.0 Bumps [shivammathur/setup-php](https://github.com/shivammathur/setup-php) from 2.29.0 to 2.30.0. - [Release notes](https://github.com/shivammathur/setup-php/releases) - [Commits](https://github.com/shivammathur/setup-php/compare/2.29.0...2.30.0) --- updated-dependencies: - dependency-name: shivammathur/setup-php dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .github/workflows/integrate.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/integrate.yaml b/.github/workflows/integrate.yaml index 7c4fa192..0eaf8c0d 100644 --- a/.github/workflows/integrate.yaml +++ b/.github/workflows/integrate.yaml @@ -37,7 +37,7 @@ jobs: strict: true - name: "Install PHP with extensions" - uses: "shivammathur/setup-php@2.29.0" + uses: "shivammathur/setup-php@2.30.0" with: coverage: "none" extensions: "${{ env.PHP_EXTENSIONS }}" @@ -105,7 +105,7 @@ jobs: uses: "actions/checkout@v4" - name: "Install PHP with extensions" - uses: "shivammathur/setup-php@2.29.0" + uses: "shivammathur/setup-php@2.30.0" with: coverage: "none" extensions: "${{ env.PHP_EXTENSIONS }}" @@ -166,7 +166,7 @@ jobs: uses: "actions/checkout@v4" - name: "Install PHP with extensions" - uses: "shivammathur/setup-php@2.29.0" + uses: "shivammathur/setup-php@2.30.0" with: coverage: "none" extensions: "${{ env.PHP_EXTENSIONS }}" From b677ccd0603e8863aef44b3e598364b914142d25 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Mon, 4 Mar 2024 09:01:18 +0100 Subject: [PATCH 58/64] Fix: Run 'make coding-standards' --- src/Type/Prophet/ProphesizeDynamicReturnTypeExtension.php | 1 - 1 file changed, 1 deletion(-) diff --git a/src/Type/Prophet/ProphesizeDynamicReturnTypeExtension.php b/src/Type/Prophet/ProphesizeDynamicReturnTypeExtension.php index a9a30c83..cbcf12b8 100644 --- a/src/Type/Prophet/ProphesizeDynamicReturnTypeExtension.php +++ b/src/Type/Prophet/ProphesizeDynamicReturnTypeExtension.php @@ -16,7 +16,6 @@ use PhpParser\Node; use PHPStan\Analyser; use PHPStan\Reflection; -use PHPStan\ShouldNotHappenException; use PHPStan\Type; use Prophecy\Prophecy; From 6ad823e597c1bc11c6c61256437316a454a4ec8e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Mon, 4 Mar 2024 09:02:40 +0100 Subject: [PATCH 59/64] Enhancement: Use --ansi option --- .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 0eaf8c0d..c9fd4c98 100644 --- a/.github/workflows/integrate.yaml +++ b/.github/workflows/integrate.yaml @@ -75,7 +75,7 @@ jobs: restore-keys: "php-${{ matrix.php-version }}-php-cs-fixer-" - name: "Run friendsofphp/php-cs-fixer" - run: "vendor/bin/php-cs-fixer fix --config=.php_cs --diff --diff-format=udiff --dry-run --verbose" + run: "vendor/bin/php-cs-fixer fix --ansi --config=.php_cs --diff --diff-format=udiff --dry-run --verbose" static-code-analysis: name: "Static Code Analysis" From dfa3e2682799b4ca43738c2cb19bb5a826ffc92e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jurica=20=C5=A0eparovi=C4=87?= Date: Wed, 13 Mar 2024 09:18:10 +0100 Subject: [PATCH 60/64] Remove problematic test case and revert baseline (#328) --- phpstan-without-extension-baseline.neon | 8 ++++---- .../Test/ObjectProphecy/ProphesizeTest.php | 19 ------------------- 2 files changed, 4 insertions(+), 23 deletions(-) diff --git a/phpstan-without-extension-baseline.neon b/phpstan-without-extension-baseline.neon index a66a2150..9466479d 100644 --- a/phpstan-without-extension-baseline.neon +++ b/phpstan-without-extension-baseline.neon @@ -22,22 +22,22 @@ parameters: - message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:doubleTheNumber\\(\\)\\.$#" - count: 2 + count: 1 path: test/StaticAnalysis/Test/ObjectProphecy/ProphesizeTest.php - message: "#^Call to an undefined method Prophecy\\\\Prophecy\\\\ObjectProphecy\\:\\:getFoo\\(\\)\\.$#" - count: 2 + count: 1 path: test/StaticAnalysis/Test/ObjectProphecy/ProphesizeTest.php - message: "#^Call to an undefined method object\\:\\:doubleTheNumber\\(\\)\\.$#" - count: 2 + count: 1 path: test/StaticAnalysis/Test/ObjectProphecy/ProphesizeTest.php - message: "#^Call to an undefined method object\\:\\:getFoo\\(\\)\\.$#" - count: 2 + count: 1 path: test/StaticAnalysis/Test/ObjectProphecy/ProphesizeTest.php - diff --git a/test/StaticAnalysis/Test/ObjectProphecy/ProphesizeTest.php b/test/StaticAnalysis/Test/ObjectProphecy/ProphesizeTest.php index 559d7999..edcc659a 100644 --- a/test/StaticAnalysis/Test/ObjectProphecy/ProphesizeTest.php +++ b/test/StaticAnalysis/Test/ObjectProphecy/ProphesizeTest.php @@ -16,7 +16,6 @@ use JanGregor\Prophecy\Test\StaticAnalysis\Src; use PHPUnit\Framework; use Prophecy\Argument; -use Prophecy\Prophet; /** * @internal @@ -84,24 +83,6 @@ public function testCreateProphecyInHelperMethod(): void self::assertEquals(5, $testDouble->doubleTheNumber(2)); } - public function testCreateProphecyInline(): void - { - $prophecy = (new Prophet())->prophesize(Src\BaseModel::class); - - $prophecy - ->getFoo() - ->willReturn('bar'); - - $prophecy - ->doubleTheNumber(Argument::is(2)) - ->willReturn(5); - - $testDouble = $prophecy->reveal(); - - self::assertEquals('bar', $testDouble->getFoo()); - self::assertEquals(5, $testDouble->doubleTheNumber(2)); - } - private function createProphecy() { return $this->prophesize(Src\BaseModel::class); From 9e41f402c1f8b4a8ee44e78bd06d65c4c69be4ed Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 26 Mar 2024 05:08:21 +0000 Subject: [PATCH 61/64] github-actions(deps): Bump shivammathur/setup-php from 2.30.0 to 2.30.1 Bumps [shivammathur/setup-php](https://github.com/shivammathur/setup-php) from 2.30.0 to 2.30.1. - [Release notes](https://github.com/shivammathur/setup-php/releases) - [Commits](https://github.com/shivammathur/setup-php/compare/2.30.0...2.30.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 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/integrate.yaml b/.github/workflows/integrate.yaml index c9fd4c98..874f5bcc 100644 --- a/.github/workflows/integrate.yaml +++ b/.github/workflows/integrate.yaml @@ -37,7 +37,7 @@ jobs: strict: true - name: "Install PHP with extensions" - uses: "shivammathur/setup-php@2.30.0" + uses: "shivammathur/setup-php@2.30.1" with: coverage: "none" extensions: "${{ env.PHP_EXTENSIONS }}" @@ -105,7 +105,7 @@ jobs: uses: "actions/checkout@v4" - name: "Install PHP with extensions" - uses: "shivammathur/setup-php@2.30.0" + uses: "shivammathur/setup-php@2.30.1" with: coverage: "none" extensions: "${{ env.PHP_EXTENSIONS }}" @@ -166,7 +166,7 @@ jobs: uses: "actions/checkout@v4" - name: "Install PHP with extensions" - uses: "shivammathur/setup-php@2.30.0" + uses: "shivammathur/setup-php@2.30.1" with: coverage: "none" extensions: "${{ env.PHP_EXTENSIONS }}" From db82f70e002527077b800d7a2c4d83a2d7100d96 Mon Sep 17 00:00:00 2001 From: Alexander Schranz Date: Tue, 26 Mar 2024 15:38:34 +0100 Subject: [PATCH 62/64] Fix conflict version constraint (#332) --- composer.json | 4 ++-- composer.lock | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/composer.json b/composer.json index 5e6c66b5..ad920b53 100644 --- a/composer.json +++ b/composer.json @@ -14,8 +14,8 @@ "phpstan/phpstan": "^1.0.0" }, "conflict": { - "phpspec/prophecy": "<1.7.0,>=2.0.0", - "phpunit/phpunit": "<6.0.0,>=10.0.0" + "phpspec/prophecy": "<1.7.0 || >=2.0.0", + "phpunit/phpunit": "<6.0.0 || >=10.0.0" }, "require-dev": { "ergebnis/composer-normalize": "^2.1.1", diff --git a/composer.lock b/composer.lock index 437be973..75b5781e 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "9acf80128cdf0db1b699ab00cb87b800", + "content-hash": "1dcbe78f56a7d77fa5e2827e6cb4f612", "packages": [ { "name": "phpstan/phpstan", @@ -3926,5 +3926,5 @@ "php": "^7.1 || ^8.0" }, "platform-dev": [], - "plugin-api-version": "2.3.0" + "plugin-api-version": "2.6.0" } From 4ebaecce288f902a65f30f56ca5f6fe7d4fb00de Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 1 Apr 2024 05:24:54 +0000 Subject: [PATCH 63/64] github-actions(deps): Bump shivammathur/setup-php from 2.30.1 to 2.30.2 Bumps [shivammathur/setup-php](https://github.com/shivammathur/setup-php) from 2.30.1 to 2.30.2. - [Release notes](https://github.com/shivammathur/setup-php/releases) - [Commits](https://github.com/shivammathur/setup-php/compare/2.30.1...2.30.2) --- 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 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/integrate.yaml b/.github/workflows/integrate.yaml index 874f5bcc..1cee1fc3 100644 --- a/.github/workflows/integrate.yaml +++ b/.github/workflows/integrate.yaml @@ -37,7 +37,7 @@ jobs: strict: true - name: "Install PHP with extensions" - uses: "shivammathur/setup-php@2.30.1" + uses: "shivammathur/setup-php@2.30.2" with: coverage: "none" extensions: "${{ env.PHP_EXTENSIONS }}" @@ -105,7 +105,7 @@ jobs: uses: "actions/checkout@v4" - name: "Install PHP with extensions" - uses: "shivammathur/setup-php@2.30.1" + uses: "shivammathur/setup-php@2.30.2" with: coverage: "none" extensions: "${{ env.PHP_EXTENSIONS }}" @@ -166,7 +166,7 @@ jobs: uses: "actions/checkout@v4" - name: "Install PHP with extensions" - uses: "shivammathur/setup-php@2.30.1" + uses: "shivammathur/setup-php@2.30.2" with: coverage: "none" extensions: "${{ env.PHP_EXTENSIONS }}" From 5ee56c7db1d58f0578c82a35e3c1befe840e85a9 Mon Sep 17 00:00:00 2001 From: Alessandro Lai Date: Wed, 3 Apr 2024 10:15:54 +0200 Subject: [PATCH 64/64] Allow PHPUnit 10 & 11 (#334) --- composer.json | 2 +- composer.lock | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/composer.json b/composer.json index ad920b53..29f76ad0 100644 --- a/composer.json +++ b/composer.json @@ -15,7 +15,7 @@ }, "conflict": { "phpspec/prophecy": "<1.7.0 || >=2.0.0", - "phpunit/phpunit": "<6.0.0 || >=10.0.0" + "phpunit/phpunit": "<6.0.0 || >=12.0.0" }, "require-dev": { "ergebnis/composer-normalize": "^2.1.1", diff --git a/composer.lock b/composer.lock index 75b5781e..43bf40ca 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "1dcbe78f56a7d77fa5e2827e6cb4f612", + "content-hash": "28cf25d15330351ee73e1d03d1ac7bfb", "packages": [ { "name": "phpstan/phpstan",