{"url":"http://public2.vulnerablecode.io/api/vulnerabilities/20626?format=json","vulnerability_id":"VCID-6bt7-kw89-v3dt","summary":"PHPUnit Vulnerable to Unsafe Deserialization in PHPT Code Coverage Handling\n### Overview\n\nA vulnerability has been discovered involving unsafe deserialization of code coverage data in PHPT test execution. The vulnerability exists in the `cleanupForCoverage()` method, which deserializes code coverage files without validation, potentially allowing remote code execution if malicious `.coverage` files are present prior to the execution of the PHPT test.\n\n### Technical Details\n\n**Affected Component:** PHPT test runner, method `cleanupForCoverage()`\n**Affected Versions:** <= 8.5.51, <= 9.6.32, <= 10.5.61, <= 11.5.49, <= 12.5.7\n\n### Vulnerable Code Pattern\n\n```php\nif ($buffer !== false) {\n    // Unsafe call without restrictions\n    $coverage = @unserialize($buffer);\n}\n```\n\nThe vulnerability occurs when a `.coverage` file, which should not exist before test execution, is deserialized without the `allowed_classes` parameter restriction. An attacker with local file write access can place a malicious serialized object with a `__wakeup()` method into the file system, leading to arbitrary code execution during test runs with code coverage instrumentation enabled.\n\n### Attack Prerequisites and Constraints\n\nThis vulnerability requires **local file write access** to the location where PHPUnit stores or expects code coverage files for PHPT tests. This can occur through:\n\n* **CI/CD Pipeline Attacks:** A malicious pull request that places a `.coverage` file alongside test files, executed when the CI system runs tests using PHPUnit and collects code coverage information\n* **Local Development Environment:** An attacker with shell access or ability to write files to the project directory\n* **Compromised Dependencies:** A supply chain attack inserting malicious files into a package or monorepo\n\n**Critical Context:** Running test suites from unreviewed pull requests without isolated execution is inherently a code execution risk, independent of this specific vulnerability. This represents a broader class of [Poisoned Pipeline Execution (PPE) attacks](https://owasp.org/www-project-top-10-ci-cd-security-risks/CICD-SEC-04-Poisoned-Pipeline-Execution) affecting CI/CD systems.\n\n### Proposed Remediation Approach\n\nRather than just silently sanitizing the input via `['allowed_classes' => false]`, the maintainer has chosen to make the anomalous state explicit by treating pre-existing `.coverage` files for PHPT tests as an error condition.\n\n#### Rationale for Error-Based Approach:\n\n1. **Visibility Over Silence:** When an invariant is violated (a `.coverage` file existing before test execution), the error must be visible in CI/CD output, alerting operators to investigate the root cause rather than proceeding with sanitized input\n2. **Operational Security:** A `.coverage` file should never exist before tests run, coverage data is generated by executing tests, not sourced from artifacts. Its presence indicates:\n    * A malicious actor placed it intentionally\n    * Build artifacts from a previous run contaminated the environment\n    * An unexpected filesystem state requiring investigation\n3. **Defense-in-Depth Principle:** Protecting a single deserialization call does not address the fundamental attack surface. Proper mitigations for PPE attacks lie outside PHPUnit's scope:\n    * Isolate CI/CD runners (ephemeral, containerized environments)\n    * Restrict code execution on protected branches\n    * Scan pull requests and artifacts for tampering\n    * Use branch protection rules to prevent unreviewed code execution\n\n### Severity Classification\n\n* **Attack Vector (AV):** Local (L) — requires write access to the file system where tests execute\n* **Attack Complexity (AC):** Low (L) — exploitation is straightforward once the malicious file is placed\n* **Privileges Required (PR):** Low (L) — PR submitter status or contributor role provides sufficient access\n* **User Interaction (UI):** None (N) — automatic execution during standard test execution\n* **Scope (S):** Unchanged (U) — impact remains within the affected test execution context\n* **Confidentiality Impact (C):** High (H) — full remote code execution enables complete system compromise\n* **Integrity Impact (I):** High (H) — arbitrary code execution allows malicious modifications\n* **Availability Impact (A):** High (H) — full code execution permits denial-of-service actions\n\n### Mitigating Factors (Environmental Context)\n\nOrganizations can reduce the effective risk of this vulnerability through proper CI/CD configuration:\n\n* **Ephemeral Runners:** Use containerized, single-use CI/CD runners that discard filesystem state between runs\n* **Code Review Enforcement:** Require human review and approval before executing code from pull requests\n* **Branch Protection:** Enforce branch protection rules that block unreviewed code execution\n* **Artifact Isolation:** Separate build artifacts from source; never reuse artifacts across independent builds\n* **Access Control:** Limit file write permissions in CI environments to authenticated, trusted actors\n\n### Fixed Behaviour\n\nWhen a `.coverage` file is detected for a PHPT test prior to execution, PHPUnit will emit a clear error message identifying the anomalous state. This ensures:\n\n* **Visibility:** The error appears prominently in CI/CD output and test logs\n* **Investigation:** Operations teams can investigate the root cause (potential tampering, environment contamination)\n* **Fail-Fast Semantics:** Test execution stops rather than proceeding with an unexpected state\n\n### Recommendation\n\n**Update to the patched version immediately** if a project runs PHPT tests using PHPUnit with coverage instrumentation in any CI/CD environment that executes code from external contributors. Additionally, audit the project's CI/CD configuration to ensure:\n\n* Pull requests from forks or untrusted sources execute in isolated environments\n* Branch protection rules require human review before code execution\n* CI/CD runners are ephemeral and discarded after each build\n* Build artifacts are not reused across independent runs without validation","aliases":[{"alias":"CVE-2026-24765"},{"alias":"GHSA-vvj3-c3rp-c85p"}],"fixed_packages":[{"url":"http://public2.vulnerablecode.io/api/packages/62273?format=json","purl":"pkg:composer/phpunit/phpunit@8.5.52","is_vulnerable":false,"affected_by_vulnerabilities":[],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.5.52"},{"url":"http://public2.vulnerablecode.io/api/packages/62275?format=json","purl":"pkg:composer/phpunit/phpunit@9.6.33","is_vulnerable":false,"affected_by_vulnerabilities":[],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.6.33"},{"url":"http://public2.vulnerablecode.io/api/packages/62276?format=json","purl":"pkg:composer/phpunit/phpunit@10.5.62","is_vulnerable":false,"affected_by_vulnerabilities":[],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.5.62"},{"url":"http://public2.vulnerablecode.io/api/packages/62278?format=json","purl":"pkg:composer/phpunit/phpunit@11.5.50","is_vulnerable":false,"affected_by_vulnerabilities":[],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.5.50"},{"url":"http://public2.vulnerablecode.io/api/packages/62279?format=json","purl":"pkg:composer/phpunit/phpunit@12.5.8","is_vulnerable":false,"affected_by_vulnerabilities":[],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@12.5.8"},{"url":"http://public2.vulnerablecode.io/api/packages/935282?format=json","purl":"pkg:deb/debian/phpunit@9.5.2-1?distro=trixie","is_vulnerable":false,"affected_by_vulnerabilities":[],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:deb/debian/phpunit@9.5.2-1%3Fdistro=trixie"},{"url":"http://public2.vulnerablecode.io/api/packages/935285?format=json","purl":"pkg:deb/debian/phpunit@9.5.2-1%2Bdeb11u1?distro=trixie","is_vulnerable":false,"affected_by_vulnerabilities":[],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:deb/debian/phpunit@9.5.2-1%252Bdeb11u1%3Fdistro=trixie"},{"url":"http://public2.vulnerablecode.io/api/packages/1053126?format=json","purl":"pkg:deb/debian/phpunit@9.6.7-1","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:deb/debian/phpunit@9.6.7-1"},{"url":"http://public2.vulnerablecode.io/api/packages/935284?format=json","purl":"pkg:deb/debian/phpunit@11.5.19-1%2Bdeb13u1?distro=trixie","is_vulnerable":false,"affected_by_vulnerabilities":[],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:deb/debian/phpunit@11.5.19-1%252Bdeb13u1%3Fdistro=trixie"},{"url":"http://public2.vulnerablecode.io/api/packages/1054444?format=json","purl":"pkg:deb/debian/phpunit@11.5.19-1%2Bdeb13u1","is_vulnerable":false,"affected_by_vulnerabilities":[],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:deb/debian/phpunit@11.5.19-1%252Bdeb13u1"},{"url":"http://public2.vulnerablecode.io/api/packages/935286?format=json","purl":"pkg:deb/debian/phpunit@12.5.8-1?distro=trixie","is_vulnerable":false,"affected_by_vulnerabilities":[],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:deb/debian/phpunit@12.5.8-1%3Fdistro=trixie"},{"url":"http://public2.vulnerablecode.io/api/packages/935283?format=json","purl":"pkg:deb/debian/phpunit@13.0.0-2?distro=trixie","is_vulnerable":false,"affected_by_vulnerabilities":[],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:deb/debian/phpunit@13.0.0-2%3Fdistro=trixie"},{"url":"http://public2.vulnerablecode.io/api/packages/1000463?format=json","purl":"pkg:deb/debian/phpunit@13.0.6-1?distro=trixie","is_vulnerable":false,"affected_by_vulnerabilities":[],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:deb/debian/phpunit@13.0.6-1%3Fdistro=trixie"},{"url":"http://public2.vulnerablecode.io/api/packages/1041992?format=json","purl":"pkg:deb/debian/phpunit@13.0.6-2?distro=trixie","is_vulnerable":false,"affected_by_vulnerabilities":[],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:deb/debian/phpunit@13.0.6-2%3Fdistro=trixie"}],"affected_packages":[{"url":"http://public2.vulnerablecode.io/api/packages/898109?format=json","purl":"pkg:composer/phpunit/phpunit@3.7.0","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@3.7.0"},{"url":"http://public2.vulnerablecode.io/api/packages/898110?format=json","purl":"pkg:composer/phpunit/phpunit@3.7.1","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@3.7.1"},{"url":"http://public2.vulnerablecode.io/api/packages/898111?format=json","purl":"pkg:composer/phpunit/phpunit@3.7.2","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@3.7.2"},{"url":"http://public2.vulnerablecode.io/api/packages/898112?format=json","purl":"pkg:composer/phpunit/phpunit@3.7.3","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@3.7.3"},{"url":"http://public2.vulnerablecode.io/api/packages/898113?format=json","purl":"pkg:composer/phpunit/phpunit@3.7.4","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@3.7.4"},{"url":"http://public2.vulnerablecode.io/api/packages/898114?format=json","purl":"pkg:composer/phpunit/phpunit@3.7.5","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@3.7.5"},{"url":"http://public2.vulnerablecode.io/api/packages/898115?format=json","purl":"pkg:composer/phpunit/phpunit@3.7.6","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@3.7.6"},{"url":"http://public2.vulnerablecode.io/api/packages/898116?format=json","purl":"pkg:composer/phpunit/phpunit@3.7.7","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@3.7.7"},{"url":"http://public2.vulnerablecode.io/api/packages/898117?format=json","purl":"pkg:composer/phpunit/phpunit@3.7.8","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@3.7.8"},{"url":"http://public2.vulnerablecode.io/api/packages/898118?format=json","purl":"pkg:composer/phpunit/phpunit@3.7.9","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@3.7.9"},{"url":"http://public2.vulnerablecode.io/api/packages/898119?format=json","purl":"pkg:composer/phpunit/phpunit@3.7.10","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@3.7.10"},{"url":"http://public2.vulnerablecode.io/api/packages/898120?format=json","purl":"pkg:composer/phpunit/phpunit@3.7.11","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@3.7.11"},{"url":"http://public2.vulnerablecode.io/api/packages/898121?format=json","purl":"pkg:composer/phpunit/phpunit@3.7.12","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@3.7.12"},{"url":"http://public2.vulnerablecode.io/api/packages/898122?format=json","purl":"pkg:composer/phpunit/phpunit@3.7.13","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@3.7.13"},{"url":"http://public2.vulnerablecode.io/api/packages/898123?format=json","purl":"pkg:composer/phpunit/phpunit@3.7.14","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@3.7.14"},{"url":"http://public2.vulnerablecode.io/api/packages/898124?format=json","purl":"pkg:composer/phpunit/phpunit@3.7.15","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@3.7.15"},{"url":"http://public2.vulnerablecode.io/api/packages/898125?format=json","purl":"pkg:composer/phpunit/phpunit@3.7.16","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@3.7.16"},{"url":"http://public2.vulnerablecode.io/api/packages/898126?format=json","purl":"pkg:composer/phpunit/phpunit@3.7.17","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@3.7.17"},{"url":"http://public2.vulnerablecode.io/api/packages/898127?format=json","purl":"pkg:composer/phpunit/phpunit@3.7.18","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@3.7.18"},{"url":"http://public2.vulnerablecode.io/api/packages/898128?format=json","purl":"pkg:composer/phpunit/phpunit@3.7.19","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@3.7.19"},{"url":"http://public2.vulnerablecode.io/api/packages/898129?format=json","purl":"pkg:composer/phpunit/phpunit@3.7.20","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@3.7.20"},{"url":"http://public2.vulnerablecode.io/api/packages/898130?format=json","purl":"pkg:composer/phpunit/phpunit@3.7.21","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@3.7.21"},{"url":"http://public2.vulnerablecode.io/api/packages/898131?format=json","purl":"pkg:composer/phpunit/phpunit@3.7.22","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@3.7.22"},{"url":"http://public2.vulnerablecode.io/api/packages/898132?format=json","purl":"pkg:composer/phpunit/phpunit@3.7.23","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@3.7.23"},{"url":"http://public2.vulnerablecode.io/api/packages/898133?format=json","purl":"pkg:composer/phpunit/phpunit@3.7.24","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@3.7.24"},{"url":"http://public2.vulnerablecode.io/api/packages/898134?format=json","purl":"pkg:composer/phpunit/phpunit@3.7.25","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@3.7.25"},{"url":"http://public2.vulnerablecode.io/api/packages/898135?format=json","purl":"pkg:composer/phpunit/phpunit@3.7.26","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@3.7.26"},{"url":"http://public2.vulnerablecode.io/api/packages/898136?format=json","purl":"pkg:composer/phpunit/phpunit@3.7.27","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@3.7.27"},{"url":"http://public2.vulnerablecode.io/api/packages/898137?format=json","purl":"pkg:composer/phpunit/phpunit@3.7.28","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@3.7.28"},{"url":"http://public2.vulnerablecode.io/api/packages/898138?format=json","purl":"pkg:composer/phpunit/phpunit@3.7.29","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@3.7.29"},{"url":"http://public2.vulnerablecode.io/api/packages/898139?format=json","purl":"pkg:composer/phpunit/phpunit@3.7.30","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@3.7.30"},{"url":"http://public2.vulnerablecode.io/api/packages/898140?format=json","purl":"pkg:composer/phpunit/phpunit@3.7.31","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@3.7.31"},{"url":"http://public2.vulnerablecode.io/api/packages/898141?format=json","purl":"pkg:composer/phpunit/phpunit@3.7.32","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@3.7.32"},{"url":"http://public2.vulnerablecode.io/api/packages/898142?format=json","purl":"pkg:composer/phpunit/phpunit@3.7.33","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@3.7.33"},{"url":"http://public2.vulnerablecode.io/api/packages/898143?format=json","purl":"pkg:composer/phpunit/phpunit@3.7.34","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@3.7.34"},{"url":"http://public2.vulnerablecode.io/api/packages/898144?format=json","purl":"pkg:composer/phpunit/phpunit@3.7.35","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@3.7.35"},{"url":"http://public2.vulnerablecode.io/api/packages/898145?format=json","purl":"pkg:composer/phpunit/phpunit@3.7.36","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@3.7.36"},{"url":"http://public2.vulnerablecode.io/api/packages/898146?format=json","purl":"pkg:composer/phpunit/phpunit@3.7.37","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@3.7.37"},{"url":"http://public2.vulnerablecode.io/api/packages/898147?format=json","purl":"pkg:composer/phpunit/phpunit@3.7.38","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@3.7.38"},{"url":"http://public2.vulnerablecode.io/api/packages/898148?format=json","purl":"pkg:composer/phpunit/phpunit@4.0.0","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.0.0"},{"url":"http://public2.vulnerablecode.io/api/packages/898149?format=json","purl":"pkg:composer/phpunit/phpunit@4.0.1","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.0.1"},{"url":"http://public2.vulnerablecode.io/api/packages/898150?format=json","purl":"pkg:composer/phpunit/phpunit@4.0.2","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.0.2"},{"url":"http://public2.vulnerablecode.io/api/packages/898151?format=json","purl":"pkg:composer/phpunit/phpunit@4.0.3","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.0.3"},{"url":"http://public2.vulnerablecode.io/api/packages/898152?format=json","purl":"pkg:composer/phpunit/phpunit@4.0.4","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.0.4"},{"url":"http://public2.vulnerablecode.io/api/packages/898153?format=json","purl":"pkg:composer/phpunit/phpunit@4.0.5","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.0.5"},{"url":"http://public2.vulnerablecode.io/api/packages/898154?format=json","purl":"pkg:composer/phpunit/phpunit@4.0.6","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.0.6"},{"url":"http://public2.vulnerablecode.io/api/packages/898155?format=json","purl":"pkg:composer/phpunit/phpunit@4.0.7","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.0.7"},{"url":"http://public2.vulnerablecode.io/api/packages/898156?format=json","purl":"pkg:composer/phpunit/phpunit@4.0.8","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.0.8"},{"url":"http://public2.vulnerablecode.io/api/packages/898157?format=json","purl":"pkg:composer/phpunit/phpunit@4.0.9","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.0.9"},{"url":"http://public2.vulnerablecode.io/api/packages/898158?format=json","purl":"pkg:composer/phpunit/phpunit@4.0.10","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.0.10"},{"url":"http://public2.vulnerablecode.io/api/packages/898159?format=json","purl":"pkg:composer/phpunit/phpunit@4.0.11","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.0.11"},{"url":"http://public2.vulnerablecode.io/api/packages/898160?format=json","purl":"pkg:composer/phpunit/phpunit@4.0.12","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.0.12"},{"url":"http://public2.vulnerablecode.io/api/packages/898161?format=json","purl":"pkg:composer/phpunit/phpunit@4.0.13","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.0.13"},{"url":"http://public2.vulnerablecode.io/api/packages/898162?format=json","purl":"pkg:composer/phpunit/phpunit@4.0.14","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.0.14"},{"url":"http://public2.vulnerablecode.io/api/packages/898163?format=json","purl":"pkg:composer/phpunit/phpunit@4.0.15","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.0.15"},{"url":"http://public2.vulnerablecode.io/api/packages/898164?format=json","purl":"pkg:composer/phpunit/phpunit@4.0.16","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.0.16"},{"url":"http://public2.vulnerablecode.io/api/packages/898165?format=json","purl":"pkg:composer/phpunit/phpunit@4.0.17","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.0.17"},{"url":"http://public2.vulnerablecode.io/api/packages/898166?format=json","purl":"pkg:composer/phpunit/phpunit@4.0.18","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.0.18"},{"url":"http://public2.vulnerablecode.io/api/packages/898167?format=json","purl":"pkg:composer/phpunit/phpunit@4.0.19","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.0.19"},{"url":"http://public2.vulnerablecode.io/api/packages/898168?format=json","purl":"pkg:composer/phpunit/phpunit@4.0.20","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.0.20"},{"url":"http://public2.vulnerablecode.io/api/packages/898169?format=json","purl":"pkg:composer/phpunit/phpunit@4.1.0","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.1.0"},{"url":"http://public2.vulnerablecode.io/api/packages/898170?format=json","purl":"pkg:composer/phpunit/phpunit@4.1.1","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.1.1"},{"url":"http://public2.vulnerablecode.io/api/packages/898171?format=json","purl":"pkg:composer/phpunit/phpunit@4.1.2","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.1.2"},{"url":"http://public2.vulnerablecode.io/api/packages/898172?format=json","purl":"pkg:composer/phpunit/phpunit@4.1.3","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.1.3"},{"url":"http://public2.vulnerablecode.io/api/packages/898173?format=json","purl":"pkg:composer/phpunit/phpunit@4.1.4","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.1.4"},{"url":"http://public2.vulnerablecode.io/api/packages/898174?format=json","purl":"pkg:composer/phpunit/phpunit@4.1.5","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.1.5"},{"url":"http://public2.vulnerablecode.io/api/packages/898175?format=json","purl":"pkg:composer/phpunit/phpunit@4.1.6","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.1.6"},{"url":"http://public2.vulnerablecode.io/api/packages/898176?format=json","purl":"pkg:composer/phpunit/phpunit@4.2.0","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.2.0"},{"url":"http://public2.vulnerablecode.io/api/packages/898177?format=json","purl":"pkg:composer/phpunit/phpunit@4.2.1","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.2.1"},{"url":"http://public2.vulnerablecode.io/api/packages/898178?format=json","purl":"pkg:composer/phpunit/phpunit@4.2.2","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.2.2"},{"url":"http://public2.vulnerablecode.io/api/packages/898179?format=json","purl":"pkg:composer/phpunit/phpunit@4.2.3","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.2.3"},{"url":"http://public2.vulnerablecode.io/api/packages/898180?format=json","purl":"pkg:composer/phpunit/phpunit@4.2.4","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.2.4"},{"url":"http://public2.vulnerablecode.io/api/packages/898181?format=json","purl":"pkg:composer/phpunit/phpunit@4.2.5","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.2.5"},{"url":"http://public2.vulnerablecode.io/api/packages/898182?format=json","purl":"pkg:composer/phpunit/phpunit@4.2.6","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.2.6"},{"url":"http://public2.vulnerablecode.io/api/packages/898183?format=json","purl":"pkg:composer/phpunit/phpunit@4.3.0","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.3.0"},{"url":"http://public2.vulnerablecode.io/api/packages/898184?format=json","purl":"pkg:composer/phpunit/phpunit@4.3.1","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.3.1"},{"url":"http://public2.vulnerablecode.io/api/packages/898185?format=json","purl":"pkg:composer/phpunit/phpunit@4.3.2","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.3.2"},{"url":"http://public2.vulnerablecode.io/api/packages/898186?format=json","purl":"pkg:composer/phpunit/phpunit@4.3.3","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.3.3"},{"url":"http://public2.vulnerablecode.io/api/packages/898187?format=json","purl":"pkg:composer/phpunit/phpunit@4.3.4","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.3.4"},{"url":"http://public2.vulnerablecode.io/api/packages/898188?format=json","purl":"pkg:composer/phpunit/phpunit@4.3.5","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.3.5"},{"url":"http://public2.vulnerablecode.io/api/packages/898189?format=json","purl":"pkg:composer/phpunit/phpunit@4.4.0","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.4.0"},{"url":"http://public2.vulnerablecode.io/api/packages/898190?format=json","purl":"pkg:composer/phpunit/phpunit@4.4.1","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.4.1"},{"url":"http://public2.vulnerablecode.io/api/packages/898191?format=json","purl":"pkg:composer/phpunit/phpunit@4.4.2","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.4.2"},{"url":"http://public2.vulnerablecode.io/api/packages/898192?format=json","purl":"pkg:composer/phpunit/phpunit@4.4.3","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.4.3"},{"url":"http://public2.vulnerablecode.io/api/packages/898193?format=json","purl":"pkg:composer/phpunit/phpunit@4.4.4","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.4.4"},{"url":"http://public2.vulnerablecode.io/api/packages/898194?format=json","purl":"pkg:composer/phpunit/phpunit@4.4.5","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.4.5"},{"url":"http://public2.vulnerablecode.io/api/packages/898195?format=json","purl":"pkg:composer/phpunit/phpunit@4.5.0","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.5.0"},{"url":"http://public2.vulnerablecode.io/api/packages/898196?format=json","purl":"pkg:composer/phpunit/phpunit@4.5.1","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.5.1"},{"url":"http://public2.vulnerablecode.io/api/packages/898197?format=json","purl":"pkg:composer/phpunit/phpunit@4.6.0","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.6.0"},{"url":"http://public2.vulnerablecode.io/api/packages/898198?format=json","purl":"pkg:composer/phpunit/phpunit@4.6.1","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.6.1"},{"url":"http://public2.vulnerablecode.io/api/packages/898199?format=json","purl":"pkg:composer/phpunit/phpunit@4.6.2","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.6.2"},{"url":"http://public2.vulnerablecode.io/api/packages/898200?format=json","purl":"pkg:composer/phpunit/phpunit@4.6.3","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.6.3"},{"url":"http://public2.vulnerablecode.io/api/packages/898201?format=json","purl":"pkg:composer/phpunit/phpunit@4.6.4","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.6.4"},{"url":"http://public2.vulnerablecode.io/api/packages/898202?format=json","purl":"pkg:composer/phpunit/phpunit@4.6.5","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.6.5"},{"url":"http://public2.vulnerablecode.io/api/packages/898203?format=json","purl":"pkg:composer/phpunit/phpunit@4.6.6","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.6.6"},{"url":"http://public2.vulnerablecode.io/api/packages/898204?format=json","purl":"pkg:composer/phpunit/phpunit@4.6.7","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.6.7"},{"url":"http://public2.vulnerablecode.io/api/packages/898205?format=json","purl":"pkg:composer/phpunit/phpunit@4.6.8","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.6.8"},{"url":"http://public2.vulnerablecode.io/api/packages/898206?format=json","purl":"pkg:composer/phpunit/phpunit@4.6.9","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.6.9"},{"url":"http://public2.vulnerablecode.io/api/packages/898207?format=json","purl":"pkg:composer/phpunit/phpunit@4.6.10","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.6.10"},{"url":"http://public2.vulnerablecode.io/api/packages/898208?format=json","purl":"pkg:composer/phpunit/phpunit@4.7.0","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.7.0"},{"url":"http://public2.vulnerablecode.io/api/packages/898209?format=json","purl":"pkg:composer/phpunit/phpunit@4.7.1","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.7.1"},{"url":"http://public2.vulnerablecode.io/api/packages/898210?format=json","purl":"pkg:composer/phpunit/phpunit@4.7.2","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.7.2"},{"url":"http://public2.vulnerablecode.io/api/packages/898211?format=json","purl":"pkg:composer/phpunit/phpunit@4.7.3","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.7.3"},{"url":"http://public2.vulnerablecode.io/api/packages/898212?format=json","purl":"pkg:composer/phpunit/phpunit@4.7.4","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.7.4"},{"url":"http://public2.vulnerablecode.io/api/packages/898213?format=json","purl":"pkg:composer/phpunit/phpunit@4.7.5","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.7.5"},{"url":"http://public2.vulnerablecode.io/api/packages/898214?format=json","purl":"pkg:composer/phpunit/phpunit@4.7.6","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.7.6"},{"url":"http://public2.vulnerablecode.io/api/packages/898215?format=json","purl":"pkg:composer/phpunit/phpunit@4.7.7","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.7.7"},{"url":"http://public2.vulnerablecode.io/api/packages/898216?format=json","purl":"pkg:composer/phpunit/phpunit@4.8.0","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.8.0"},{"url":"http://public2.vulnerablecode.io/api/packages/898217?format=json","purl":"pkg:composer/phpunit/phpunit@4.8.1","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.8.1"},{"url":"http://public2.vulnerablecode.io/api/packages/898218?format=json","purl":"pkg:composer/phpunit/phpunit@4.8.2","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.8.2"},{"url":"http://public2.vulnerablecode.io/api/packages/898219?format=json","purl":"pkg:composer/phpunit/phpunit@4.8.3","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.8.3"},{"url":"http://public2.vulnerablecode.io/api/packages/898220?format=json","purl":"pkg:composer/phpunit/phpunit@4.8.4","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.8.4"},{"url":"http://public2.vulnerablecode.io/api/packages/898221?format=json","purl":"pkg:composer/phpunit/phpunit@4.8.5","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.8.5"},{"url":"http://public2.vulnerablecode.io/api/packages/898222?format=json","purl":"pkg:composer/phpunit/phpunit@4.8.6","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.8.6"},{"url":"http://public2.vulnerablecode.io/api/packages/898223?format=json","purl":"pkg:composer/phpunit/phpunit@4.8.7","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.8.7"},{"url":"http://public2.vulnerablecode.io/api/packages/898224?format=json","purl":"pkg:composer/phpunit/phpunit@4.8.8","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.8.8"},{"url":"http://public2.vulnerablecode.io/api/packages/898225?format=json","purl":"pkg:composer/phpunit/phpunit@4.8.9","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.8.9"},{"url":"http://public2.vulnerablecode.io/api/packages/898226?format=json","purl":"pkg:composer/phpunit/phpunit@4.8.10","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.8.10"},{"url":"http://public2.vulnerablecode.io/api/packages/898227?format=json","purl":"pkg:composer/phpunit/phpunit@4.8.11","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.8.11"},{"url":"http://public2.vulnerablecode.io/api/packages/898228?format=json","purl":"pkg:composer/phpunit/phpunit@4.8.12","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.8.12"},{"url":"http://public2.vulnerablecode.io/api/packages/898229?format=json","purl":"pkg:composer/phpunit/phpunit@4.8.13","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.8.13"},{"url":"http://public2.vulnerablecode.io/api/packages/898230?format=json","purl":"pkg:composer/phpunit/phpunit@4.8.14","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.8.14"},{"url":"http://public2.vulnerablecode.io/api/packages/898231?format=json","purl":"pkg:composer/phpunit/phpunit@4.8.15","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.8.15"},{"url":"http://public2.vulnerablecode.io/api/packages/898232?format=json","purl":"pkg:composer/phpunit/phpunit@4.8.16","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.8.16"},{"url":"http://public2.vulnerablecode.io/api/packages/898233?format=json","purl":"pkg:composer/phpunit/phpunit@4.8.17","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.8.17"},{"url":"http://public2.vulnerablecode.io/api/packages/898234?format=json","purl":"pkg:composer/phpunit/phpunit@4.8.18","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.8.18"},{"url":"http://public2.vulnerablecode.io/api/packages/48269?format=json","purl":"pkg:composer/phpunit/phpunit@4.8.19","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"},{"vulnerability":"VCID-ks7b-f17t-dfd4"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.8.19"},{"url":"http://public2.vulnerablecode.io/api/packages/291167?format=json","purl":"pkg:composer/phpunit/phpunit@4.8.20","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"},{"vulnerability":"VCID-ks7b-f17t-dfd4"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.8.20"},{"url":"http://public2.vulnerablecode.io/api/packages/291168?format=json","purl":"pkg:composer/phpunit/phpunit@4.8.21","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"},{"vulnerability":"VCID-ks7b-f17t-dfd4"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.8.21"},{"url":"http://public2.vulnerablecode.io/api/packages/291169?format=json","purl":"pkg:composer/phpunit/phpunit@4.8.22","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"},{"vulnerability":"VCID-ks7b-f17t-dfd4"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.8.22"},{"url":"http://public2.vulnerablecode.io/api/packages/291170?format=json","purl":"pkg:composer/phpunit/phpunit@4.8.23","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"},{"vulnerability":"VCID-ks7b-f17t-dfd4"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.8.23"},{"url":"http://public2.vulnerablecode.io/api/packages/291171?format=json","purl":"pkg:composer/phpunit/phpunit@4.8.24","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"},{"vulnerability":"VCID-ks7b-f17t-dfd4"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.8.24"},{"url":"http://public2.vulnerablecode.io/api/packages/291172?format=json","purl":"pkg:composer/phpunit/phpunit@4.8.25","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"},{"vulnerability":"VCID-ks7b-f17t-dfd4"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.8.25"},{"url":"http://public2.vulnerablecode.io/api/packages/291173?format=json","purl":"pkg:composer/phpunit/phpunit@4.8.26","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"},{"vulnerability":"VCID-ks7b-f17t-dfd4"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.8.26"},{"url":"http://public2.vulnerablecode.io/api/packages/291174?format=json","purl":"pkg:composer/phpunit/phpunit@4.8.27","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"},{"vulnerability":"VCID-ks7b-f17t-dfd4"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.8.27"},{"url":"http://public2.vulnerablecode.io/api/packages/48271?format=json","purl":"pkg:composer/phpunit/phpunit@4.8.28","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.8.28"},{"url":"http://public2.vulnerablecode.io/api/packages/898235?format=json","purl":"pkg:composer/phpunit/phpunit@4.8.29","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.8.29"},{"url":"http://public2.vulnerablecode.io/api/packages/898236?format=json","purl":"pkg:composer/phpunit/phpunit@4.8.30","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.8.30"},{"url":"http://public2.vulnerablecode.io/api/packages/898237?format=json","purl":"pkg:composer/phpunit/phpunit@4.8.31","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.8.31"},{"url":"http://public2.vulnerablecode.io/api/packages/898238?format=json","purl":"pkg:composer/phpunit/phpunit@4.8.32","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.8.32"},{"url":"http://public2.vulnerablecode.io/api/packages/898239?format=json","purl":"pkg:composer/phpunit/phpunit@4.8.33","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.8.33"},{"url":"http://public2.vulnerablecode.io/api/packages/898240?format=json","purl":"pkg:composer/phpunit/phpunit@4.8.34","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.8.34"},{"url":"http://public2.vulnerablecode.io/api/packages/898241?format=json","purl":"pkg:composer/phpunit/phpunit@4.8.35","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.8.35"},{"url":"http://public2.vulnerablecode.io/api/packages/898242?format=json","purl":"pkg:composer/phpunit/phpunit@4.8.36","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.8.36"},{"url":"http://public2.vulnerablecode.io/api/packages/898243?format=json","purl":"pkg:composer/phpunit/phpunit@5.0.0","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.0.0"},{"url":"http://public2.vulnerablecode.io/api/packages/898244?format=json","purl":"pkg:composer/phpunit/phpunit@5.0.1","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.0.1"},{"url":"http://public2.vulnerablecode.io/api/packages/898245?format=json","purl":"pkg:composer/phpunit/phpunit@5.0.2","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.0.2"},{"url":"http://public2.vulnerablecode.io/api/packages/898246?format=json","purl":"pkg:composer/phpunit/phpunit@5.0.3","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.0.3"},{"url":"http://public2.vulnerablecode.io/api/packages/898247?format=json","purl":"pkg:composer/phpunit/phpunit@5.0.4","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.0.4"},{"url":"http://public2.vulnerablecode.io/api/packages/898248?format=json","purl":"pkg:composer/phpunit/phpunit@5.0.5","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.0.5"},{"url":"http://public2.vulnerablecode.io/api/packages/898249?format=json","purl":"pkg:composer/phpunit/phpunit@5.0.6","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.0.6"},{"url":"http://public2.vulnerablecode.io/api/packages/898250?format=json","purl":"pkg:composer/phpunit/phpunit@5.0.7","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.0.7"},{"url":"http://public2.vulnerablecode.io/api/packages/898251?format=json","purl":"pkg:composer/phpunit/phpunit@5.0.8","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.0.8"},{"url":"http://public2.vulnerablecode.io/api/packages/898252?format=json","purl":"pkg:composer/phpunit/phpunit@5.0.9","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.0.9"},{"url":"http://public2.vulnerablecode.io/api/packages/48270?format=json","purl":"pkg:composer/phpunit/phpunit@5.0.10","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"},{"vulnerability":"VCID-ks7b-f17t-dfd4"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.0.10"},{"url":"http://public2.vulnerablecode.io/api/packages/291175?format=json","purl":"pkg:composer/phpunit/phpunit@5.1.0","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"},{"vulnerability":"VCID-ks7b-f17t-dfd4"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.1.0"},{"url":"http://public2.vulnerablecode.io/api/packages/291176?format=json","purl":"pkg:composer/phpunit/phpunit@5.1.1","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"},{"vulnerability":"VCID-ks7b-f17t-dfd4"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.1.1"},{"url":"http://public2.vulnerablecode.io/api/packages/291177?format=json","purl":"pkg:composer/phpunit/phpunit@5.1.2","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"},{"vulnerability":"VCID-ks7b-f17t-dfd4"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.1.2"},{"url":"http://public2.vulnerablecode.io/api/packages/291178?format=json","purl":"pkg:composer/phpunit/phpunit@5.1.3","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"},{"vulnerability":"VCID-ks7b-f17t-dfd4"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.1.3"},{"url":"http://public2.vulnerablecode.io/api/packages/291179?format=json","purl":"pkg:composer/phpunit/phpunit@5.1.4","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"},{"vulnerability":"VCID-ks7b-f17t-dfd4"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.1.4"},{"url":"http://public2.vulnerablecode.io/api/packages/291180?format=json","purl":"pkg:composer/phpunit/phpunit@5.1.5","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"},{"vulnerability":"VCID-ks7b-f17t-dfd4"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.1.5"},{"url":"http://public2.vulnerablecode.io/api/packages/291181?format=json","purl":"pkg:composer/phpunit/phpunit@5.1.6","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"},{"vulnerability":"VCID-ks7b-f17t-dfd4"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.1.6"},{"url":"http://public2.vulnerablecode.io/api/packages/291182?format=json","purl":"pkg:composer/phpunit/phpunit@5.1.7","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"},{"vulnerability":"VCID-ks7b-f17t-dfd4"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.1.7"},{"url":"http://public2.vulnerablecode.io/api/packages/291183?format=json","purl":"pkg:composer/phpunit/phpunit@5.2.0","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"},{"vulnerability":"VCID-ks7b-f17t-dfd4"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.2.0"},{"url":"http://public2.vulnerablecode.io/api/packages/291184?format=json","purl":"pkg:composer/phpunit/phpunit@5.2.1","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"},{"vulnerability":"VCID-ks7b-f17t-dfd4"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.2.1"},{"url":"http://public2.vulnerablecode.io/api/packages/291185?format=json","purl":"pkg:composer/phpunit/phpunit@5.2.2","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"},{"vulnerability":"VCID-ks7b-f17t-dfd4"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.2.2"},{"url":"http://public2.vulnerablecode.io/api/packages/291186?format=json","purl":"pkg:composer/phpunit/phpunit@5.2.3","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"},{"vulnerability":"VCID-ks7b-f17t-dfd4"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.2.3"},{"url":"http://public2.vulnerablecode.io/api/packages/291187?format=json","purl":"pkg:composer/phpunit/phpunit@5.2.4","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"},{"vulnerability":"VCID-ks7b-f17t-dfd4"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.2.4"},{"url":"http://public2.vulnerablecode.io/api/packages/291188?format=json","purl":"pkg:composer/phpunit/phpunit@5.2.5","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"},{"vulnerability":"VCID-ks7b-f17t-dfd4"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.2.5"},{"url":"http://public2.vulnerablecode.io/api/packages/291189?format=json","purl":"pkg:composer/phpunit/phpunit@5.2.6","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"},{"vulnerability":"VCID-ks7b-f17t-dfd4"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.2.6"},{"url":"http://public2.vulnerablecode.io/api/packages/291190?format=json","purl":"pkg:composer/phpunit/phpunit@5.2.7","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"},{"vulnerability":"VCID-ks7b-f17t-dfd4"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.2.7"},{"url":"http://public2.vulnerablecode.io/api/packages/291191?format=json","purl":"pkg:composer/phpunit/phpunit@5.2.8","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"},{"vulnerability":"VCID-ks7b-f17t-dfd4"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.2.8"},{"url":"http://public2.vulnerablecode.io/api/packages/291192?format=json","purl":"pkg:composer/phpunit/phpunit@5.2.9","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"},{"vulnerability":"VCID-ks7b-f17t-dfd4"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.2.9"},{"url":"http://public2.vulnerablecode.io/api/packages/291193?format=json","purl":"pkg:composer/phpunit/phpunit@5.2.10","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"},{"vulnerability":"VCID-ks7b-f17t-dfd4"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.2.10"},{"url":"http://public2.vulnerablecode.io/api/packages/291194?format=json","purl":"pkg:composer/phpunit/phpunit@5.2.11","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"},{"vulnerability":"VCID-ks7b-f17t-dfd4"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.2.11"},{"url":"http://public2.vulnerablecode.io/api/packages/291195?format=json","purl":"pkg:composer/phpunit/phpunit@5.2.12","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"},{"vulnerability":"VCID-ks7b-f17t-dfd4"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.2.12"},{"url":"http://public2.vulnerablecode.io/api/packages/291196?format=json","purl":"pkg:composer/phpunit/phpunit@5.3.0","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"},{"vulnerability":"VCID-ks7b-f17t-dfd4"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.3.0"},{"url":"http://public2.vulnerablecode.io/api/packages/291197?format=json","purl":"pkg:composer/phpunit/phpunit@5.3.1","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"},{"vulnerability":"VCID-ks7b-f17t-dfd4"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.3.1"},{"url":"http://public2.vulnerablecode.io/api/packages/291198?format=json","purl":"pkg:composer/phpunit/phpunit@5.3.2","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"},{"vulnerability":"VCID-ks7b-f17t-dfd4"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.3.2"},{"url":"http://public2.vulnerablecode.io/api/packages/291199?format=json","purl":"pkg:composer/phpunit/phpunit@5.3.3","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"},{"vulnerability":"VCID-ks7b-f17t-dfd4"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.3.3"},{"url":"http://public2.vulnerablecode.io/api/packages/291200?format=json","purl":"pkg:composer/phpunit/phpunit@5.3.4","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"},{"vulnerability":"VCID-ks7b-f17t-dfd4"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.3.4"},{"url":"http://public2.vulnerablecode.io/api/packages/291201?format=json","purl":"pkg:composer/phpunit/phpunit@5.3.5","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"},{"vulnerability":"VCID-ks7b-f17t-dfd4"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.3.5"},{"url":"http://public2.vulnerablecode.io/api/packages/291202?format=json","purl":"pkg:composer/phpunit/phpunit@5.4.0","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"},{"vulnerability":"VCID-ks7b-f17t-dfd4"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.4.0"},{"url":"http://public2.vulnerablecode.io/api/packages/291203?format=json","purl":"pkg:composer/phpunit/phpunit@5.4.1","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"},{"vulnerability":"VCID-ks7b-f17t-dfd4"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.4.1"},{"url":"http://public2.vulnerablecode.io/api/packages/291204?format=json","purl":"pkg:composer/phpunit/phpunit@5.4.2","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"},{"vulnerability":"VCID-ks7b-f17t-dfd4"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.4.2"},{"url":"http://public2.vulnerablecode.io/api/packages/291205?format=json","purl":"pkg:composer/phpunit/phpunit@5.4.3","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"},{"vulnerability":"VCID-ks7b-f17t-dfd4"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.4.3"},{"url":"http://public2.vulnerablecode.io/api/packages/291206?format=json","purl":"pkg:composer/phpunit/phpunit@5.4.4","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"},{"vulnerability":"VCID-ks7b-f17t-dfd4"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.4.4"},{"url":"http://public2.vulnerablecode.io/api/packages/291207?format=json","purl":"pkg:composer/phpunit/phpunit@5.4.5","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"},{"vulnerability":"VCID-ks7b-f17t-dfd4"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.4.5"},{"url":"http://public2.vulnerablecode.io/api/packages/291208?format=json","purl":"pkg:composer/phpunit/phpunit@5.4.6","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"},{"vulnerability":"VCID-ks7b-f17t-dfd4"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.4.6"},{"url":"http://public2.vulnerablecode.io/api/packages/291209?format=json","purl":"pkg:composer/phpunit/phpunit@5.4.7","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"},{"vulnerability":"VCID-ks7b-f17t-dfd4"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.4.7"},{"url":"http://public2.vulnerablecode.io/api/packages/291210?format=json","purl":"pkg:composer/phpunit/phpunit@5.4.8","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"},{"vulnerability":"VCID-ks7b-f17t-dfd4"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.4.8"},{"url":"http://public2.vulnerablecode.io/api/packages/291211?format=json","purl":"pkg:composer/phpunit/phpunit@5.5.0","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"},{"vulnerability":"VCID-ks7b-f17t-dfd4"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.5.0"},{"url":"http://public2.vulnerablecode.io/api/packages/291212?format=json","purl":"pkg:composer/phpunit/phpunit@5.5.1","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"},{"vulnerability":"VCID-ks7b-f17t-dfd4"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.5.1"},{"url":"http://public2.vulnerablecode.io/api/packages/291213?format=json","purl":"pkg:composer/phpunit/phpunit@5.5.2","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"},{"vulnerability":"VCID-ks7b-f17t-dfd4"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.5.2"},{"url":"http://public2.vulnerablecode.io/api/packages/291214?format=json","purl":"pkg:composer/phpunit/phpunit@5.5.3","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"},{"vulnerability":"VCID-ks7b-f17t-dfd4"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.5.3"},{"url":"http://public2.vulnerablecode.io/api/packages/291215?format=json","purl":"pkg:composer/phpunit/phpunit@5.5.4","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"},{"vulnerability":"VCID-ks7b-f17t-dfd4"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.5.4"},{"url":"http://public2.vulnerablecode.io/api/packages/291216?format=json","purl":"pkg:composer/phpunit/phpunit@5.5.5","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"},{"vulnerability":"VCID-ks7b-f17t-dfd4"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.5.5"},{"url":"http://public2.vulnerablecode.io/api/packages/291217?format=json","purl":"pkg:composer/phpunit/phpunit@5.5.6","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"},{"vulnerability":"VCID-ks7b-f17t-dfd4"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.5.6"},{"url":"http://public2.vulnerablecode.io/api/packages/291218?format=json","purl":"pkg:composer/phpunit/phpunit@5.5.7","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"},{"vulnerability":"VCID-ks7b-f17t-dfd4"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.5.7"},{"url":"http://public2.vulnerablecode.io/api/packages/291219?format=json","purl":"pkg:composer/phpunit/phpunit@5.6.0","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"},{"vulnerability":"VCID-ks7b-f17t-dfd4"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.6.0"},{"url":"http://public2.vulnerablecode.io/api/packages/291220?format=json","purl":"pkg:composer/phpunit/phpunit@5.6.1","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"},{"vulnerability":"VCID-ks7b-f17t-dfd4"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.6.1"},{"url":"http://public2.vulnerablecode.io/api/packages/291221?format=json","purl":"pkg:composer/phpunit/phpunit@5.6.2","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"},{"vulnerability":"VCID-ks7b-f17t-dfd4"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.6.2"},{"url":"http://public2.vulnerablecode.io/api/packages/48272?format=json","purl":"pkg:composer/phpunit/phpunit@5.6.3","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.6.3"},{"url":"http://public2.vulnerablecode.io/api/packages/898253?format=json","purl":"pkg:composer/phpunit/phpunit@5.6.4","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.6.4"},{"url":"http://public2.vulnerablecode.io/api/packages/898254?format=json","purl":"pkg:composer/phpunit/phpunit@5.6.5","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.6.5"},{"url":"http://public2.vulnerablecode.io/api/packages/898255?format=json","purl":"pkg:composer/phpunit/phpunit@5.6.6","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.6.6"},{"url":"http://public2.vulnerablecode.io/api/packages/898256?format=json","purl":"pkg:composer/phpunit/phpunit@5.6.7","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.6.7"},{"url":"http://public2.vulnerablecode.io/api/packages/898257?format=json","purl":"pkg:composer/phpunit/phpunit@5.6.8","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.6.8"},{"url":"http://public2.vulnerablecode.io/api/packages/898258?format=json","purl":"pkg:composer/phpunit/phpunit@5.7.0","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.7.0"},{"url":"http://public2.vulnerablecode.io/api/packages/898259?format=json","purl":"pkg:composer/phpunit/phpunit@5.7.1","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.7.1"},{"url":"http://public2.vulnerablecode.io/api/packages/898260?format=json","purl":"pkg:composer/phpunit/phpunit@5.7.2","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.7.2"},{"url":"http://public2.vulnerablecode.io/api/packages/898261?format=json","purl":"pkg:composer/phpunit/phpunit@5.7.3","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.7.3"},{"url":"http://public2.vulnerablecode.io/api/packages/898262?format=json","purl":"pkg:composer/phpunit/phpunit@5.7.4","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.7.4"},{"url":"http://public2.vulnerablecode.io/api/packages/898263?format=json","purl":"pkg:composer/phpunit/phpunit@5.7.5","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.7.5"},{"url":"http://public2.vulnerablecode.io/api/packages/898264?format=json","purl":"pkg:composer/phpunit/phpunit@5.7.6","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.7.6"},{"url":"http://public2.vulnerablecode.io/api/packages/898265?format=json","purl":"pkg:composer/phpunit/phpunit@5.7.7","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.7.7"},{"url":"http://public2.vulnerablecode.io/api/packages/898266?format=json","purl":"pkg:composer/phpunit/phpunit@5.7.8","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.7.8"},{"url":"http://public2.vulnerablecode.io/api/packages/898267?format=json","purl":"pkg:composer/phpunit/phpunit@5.7.9","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.7.9"},{"url":"http://public2.vulnerablecode.io/api/packages/898268?format=json","purl":"pkg:composer/phpunit/phpunit@5.7.10","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.7.10"},{"url":"http://public2.vulnerablecode.io/api/packages/898269?format=json","purl":"pkg:composer/phpunit/phpunit@5.7.11","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.7.11"},{"url":"http://public2.vulnerablecode.io/api/packages/898270?format=json","purl":"pkg:composer/phpunit/phpunit@5.7.12","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.7.12"},{"url":"http://public2.vulnerablecode.io/api/packages/898271?format=json","purl":"pkg:composer/phpunit/phpunit@5.7.13","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.7.13"},{"url":"http://public2.vulnerablecode.io/api/packages/898272?format=json","purl":"pkg:composer/phpunit/phpunit@5.7.14","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.7.14"},{"url":"http://public2.vulnerablecode.io/api/packages/898273?format=json","purl":"pkg:composer/phpunit/phpunit@5.7.15","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.7.15"},{"url":"http://public2.vulnerablecode.io/api/packages/898274?format=json","purl":"pkg:composer/phpunit/phpunit@5.7.16","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.7.16"},{"url":"http://public2.vulnerablecode.io/api/packages/898275?format=json","purl":"pkg:composer/phpunit/phpunit@5.7.17","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.7.17"},{"url":"http://public2.vulnerablecode.io/api/packages/898276?format=json","purl":"pkg:composer/phpunit/phpunit@5.7.18","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.7.18"},{"url":"http://public2.vulnerablecode.io/api/packages/898277?format=json","purl":"pkg:composer/phpunit/phpunit@5.7.19","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.7.19"},{"url":"http://public2.vulnerablecode.io/api/packages/898278?format=json","purl":"pkg:composer/phpunit/phpunit@5.7.20","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.7.20"},{"url":"http://public2.vulnerablecode.io/api/packages/898279?format=json","purl":"pkg:composer/phpunit/phpunit@5.7.21","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.7.21"},{"url":"http://public2.vulnerablecode.io/api/packages/898280?format=json","purl":"pkg:composer/phpunit/phpunit@5.7.22","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.7.22"},{"url":"http://public2.vulnerablecode.io/api/packages/898281?format=json","purl":"pkg:composer/phpunit/phpunit@5.7.23","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.7.23"},{"url":"http://public2.vulnerablecode.io/api/packages/898282?format=json","purl":"pkg:composer/phpunit/phpunit@5.7.24","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.7.24"},{"url":"http://public2.vulnerablecode.io/api/packages/898283?format=json","purl":"pkg:composer/phpunit/phpunit@5.7.25","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.7.25"},{"url":"http://public2.vulnerablecode.io/api/packages/898284?format=json","purl":"pkg:composer/phpunit/phpunit@5.7.26","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.7.26"},{"url":"http://public2.vulnerablecode.io/api/packages/898285?format=json","purl":"pkg:composer/phpunit/phpunit@5.7.27","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.7.27"},{"url":"http://public2.vulnerablecode.io/api/packages/898286?format=json","purl":"pkg:composer/phpunit/phpunit@6.0.0","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@6.0.0"},{"url":"http://public2.vulnerablecode.io/api/packages/898287?format=json","purl":"pkg:composer/phpunit/phpunit@6.0.1","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@6.0.1"},{"url":"http://public2.vulnerablecode.io/api/packages/898288?format=json","purl":"pkg:composer/phpunit/phpunit@6.0.2","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@6.0.2"},{"url":"http://public2.vulnerablecode.io/api/packages/898289?format=json","purl":"pkg:composer/phpunit/phpunit@6.0.3","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@6.0.3"},{"url":"http://public2.vulnerablecode.io/api/packages/898290?format=json","purl":"pkg:composer/phpunit/phpunit@6.0.4","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@6.0.4"},{"url":"http://public2.vulnerablecode.io/api/packages/898291?format=json","purl":"pkg:composer/phpunit/phpunit@6.0.5","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@6.0.5"},{"url":"http://public2.vulnerablecode.io/api/packages/898292?format=json","purl":"pkg:composer/phpunit/phpunit@6.0.6","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@6.0.6"},{"url":"http://public2.vulnerablecode.io/api/packages/898293?format=json","purl":"pkg:composer/phpunit/phpunit@6.0.7","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@6.0.7"},{"url":"http://public2.vulnerablecode.io/api/packages/898294?format=json","purl":"pkg:composer/phpunit/phpunit@6.0.8","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@6.0.8"},{"url":"http://public2.vulnerablecode.io/api/packages/898295?format=json","purl":"pkg:composer/phpunit/phpunit@6.0.9","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@6.0.9"},{"url":"http://public2.vulnerablecode.io/api/packages/898296?format=json","purl":"pkg:composer/phpunit/phpunit@6.0.10","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@6.0.10"},{"url":"http://public2.vulnerablecode.io/api/packages/898297?format=json","purl":"pkg:composer/phpunit/phpunit@6.0.11","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@6.0.11"},{"url":"http://public2.vulnerablecode.io/api/packages/898298?format=json","purl":"pkg:composer/phpunit/phpunit@6.0.12","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@6.0.12"},{"url":"http://public2.vulnerablecode.io/api/packages/898299?format=json","purl":"pkg:composer/phpunit/phpunit@6.0.13","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@6.0.13"},{"url":"http://public2.vulnerablecode.io/api/packages/898300?format=json","purl":"pkg:composer/phpunit/phpunit@6.1.0","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@6.1.0"},{"url":"http://public2.vulnerablecode.io/api/packages/898301?format=json","purl":"pkg:composer/phpunit/phpunit@6.1.1","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@6.1.1"},{"url":"http://public2.vulnerablecode.io/api/packages/898302?format=json","purl":"pkg:composer/phpunit/phpunit@6.1.2","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@6.1.2"},{"url":"http://public2.vulnerablecode.io/api/packages/898303?format=json","purl":"pkg:composer/phpunit/phpunit@6.1.3","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@6.1.3"},{"url":"http://public2.vulnerablecode.io/api/packages/898304?format=json","purl":"pkg:composer/phpunit/phpunit@6.1.4","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@6.1.4"},{"url":"http://public2.vulnerablecode.io/api/packages/898305?format=json","purl":"pkg:composer/phpunit/phpunit@6.2.0","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@6.2.0"},{"url":"http://public2.vulnerablecode.io/api/packages/898306?format=json","purl":"pkg:composer/phpunit/phpunit@6.2.1","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@6.2.1"},{"url":"http://public2.vulnerablecode.io/api/packages/898307?format=json","purl":"pkg:composer/phpunit/phpunit@6.2.2","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@6.2.2"},{"url":"http://public2.vulnerablecode.io/api/packages/898308?format=json","purl":"pkg:composer/phpunit/phpunit@6.2.3","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@6.2.3"},{"url":"http://public2.vulnerablecode.io/api/packages/898309?format=json","purl":"pkg:composer/phpunit/phpunit@6.2.4","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@6.2.4"},{"url":"http://public2.vulnerablecode.io/api/packages/898310?format=json","purl":"pkg:composer/phpunit/phpunit@6.3.0","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@6.3.0"},{"url":"http://public2.vulnerablecode.io/api/packages/898311?format=json","purl":"pkg:composer/phpunit/phpunit@6.3.1","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@6.3.1"},{"url":"http://public2.vulnerablecode.io/api/packages/898312?format=json","purl":"pkg:composer/phpunit/phpunit@6.4.0","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@6.4.0"},{"url":"http://public2.vulnerablecode.io/api/packages/898313?format=json","purl":"pkg:composer/phpunit/phpunit@6.4.1","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@6.4.1"},{"url":"http://public2.vulnerablecode.io/api/packages/898314?format=json","purl":"pkg:composer/phpunit/phpunit@6.4.2","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@6.4.2"},{"url":"http://public2.vulnerablecode.io/api/packages/898315?format=json","purl":"pkg:composer/phpunit/phpunit@6.4.3","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@6.4.3"},{"url":"http://public2.vulnerablecode.io/api/packages/898316?format=json","purl":"pkg:composer/phpunit/phpunit@6.4.4","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@6.4.4"},{"url":"http://public2.vulnerablecode.io/api/packages/898317?format=json","purl":"pkg:composer/phpunit/phpunit@6.5.0","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@6.5.0"},{"url":"http://public2.vulnerablecode.io/api/packages/898318?format=json","purl":"pkg:composer/phpunit/phpunit@6.5.1","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@6.5.1"},{"url":"http://public2.vulnerablecode.io/api/packages/898319?format=json","purl":"pkg:composer/phpunit/phpunit@6.5.2","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@6.5.2"},{"url":"http://public2.vulnerablecode.io/api/packages/898320?format=json","purl":"pkg:composer/phpunit/phpunit@6.5.3","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@6.5.3"},{"url":"http://public2.vulnerablecode.io/api/packages/898321?format=json","purl":"pkg:composer/phpunit/phpunit@6.5.4","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@6.5.4"},{"url":"http://public2.vulnerablecode.io/api/packages/898322?format=json","purl":"pkg:composer/phpunit/phpunit@6.5.5","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@6.5.5"},{"url":"http://public2.vulnerablecode.io/api/packages/898323?format=json","purl":"pkg:composer/phpunit/phpunit@6.5.6","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@6.5.6"},{"url":"http://public2.vulnerablecode.io/api/packages/898324?format=json","purl":"pkg:composer/phpunit/phpunit@6.5.7","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@6.5.7"},{"url":"http://public2.vulnerablecode.io/api/packages/898325?format=json","purl":"pkg:composer/phpunit/phpunit@6.5.8","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@6.5.8"},{"url":"http://public2.vulnerablecode.io/api/packages/898326?format=json","purl":"pkg:composer/phpunit/phpunit@6.5.9","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@6.5.9"},{"url":"http://public2.vulnerablecode.io/api/packages/898327?format=json","purl":"pkg:composer/phpunit/phpunit@6.5.10","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@6.5.10"},{"url":"http://public2.vulnerablecode.io/api/packages/898328?format=json","purl":"pkg:composer/phpunit/phpunit@6.5.11","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@6.5.11"},{"url":"http://public2.vulnerablecode.io/api/packages/898329?format=json","purl":"pkg:composer/phpunit/phpunit@6.5.12","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@6.5.12"},{"url":"http://public2.vulnerablecode.io/api/packages/898330?format=json","purl":"pkg:composer/phpunit/phpunit@6.5.13","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@6.5.13"},{"url":"http://public2.vulnerablecode.io/api/packages/898331?format=json","purl":"pkg:composer/phpunit/phpunit@6.5.14","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@6.5.14"},{"url":"http://public2.vulnerablecode.io/api/packages/898332?format=json","purl":"pkg:composer/phpunit/phpunit@7.0.0","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@7.0.0"},{"url":"http://public2.vulnerablecode.io/api/packages/898333?format=json","purl":"pkg:composer/phpunit/phpunit@7.0.1","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@7.0.1"},{"url":"http://public2.vulnerablecode.io/api/packages/898334?format=json","purl":"pkg:composer/phpunit/phpunit@7.0.2","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@7.0.2"},{"url":"http://public2.vulnerablecode.io/api/packages/898335?format=json","purl":"pkg:composer/phpunit/phpunit@7.0.3","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@7.0.3"},{"url":"http://public2.vulnerablecode.io/api/packages/898336?format=json","purl":"pkg:composer/phpunit/phpunit@7.1.0","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@7.1.0"},{"url":"http://public2.vulnerablecode.io/api/packages/898337?format=json","purl":"pkg:composer/phpunit/phpunit@7.1.1","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@7.1.1"},{"url":"http://public2.vulnerablecode.io/api/packages/898338?format=json","purl":"pkg:composer/phpunit/phpunit@7.1.2","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@7.1.2"},{"url":"http://public2.vulnerablecode.io/api/packages/898339?format=json","purl":"pkg:composer/phpunit/phpunit@7.1.3","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@7.1.3"},{"url":"http://public2.vulnerablecode.io/api/packages/898340?format=json","purl":"pkg:composer/phpunit/phpunit@7.1.4","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@7.1.4"},{"url":"http://public2.vulnerablecode.io/api/packages/898341?format=json","purl":"pkg:composer/phpunit/phpunit@7.1.5","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@7.1.5"},{"url":"http://public2.vulnerablecode.io/api/packages/898342?format=json","purl":"pkg:composer/phpunit/phpunit@7.2.0","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@7.2.0"},{"url":"http://public2.vulnerablecode.io/api/packages/898343?format=json","purl":"pkg:composer/phpunit/phpunit@7.2.1","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@7.2.1"},{"url":"http://public2.vulnerablecode.io/api/packages/898344?format=json","purl":"pkg:composer/phpunit/phpunit@7.2.2","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@7.2.2"},{"url":"http://public2.vulnerablecode.io/api/packages/898345?format=json","purl":"pkg:composer/phpunit/phpunit@7.2.3","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@7.2.3"},{"url":"http://public2.vulnerablecode.io/api/packages/898346?format=json","purl":"pkg:composer/phpunit/phpunit@7.2.4","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@7.2.4"},{"url":"http://public2.vulnerablecode.io/api/packages/898347?format=json","purl":"pkg:composer/phpunit/phpunit@7.2.5","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@7.2.5"},{"url":"http://public2.vulnerablecode.io/api/packages/898348?format=json","purl":"pkg:composer/phpunit/phpunit@7.2.6","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@7.2.6"},{"url":"http://public2.vulnerablecode.io/api/packages/898349?format=json","purl":"pkg:composer/phpunit/phpunit@7.2.7","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@7.2.7"},{"url":"http://public2.vulnerablecode.io/api/packages/898350?format=json","purl":"pkg:composer/phpunit/phpunit@7.3.0","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@7.3.0"},{"url":"http://public2.vulnerablecode.io/api/packages/898351?format=json","purl":"pkg:composer/phpunit/phpunit@7.3.1","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@7.3.1"},{"url":"http://public2.vulnerablecode.io/api/packages/898352?format=json","purl":"pkg:composer/phpunit/phpunit@7.3.2","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@7.3.2"},{"url":"http://public2.vulnerablecode.io/api/packages/898353?format=json","purl":"pkg:composer/phpunit/phpunit@7.3.3","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@7.3.3"},{"url":"http://public2.vulnerablecode.io/api/packages/898354?format=json","purl":"pkg:composer/phpunit/phpunit@7.3.4","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@7.3.4"},{"url":"http://public2.vulnerablecode.io/api/packages/898355?format=json","purl":"pkg:composer/phpunit/phpunit@7.3.5","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@7.3.5"},{"url":"http://public2.vulnerablecode.io/api/packages/898356?format=json","purl":"pkg:composer/phpunit/phpunit@7.4.0","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@7.4.0"},{"url":"http://public2.vulnerablecode.io/api/packages/898357?format=json","purl":"pkg:composer/phpunit/phpunit@7.4.1","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@7.4.1"},{"url":"http://public2.vulnerablecode.io/api/packages/898358?format=json","purl":"pkg:composer/phpunit/phpunit@7.4.2","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@7.4.2"},{"url":"http://public2.vulnerablecode.io/api/packages/898359?format=json","purl":"pkg:composer/phpunit/phpunit@7.4.3","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@7.4.3"},{"url":"http://public2.vulnerablecode.io/api/packages/898360?format=json","purl":"pkg:composer/phpunit/phpunit@7.4.4","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@7.4.4"},{"url":"http://public2.vulnerablecode.io/api/packages/898361?format=json","purl":"pkg:composer/phpunit/phpunit@7.4.5","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@7.4.5"},{"url":"http://public2.vulnerablecode.io/api/packages/898362?format=json","purl":"pkg:composer/phpunit/phpunit@7.5.0","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@7.5.0"},{"url":"http://public2.vulnerablecode.io/api/packages/898363?format=json","purl":"pkg:composer/phpunit/phpunit@7.5.1","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@7.5.1"},{"url":"http://public2.vulnerablecode.io/api/packages/898364?format=json","purl":"pkg:composer/phpunit/phpunit@7.5.2","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@7.5.2"},{"url":"http://public2.vulnerablecode.io/api/packages/898365?format=json","purl":"pkg:composer/phpunit/phpunit@7.5.3","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@7.5.3"},{"url":"http://public2.vulnerablecode.io/api/packages/898366?format=json","purl":"pkg:composer/phpunit/phpunit@7.5.4","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@7.5.4"},{"url":"http://public2.vulnerablecode.io/api/packages/898367?format=json","purl":"pkg:composer/phpunit/phpunit@7.5.5","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@7.5.5"},{"url":"http://public2.vulnerablecode.io/api/packages/898368?format=json","purl":"pkg:composer/phpunit/phpunit@7.5.6","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@7.5.6"},{"url":"http://public2.vulnerablecode.io/api/packages/898369?format=json","purl":"pkg:composer/phpunit/phpunit@7.5.7","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@7.5.7"},{"url":"http://public2.vulnerablecode.io/api/packages/898370?format=json","purl":"pkg:composer/phpunit/phpunit@7.5.8","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@7.5.8"},{"url":"http://public2.vulnerablecode.io/api/packages/898371?format=json","purl":"pkg:composer/phpunit/phpunit@7.5.9","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@7.5.9"},{"url":"http://public2.vulnerablecode.io/api/packages/898372?format=json","purl":"pkg:composer/phpunit/phpunit@7.5.10","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@7.5.10"},{"url":"http://public2.vulnerablecode.io/api/packages/898373?format=json","purl":"pkg:composer/phpunit/phpunit@7.5.11","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@7.5.11"},{"url":"http://public2.vulnerablecode.io/api/packages/898374?format=json","purl":"pkg:composer/phpunit/phpunit@7.5.12","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@7.5.12"},{"url":"http://public2.vulnerablecode.io/api/packages/898375?format=json","purl":"pkg:composer/phpunit/phpunit@7.5.13","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@7.5.13"},{"url":"http://public2.vulnerablecode.io/api/packages/898376?format=json","purl":"pkg:composer/phpunit/phpunit@7.5.14","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@7.5.14"},{"url":"http://public2.vulnerablecode.io/api/packages/898377?format=json","purl":"pkg:composer/phpunit/phpunit@7.5.15","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@7.5.15"},{"url":"http://public2.vulnerablecode.io/api/packages/898378?format=json","purl":"pkg:composer/phpunit/phpunit@7.5.16","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@7.5.16"},{"url":"http://public2.vulnerablecode.io/api/packages/898379?format=json","purl":"pkg:composer/phpunit/phpunit@7.5.17","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@7.5.17"},{"url":"http://public2.vulnerablecode.io/api/packages/898380?format=json","purl":"pkg:composer/phpunit/phpunit@7.5.18","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@7.5.18"},{"url":"http://public2.vulnerablecode.io/api/packages/898381?format=json","purl":"pkg:composer/phpunit/phpunit@7.5.19","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@7.5.19"},{"url":"http://public2.vulnerablecode.io/api/packages/898382?format=json","purl":"pkg:composer/phpunit/phpunit@7.5.20","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@7.5.20"},{"url":"http://public2.vulnerablecode.io/api/packages/898383?format=json","purl":"pkg:composer/phpunit/phpunit@8.0.0","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.0.0"},{"url":"http://public2.vulnerablecode.io/api/packages/898384?format=json","purl":"pkg:composer/phpunit/phpunit@8.0.1","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.0.1"},{"url":"http://public2.vulnerablecode.io/api/packages/898385?format=json","purl":"pkg:composer/phpunit/phpunit@8.0.2","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.0.2"},{"url":"http://public2.vulnerablecode.io/api/packages/898386?format=json","purl":"pkg:composer/phpunit/phpunit@8.0.3","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.0.3"},{"url":"http://public2.vulnerablecode.io/api/packages/898387?format=json","purl":"pkg:composer/phpunit/phpunit@8.0.4","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.0.4"},{"url":"http://public2.vulnerablecode.io/api/packages/898388?format=json","purl":"pkg:composer/phpunit/phpunit@8.0.5","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.0.5"},{"url":"http://public2.vulnerablecode.io/api/packages/898389?format=json","purl":"pkg:composer/phpunit/phpunit@8.0.6","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.0.6"},{"url":"http://public2.vulnerablecode.io/api/packages/898390?format=json","purl":"pkg:composer/phpunit/phpunit@8.1.0","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.1.0"},{"url":"http://public2.vulnerablecode.io/api/packages/898391?format=json","purl":"pkg:composer/phpunit/phpunit@8.1.1","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.1.1"},{"url":"http://public2.vulnerablecode.io/api/packages/898392?format=json","purl":"pkg:composer/phpunit/phpunit@8.1.2","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.1.2"},{"url":"http://public2.vulnerablecode.io/api/packages/898393?format=json","purl":"pkg:composer/phpunit/phpunit@8.1.3","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.1.3"},{"url":"http://public2.vulnerablecode.io/api/packages/898394?format=json","purl":"pkg:composer/phpunit/phpunit@8.1.4","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.1.4"},{"url":"http://public2.vulnerablecode.io/api/packages/898395?format=json","purl":"pkg:composer/phpunit/phpunit@8.1.5","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.1.5"},{"url":"http://public2.vulnerablecode.io/api/packages/898396?format=json","purl":"pkg:composer/phpunit/phpunit@8.1.6","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.1.6"},{"url":"http://public2.vulnerablecode.io/api/packages/898397?format=json","purl":"pkg:composer/phpunit/phpunit@8.2.0","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.2.0"},{"url":"http://public2.vulnerablecode.io/api/packages/898398?format=json","purl":"pkg:composer/phpunit/phpunit@8.2.1","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.2.1"},{"url":"http://public2.vulnerablecode.io/api/packages/898399?format=json","purl":"pkg:composer/phpunit/phpunit@8.2.2","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.2.2"},{"url":"http://public2.vulnerablecode.io/api/packages/898400?format=json","purl":"pkg:composer/phpunit/phpunit@8.2.3","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.2.3"},{"url":"http://public2.vulnerablecode.io/api/packages/898401?format=json","purl":"pkg:composer/phpunit/phpunit@8.2.4","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.2.4"},{"url":"http://public2.vulnerablecode.io/api/packages/898402?format=json","purl":"pkg:composer/phpunit/phpunit@8.2.5","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.2.5"},{"url":"http://public2.vulnerablecode.io/api/packages/898403?format=json","purl":"pkg:composer/phpunit/phpunit@8.3.0","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.3.0"},{"url":"http://public2.vulnerablecode.io/api/packages/898404?format=json","purl":"pkg:composer/phpunit/phpunit@8.3.1","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.3.1"},{"url":"http://public2.vulnerablecode.io/api/packages/898405?format=json","purl":"pkg:composer/phpunit/phpunit@8.3.2","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.3.2"},{"url":"http://public2.vulnerablecode.io/api/packages/898406?format=json","purl":"pkg:composer/phpunit/phpunit@8.3.3","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.3.3"},{"url":"http://public2.vulnerablecode.io/api/packages/898407?format=json","purl":"pkg:composer/phpunit/phpunit@8.3.4","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.3.4"},{"url":"http://public2.vulnerablecode.io/api/packages/898408?format=json","purl":"pkg:composer/phpunit/phpunit@8.3.5","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.3.5"},{"url":"http://public2.vulnerablecode.io/api/packages/898409?format=json","purl":"pkg:composer/phpunit/phpunit@8.4.0","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.4.0"},{"url":"http://public2.vulnerablecode.io/api/packages/898410?format=json","purl":"pkg:composer/phpunit/phpunit@8.4.1","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.4.1"},{"url":"http://public2.vulnerablecode.io/api/packages/898411?format=json","purl":"pkg:composer/phpunit/phpunit@8.4.2","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.4.2"},{"url":"http://public2.vulnerablecode.io/api/packages/898412?format=json","purl":"pkg:composer/phpunit/phpunit@8.4.3","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.4.3"},{"url":"http://public2.vulnerablecode.io/api/packages/898413?format=json","purl":"pkg:composer/phpunit/phpunit@8.5.0","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.5.0"},{"url":"http://public2.vulnerablecode.io/api/packages/898414?format=json","purl":"pkg:composer/phpunit/phpunit@8.5.1","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.5.1"},{"url":"http://public2.vulnerablecode.io/api/packages/898415?format=json","purl":"pkg:composer/phpunit/phpunit@8.5.2","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.5.2"},{"url":"http://public2.vulnerablecode.io/api/packages/898416?format=json","purl":"pkg:composer/phpunit/phpunit@8.5.3","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.5.3"},{"url":"http://public2.vulnerablecode.io/api/packages/898417?format=json","purl":"pkg:composer/phpunit/phpunit@8.5.4","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.5.4"},{"url":"http://public2.vulnerablecode.io/api/packages/898418?format=json","purl":"pkg:composer/phpunit/phpunit@8.5.5","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.5.5"},{"url":"http://public2.vulnerablecode.io/api/packages/898419?format=json","purl":"pkg:composer/phpunit/phpunit@8.5.6","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.5.6"},{"url":"http://public2.vulnerablecode.io/api/packages/898420?format=json","purl":"pkg:composer/phpunit/phpunit@8.5.7","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.5.7"},{"url":"http://public2.vulnerablecode.io/api/packages/898421?format=json","purl":"pkg:composer/phpunit/phpunit@8.5.8","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.5.8"},{"url":"http://public2.vulnerablecode.io/api/packages/898422?format=json","purl":"pkg:composer/phpunit/phpunit@8.5.9","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.5.9"},{"url":"http://public2.vulnerablecode.io/api/packages/898423?format=json","purl":"pkg:composer/phpunit/phpunit@8.5.10","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.5.10"},{"url":"http://public2.vulnerablecode.io/api/packages/898424?format=json","purl":"pkg:composer/phpunit/phpunit@8.5.11","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.5.11"},{"url":"http://public2.vulnerablecode.io/api/packages/898425?format=json","purl":"pkg:composer/phpunit/phpunit@8.5.12","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.5.12"},{"url":"http://public2.vulnerablecode.io/api/packages/898426?format=json","purl":"pkg:composer/phpunit/phpunit@8.5.13","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.5.13"},{"url":"http://public2.vulnerablecode.io/api/packages/898427?format=json","purl":"pkg:composer/phpunit/phpunit@8.5.14","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.5.14"},{"url":"http://public2.vulnerablecode.io/api/packages/898428?format=json","purl":"pkg:composer/phpunit/phpunit@8.5.15","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.5.15"},{"url":"http://public2.vulnerablecode.io/api/packages/898429?format=json","purl":"pkg:composer/phpunit/phpunit@8.5.16","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.5.16"},{"url":"http://public2.vulnerablecode.io/api/packages/898430?format=json","purl":"pkg:composer/phpunit/phpunit@8.5.17","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.5.17"},{"url":"http://public2.vulnerablecode.io/api/packages/898431?format=json","purl":"pkg:composer/phpunit/phpunit@8.5.18","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.5.18"},{"url":"http://public2.vulnerablecode.io/api/packages/898432?format=json","purl":"pkg:composer/phpunit/phpunit@8.5.19","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.5.19"},{"url":"http://public2.vulnerablecode.io/api/packages/898433?format=json","purl":"pkg:composer/phpunit/phpunit@8.5.20","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.5.20"},{"url":"http://public2.vulnerablecode.io/api/packages/898434?format=json","purl":"pkg:composer/phpunit/phpunit@8.5.21","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.5.21"},{"url":"http://public2.vulnerablecode.io/api/packages/898435?format=json","purl":"pkg:composer/phpunit/phpunit@8.5.22","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.5.22"},{"url":"http://public2.vulnerablecode.io/api/packages/898436?format=json","purl":"pkg:composer/phpunit/phpunit@8.5.23","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.5.23"},{"url":"http://public2.vulnerablecode.io/api/packages/898437?format=json","purl":"pkg:composer/phpunit/phpunit@8.5.24","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.5.24"},{"url":"http://public2.vulnerablecode.io/api/packages/898438?format=json","purl":"pkg:composer/phpunit/phpunit@8.5.25","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.5.25"},{"url":"http://public2.vulnerablecode.io/api/packages/898439?format=json","purl":"pkg:composer/phpunit/phpunit@8.5.26","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.5.26"},{"url":"http://public2.vulnerablecode.io/api/packages/898440?format=json","purl":"pkg:composer/phpunit/phpunit@8.5.27","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.5.27"},{"url":"http://public2.vulnerablecode.io/api/packages/898441?format=json","purl":"pkg:composer/phpunit/phpunit@8.5.28","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.5.28"},{"url":"http://public2.vulnerablecode.io/api/packages/898442?format=json","purl":"pkg:composer/phpunit/phpunit@8.5.29","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.5.29"},{"url":"http://public2.vulnerablecode.io/api/packages/898443?format=json","purl":"pkg:composer/phpunit/phpunit@8.5.30","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.5.30"},{"url":"http://public2.vulnerablecode.io/api/packages/898444?format=json","purl":"pkg:composer/phpunit/phpunit@8.5.31","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.5.31"},{"url":"http://public2.vulnerablecode.io/api/packages/898445?format=json","purl":"pkg:composer/phpunit/phpunit@8.5.32","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.5.32"},{"url":"http://public2.vulnerablecode.io/api/packages/898446?format=json","purl":"pkg:composer/phpunit/phpunit@8.5.33","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.5.33"},{"url":"http://public2.vulnerablecode.io/api/packages/898447?format=json","purl":"pkg:composer/phpunit/phpunit@8.5.34","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.5.34"},{"url":"http://public2.vulnerablecode.io/api/packages/898448?format=json","purl":"pkg:composer/phpunit/phpunit@8.5.35","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.5.35"},{"url":"http://public2.vulnerablecode.io/api/packages/898449?format=json","purl":"pkg:composer/phpunit/phpunit@8.5.36","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.5.36"},{"url":"http://public2.vulnerablecode.io/api/packages/898450?format=json","purl":"pkg:composer/phpunit/phpunit@8.5.37","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.5.37"},{"url":"http://public2.vulnerablecode.io/api/packages/898451?format=json","purl":"pkg:composer/phpunit/phpunit@8.5.38","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.5.38"},{"url":"http://public2.vulnerablecode.io/api/packages/898452?format=json","purl":"pkg:composer/phpunit/phpunit@8.5.39","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.5.39"},{"url":"http://public2.vulnerablecode.io/api/packages/898453?format=json","purl":"pkg:composer/phpunit/phpunit@8.5.40","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.5.40"},{"url":"http://public2.vulnerablecode.io/api/packages/898454?format=json","purl":"pkg:composer/phpunit/phpunit@8.5.41","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.5.41"},{"url":"http://public2.vulnerablecode.io/api/packages/898455?format=json","purl":"pkg:composer/phpunit/phpunit@8.5.42","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.5.42"},{"url":"http://public2.vulnerablecode.io/api/packages/898456?format=json","purl":"pkg:composer/phpunit/phpunit@8.5.43","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.5.43"},{"url":"http://public2.vulnerablecode.io/api/packages/898457?format=json","purl":"pkg:composer/phpunit/phpunit@8.5.44","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.5.44"},{"url":"http://public2.vulnerablecode.io/api/packages/898458?format=json","purl":"pkg:composer/phpunit/phpunit@8.5.45","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.5.45"},{"url":"http://public2.vulnerablecode.io/api/packages/898459?format=json","purl":"pkg:composer/phpunit/phpunit@8.5.46","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.5.46"},{"url":"http://public2.vulnerablecode.io/api/packages/898460?format=json","purl":"pkg:composer/phpunit/phpunit@8.5.47","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.5.47"},{"url":"http://public2.vulnerablecode.io/api/packages/898461?format=json","purl":"pkg:composer/phpunit/phpunit@8.5.48","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.5.48"},{"url":"http://public2.vulnerablecode.io/api/packages/898462?format=json","purl":"pkg:composer/phpunit/phpunit@8.5.49","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.5.49"},{"url":"http://public2.vulnerablecode.io/api/packages/898463?format=json","purl":"pkg:composer/phpunit/phpunit@8.5.50","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.5.50"},{"url":"http://public2.vulnerablecode.io/api/packages/898464?format=json","purl":"pkg:composer/phpunit/phpunit@8.5.51","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.5.51"},{"url":"http://public2.vulnerablecode.io/api/packages/67544?format=json","purl":"pkg:composer/phpunit/phpunit@9.0.0","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.0.0"},{"url":"http://public2.vulnerablecode.io/api/packages/898465?format=json","purl":"pkg:composer/phpunit/phpunit@9.0.1","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.0.1"},{"url":"http://public2.vulnerablecode.io/api/packages/898466?format=json","purl":"pkg:composer/phpunit/phpunit@9.0.2","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.0.2"},{"url":"http://public2.vulnerablecode.io/api/packages/898467?format=json","purl":"pkg:composer/phpunit/phpunit@9.1.0","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.1.0"},{"url":"http://public2.vulnerablecode.io/api/packages/898468?format=json","purl":"pkg:composer/phpunit/phpunit@9.1.1","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.1.1"},{"url":"http://public2.vulnerablecode.io/api/packages/898469?format=json","purl":"pkg:composer/phpunit/phpunit@9.1.2","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.1.2"},{"url":"http://public2.vulnerablecode.io/api/packages/898470?format=json","purl":"pkg:composer/phpunit/phpunit@9.1.3","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.1.3"},{"url":"http://public2.vulnerablecode.io/api/packages/898471?format=json","purl":"pkg:composer/phpunit/phpunit@9.1.4","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.1.4"},{"url":"http://public2.vulnerablecode.io/api/packages/898472?format=json","purl":"pkg:composer/phpunit/phpunit@9.1.5","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.1.5"},{"url":"http://public2.vulnerablecode.io/api/packages/898473?format=json","purl":"pkg:composer/phpunit/phpunit@9.2.0","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.2.0"},{"url":"http://public2.vulnerablecode.io/api/packages/898474?format=json","purl":"pkg:composer/phpunit/phpunit@9.2.1","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.2.1"},{"url":"http://public2.vulnerablecode.io/api/packages/898475?format=json","purl":"pkg:composer/phpunit/phpunit@9.2.2","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.2.2"},{"url":"http://public2.vulnerablecode.io/api/packages/898476?format=json","purl":"pkg:composer/phpunit/phpunit@9.2.3","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.2.3"},{"url":"http://public2.vulnerablecode.io/api/packages/898477?format=json","purl":"pkg:composer/phpunit/phpunit@9.2.4","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.2.4"},{"url":"http://public2.vulnerablecode.io/api/packages/898478?format=json","purl":"pkg:composer/phpunit/phpunit@9.2.5","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.2.5"},{"url":"http://public2.vulnerablecode.io/api/packages/898479?format=json","purl":"pkg:composer/phpunit/phpunit@9.2.6","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.2.6"},{"url":"http://public2.vulnerablecode.io/api/packages/898480?format=json","purl":"pkg:composer/phpunit/phpunit@9.3.0","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.3.0"},{"url":"http://public2.vulnerablecode.io/api/packages/898481?format=json","purl":"pkg:composer/phpunit/phpunit@9.3.1","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.3.1"},{"url":"http://public2.vulnerablecode.io/api/packages/898482?format=json","purl":"pkg:composer/phpunit/phpunit@9.3.2","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.3.2"},{"url":"http://public2.vulnerablecode.io/api/packages/898483?format=json","purl":"pkg:composer/phpunit/phpunit@9.3.3","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.3.3"},{"url":"http://public2.vulnerablecode.io/api/packages/898484?format=json","purl":"pkg:composer/phpunit/phpunit@9.3.4","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.3.4"},{"url":"http://public2.vulnerablecode.io/api/packages/898485?format=json","purl":"pkg:composer/phpunit/phpunit@9.3.5","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.3.5"},{"url":"http://public2.vulnerablecode.io/api/packages/898486?format=json","purl":"pkg:composer/phpunit/phpunit@9.3.6","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.3.6"},{"url":"http://public2.vulnerablecode.io/api/packages/898487?format=json","purl":"pkg:composer/phpunit/phpunit@9.3.7","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.3.7"},{"url":"http://public2.vulnerablecode.io/api/packages/898488?format=json","purl":"pkg:composer/phpunit/phpunit@9.3.8","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.3.8"},{"url":"http://public2.vulnerablecode.io/api/packages/898489?format=json","purl":"pkg:composer/phpunit/phpunit@9.3.9","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.3.9"},{"url":"http://public2.vulnerablecode.io/api/packages/898490?format=json","purl":"pkg:composer/phpunit/phpunit@9.3.10","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.3.10"},{"url":"http://public2.vulnerablecode.io/api/packages/898491?format=json","purl":"pkg:composer/phpunit/phpunit@9.3.11","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.3.11"},{"url":"http://public2.vulnerablecode.io/api/packages/898492?format=json","purl":"pkg:composer/phpunit/phpunit@9.4.0","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.4.0"},{"url":"http://public2.vulnerablecode.io/api/packages/898493?format=json","purl":"pkg:composer/phpunit/phpunit@9.4.1","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.4.1"},{"url":"http://public2.vulnerablecode.io/api/packages/898494?format=json","purl":"pkg:composer/phpunit/phpunit@9.4.2","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.4.2"},{"url":"http://public2.vulnerablecode.io/api/packages/898495?format=json","purl":"pkg:composer/phpunit/phpunit@9.4.3","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.4.3"},{"url":"http://public2.vulnerablecode.io/api/packages/898496?format=json","purl":"pkg:composer/phpunit/phpunit@9.4.4","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.4.4"},{"url":"http://public2.vulnerablecode.io/api/packages/898497?format=json","purl":"pkg:composer/phpunit/phpunit@9.5.0","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.5.0"},{"url":"http://public2.vulnerablecode.io/api/packages/898498?format=json","purl":"pkg:composer/phpunit/phpunit@9.5.1","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.5.1"},{"url":"http://public2.vulnerablecode.io/api/packages/898499?format=json","purl":"pkg:composer/phpunit/phpunit@9.5.2","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.5.2"},{"url":"http://public2.vulnerablecode.io/api/packages/898500?format=json","purl":"pkg:composer/phpunit/phpunit@9.5.3","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.5.3"},{"url":"http://public2.vulnerablecode.io/api/packages/898501?format=json","purl":"pkg:composer/phpunit/phpunit@9.5.4","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.5.4"},{"url":"http://public2.vulnerablecode.io/api/packages/898502?format=json","purl":"pkg:composer/phpunit/phpunit@9.5.5","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.5.5"},{"url":"http://public2.vulnerablecode.io/api/packages/898503?format=json","purl":"pkg:composer/phpunit/phpunit@9.5.6","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.5.6"},{"url":"http://public2.vulnerablecode.io/api/packages/898504?format=json","purl":"pkg:composer/phpunit/phpunit@9.5.7","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.5.7"},{"url":"http://public2.vulnerablecode.io/api/packages/898505?format=json","purl":"pkg:composer/phpunit/phpunit@9.5.8","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.5.8"},{"url":"http://public2.vulnerablecode.io/api/packages/898506?format=json","purl":"pkg:composer/phpunit/phpunit@9.5.9","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.5.9"},{"url":"http://public2.vulnerablecode.io/api/packages/898507?format=json","purl":"pkg:composer/phpunit/phpunit@9.5.10","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.5.10"},{"url":"http://public2.vulnerablecode.io/api/packages/898508?format=json","purl":"pkg:composer/phpunit/phpunit@9.5.11","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.5.11"},{"url":"http://public2.vulnerablecode.io/api/packages/898509?format=json","purl":"pkg:composer/phpunit/phpunit@9.5.12","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.5.12"},{"url":"http://public2.vulnerablecode.io/api/packages/898510?format=json","purl":"pkg:composer/phpunit/phpunit@9.5.13","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.5.13"},{"url":"http://public2.vulnerablecode.io/api/packages/898511?format=json","purl":"pkg:composer/phpunit/phpunit@9.5.14","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.5.14"},{"url":"http://public2.vulnerablecode.io/api/packages/898512?format=json","purl":"pkg:composer/phpunit/phpunit@9.5.16","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.5.16"},{"url":"http://public2.vulnerablecode.io/api/packages/898513?format=json","purl":"pkg:composer/phpunit/phpunit@9.5.17","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.5.17"},{"url":"http://public2.vulnerablecode.io/api/packages/898514?format=json","purl":"pkg:composer/phpunit/phpunit@9.5.18","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.5.18"},{"url":"http://public2.vulnerablecode.io/api/packages/898515?format=json","purl":"pkg:composer/phpunit/phpunit@9.5.19","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.5.19"},{"url":"http://public2.vulnerablecode.io/api/packages/898516?format=json","purl":"pkg:composer/phpunit/phpunit@9.5.20","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.5.20"},{"url":"http://public2.vulnerablecode.io/api/packages/898517?format=json","purl":"pkg:composer/phpunit/phpunit@9.5.21","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.5.21"},{"url":"http://public2.vulnerablecode.io/api/packages/898518?format=json","purl":"pkg:composer/phpunit/phpunit@9.5.22","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.5.22"},{"url":"http://public2.vulnerablecode.io/api/packages/898519?format=json","purl":"pkg:composer/phpunit/phpunit@9.5.23","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.5.23"},{"url":"http://public2.vulnerablecode.io/api/packages/898520?format=json","purl":"pkg:composer/phpunit/phpunit@9.5.24","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.5.24"},{"url":"http://public2.vulnerablecode.io/api/packages/898521?format=json","purl":"pkg:composer/phpunit/phpunit@9.5.25","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.5.25"},{"url":"http://public2.vulnerablecode.io/api/packages/898522?format=json","purl":"pkg:composer/phpunit/phpunit@9.5.26","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.5.26"},{"url":"http://public2.vulnerablecode.io/api/packages/898523?format=json","purl":"pkg:composer/phpunit/phpunit@9.5.27","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.5.27"},{"url":"http://public2.vulnerablecode.io/api/packages/898524?format=json","purl":"pkg:composer/phpunit/phpunit@9.5.28","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.5.28"},{"url":"http://public2.vulnerablecode.io/api/packages/898525?format=json","purl":"pkg:composer/phpunit/phpunit@9.6.0","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.6.0"},{"url":"http://public2.vulnerablecode.io/api/packages/898526?format=json","purl":"pkg:composer/phpunit/phpunit@9.6.1","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.6.1"},{"url":"http://public2.vulnerablecode.io/api/packages/898527?format=json","purl":"pkg:composer/phpunit/phpunit@9.6.2","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.6.2"},{"url":"http://public2.vulnerablecode.io/api/packages/898528?format=json","purl":"pkg:composer/phpunit/phpunit@9.6.3","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.6.3"},{"url":"http://public2.vulnerablecode.io/api/packages/898529?format=json","purl":"pkg:composer/phpunit/phpunit@9.6.4","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.6.4"},{"url":"http://public2.vulnerablecode.io/api/packages/898530?format=json","purl":"pkg:composer/phpunit/phpunit@9.6.5","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.6.5"},{"url":"http://public2.vulnerablecode.io/api/packages/898531?format=json","purl":"pkg:composer/phpunit/phpunit@9.6.6","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.6.6"},{"url":"http://public2.vulnerablecode.io/api/packages/898532?format=json","purl":"pkg:composer/phpunit/phpunit@9.6.7","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.6.7"},{"url":"http://public2.vulnerablecode.io/api/packages/898533?format=json","purl":"pkg:composer/phpunit/phpunit@9.6.8","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.6.8"},{"url":"http://public2.vulnerablecode.io/api/packages/898534?format=json","purl":"pkg:composer/phpunit/phpunit@9.6.9","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.6.9"},{"url":"http://public2.vulnerablecode.io/api/packages/898535?format=json","purl":"pkg:composer/phpunit/phpunit@9.6.10","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.6.10"},{"url":"http://public2.vulnerablecode.io/api/packages/898536?format=json","purl":"pkg:composer/phpunit/phpunit@9.6.11","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.6.11"},{"url":"http://public2.vulnerablecode.io/api/packages/898537?format=json","purl":"pkg:composer/phpunit/phpunit@9.6.12","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.6.12"},{"url":"http://public2.vulnerablecode.io/api/packages/898538?format=json","purl":"pkg:composer/phpunit/phpunit@9.6.13","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.6.13"},{"url":"http://public2.vulnerablecode.io/api/packages/898539?format=json","purl":"pkg:composer/phpunit/phpunit@9.6.14","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.6.14"},{"url":"http://public2.vulnerablecode.io/api/packages/898540?format=json","purl":"pkg:composer/phpunit/phpunit@9.6.15","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.6.15"},{"url":"http://public2.vulnerablecode.io/api/packages/898541?format=json","purl":"pkg:composer/phpunit/phpunit@9.6.16","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.6.16"},{"url":"http://public2.vulnerablecode.io/api/packages/898542?format=json","purl":"pkg:composer/phpunit/phpunit@9.6.17","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.6.17"},{"url":"http://public2.vulnerablecode.io/api/packages/898543?format=json","purl":"pkg:composer/phpunit/phpunit@9.6.18","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.6.18"},{"url":"http://public2.vulnerablecode.io/api/packages/898544?format=json","purl":"pkg:composer/phpunit/phpunit@9.6.19","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.6.19"},{"url":"http://public2.vulnerablecode.io/api/packages/898545?format=json","purl":"pkg:composer/phpunit/phpunit@9.6.20","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.6.20"},{"url":"http://public2.vulnerablecode.io/api/packages/898546?format=json","purl":"pkg:composer/phpunit/phpunit@9.6.21","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.6.21"},{"url":"http://public2.vulnerablecode.io/api/packages/898547?format=json","purl":"pkg:composer/phpunit/phpunit@9.6.22","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.6.22"},{"url":"http://public2.vulnerablecode.io/api/packages/898548?format=json","purl":"pkg:composer/phpunit/phpunit@9.6.23","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.6.23"},{"url":"http://public2.vulnerablecode.io/api/packages/898549?format=json","purl":"pkg:composer/phpunit/phpunit@9.6.24","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.6.24"},{"url":"http://public2.vulnerablecode.io/api/packages/898550?format=json","purl":"pkg:composer/phpunit/phpunit@9.6.25","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.6.25"},{"url":"http://public2.vulnerablecode.io/api/packages/898551?format=json","purl":"pkg:composer/phpunit/phpunit@9.6.26","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.6.26"},{"url":"http://public2.vulnerablecode.io/api/packages/898552?format=json","purl":"pkg:composer/phpunit/phpunit@9.6.27","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.6.27"},{"url":"http://public2.vulnerablecode.io/api/packages/898553?format=json","purl":"pkg:composer/phpunit/phpunit@9.6.28","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.6.28"},{"url":"http://public2.vulnerablecode.io/api/packages/898554?format=json","purl":"pkg:composer/phpunit/phpunit@9.6.29","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.6.29"},{"url":"http://public2.vulnerablecode.io/api/packages/898555?format=json","purl":"pkg:composer/phpunit/phpunit@9.6.30","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.6.30"},{"url":"http://public2.vulnerablecode.io/api/packages/898556?format=json","purl":"pkg:composer/phpunit/phpunit@9.6.31","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.6.31"},{"url":"http://public2.vulnerablecode.io/api/packages/898557?format=json","purl":"pkg:composer/phpunit/phpunit@9.6.32","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.6.32"},{"url":"http://public2.vulnerablecode.io/api/packages/67545?format=json","purl":"pkg:composer/phpunit/phpunit@10.0.0","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.0.0"},{"url":"http://public2.vulnerablecode.io/api/packages/898558?format=json","purl":"pkg:composer/phpunit/phpunit@10.0.1","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.0.1"},{"url":"http://public2.vulnerablecode.io/api/packages/898559?format=json","purl":"pkg:composer/phpunit/phpunit@10.0.2","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.0.2"},{"url":"http://public2.vulnerablecode.io/api/packages/898560?format=json","purl":"pkg:composer/phpunit/phpunit@10.0.3","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.0.3"},{"url":"http://public2.vulnerablecode.io/api/packages/898561?format=json","purl":"pkg:composer/phpunit/phpunit@10.0.4","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.0.4"},{"url":"http://public2.vulnerablecode.io/api/packages/898562?format=json","purl":"pkg:composer/phpunit/phpunit@10.0.5","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.0.5"},{"url":"http://public2.vulnerablecode.io/api/packages/898563?format=json","purl":"pkg:composer/phpunit/phpunit@10.0.6","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.0.6"},{"url":"http://public2.vulnerablecode.io/api/packages/898564?format=json","purl":"pkg:composer/phpunit/phpunit@10.0.7","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.0.7"},{"url":"http://public2.vulnerablecode.io/api/packages/898565?format=json","purl":"pkg:composer/phpunit/phpunit@10.0.8","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.0.8"},{"url":"http://public2.vulnerablecode.io/api/packages/898566?format=json","purl":"pkg:composer/phpunit/phpunit@10.0.9","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.0.9"},{"url":"http://public2.vulnerablecode.io/api/packages/898567?format=json","purl":"pkg:composer/phpunit/phpunit@10.0.10","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.0.10"},{"url":"http://public2.vulnerablecode.io/api/packages/898568?format=json","purl":"pkg:composer/phpunit/phpunit@10.0.11","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.0.11"},{"url":"http://public2.vulnerablecode.io/api/packages/898569?format=json","purl":"pkg:composer/phpunit/phpunit@10.0.12","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.0.12"},{"url":"http://public2.vulnerablecode.io/api/packages/898570?format=json","purl":"pkg:composer/phpunit/phpunit@10.0.13","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.0.13"},{"url":"http://public2.vulnerablecode.io/api/packages/898571?format=json","purl":"pkg:composer/phpunit/phpunit@10.0.14","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.0.14"},{"url":"http://public2.vulnerablecode.io/api/packages/898572?format=json","purl":"pkg:composer/phpunit/phpunit@10.0.15","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.0.15"},{"url":"http://public2.vulnerablecode.io/api/packages/898573?format=json","purl":"pkg:composer/phpunit/phpunit@10.0.16","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.0.16"},{"url":"http://public2.vulnerablecode.io/api/packages/898574?format=json","purl":"pkg:composer/phpunit/phpunit@10.0.17","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.0.17"},{"url":"http://public2.vulnerablecode.io/api/packages/898575?format=json","purl":"pkg:composer/phpunit/phpunit@10.0.18","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.0.18"},{"url":"http://public2.vulnerablecode.io/api/packages/898576?format=json","purl":"pkg:composer/phpunit/phpunit@10.0.19","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.0.19"},{"url":"http://public2.vulnerablecode.io/api/packages/898577?format=json","purl":"pkg:composer/phpunit/phpunit@10.1.0","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.1.0"},{"url":"http://public2.vulnerablecode.io/api/packages/898578?format=json","purl":"pkg:composer/phpunit/phpunit@10.1.1","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.1.1"},{"url":"http://public2.vulnerablecode.io/api/packages/898579?format=json","purl":"pkg:composer/phpunit/phpunit@10.1.2","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.1.2"},{"url":"http://public2.vulnerablecode.io/api/packages/898580?format=json","purl":"pkg:composer/phpunit/phpunit@10.1.3","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.1.3"},{"url":"http://public2.vulnerablecode.io/api/packages/898581?format=json","purl":"pkg:composer/phpunit/phpunit@10.2.0","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.2.0"},{"url":"http://public2.vulnerablecode.io/api/packages/898582?format=json","purl":"pkg:composer/phpunit/phpunit@10.2.1","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.2.1"},{"url":"http://public2.vulnerablecode.io/api/packages/898583?format=json","purl":"pkg:composer/phpunit/phpunit@10.2.2","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.2.2"},{"url":"http://public2.vulnerablecode.io/api/packages/898584?format=json","purl":"pkg:composer/phpunit/phpunit@10.2.3","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.2.3"},{"url":"http://public2.vulnerablecode.io/api/packages/898585?format=json","purl":"pkg:composer/phpunit/phpunit@10.2.4","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.2.4"},{"url":"http://public2.vulnerablecode.io/api/packages/898586?format=json","purl":"pkg:composer/phpunit/phpunit@10.2.5","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.2.5"},{"url":"http://public2.vulnerablecode.io/api/packages/898587?format=json","purl":"pkg:composer/phpunit/phpunit@10.2.6","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.2.6"},{"url":"http://public2.vulnerablecode.io/api/packages/898588?format=json","purl":"pkg:composer/phpunit/phpunit@10.2.7","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.2.7"},{"url":"http://public2.vulnerablecode.io/api/packages/898589?format=json","purl":"pkg:composer/phpunit/phpunit@10.3.0","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.3.0"},{"url":"http://public2.vulnerablecode.io/api/packages/898590?format=json","purl":"pkg:composer/phpunit/phpunit@10.3.1","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.3.1"},{"url":"http://public2.vulnerablecode.io/api/packages/898591?format=json","purl":"pkg:composer/phpunit/phpunit@10.3.2","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.3.2"},{"url":"http://public2.vulnerablecode.io/api/packages/898592?format=json","purl":"pkg:composer/phpunit/phpunit@10.3.3","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.3.3"},{"url":"http://public2.vulnerablecode.io/api/packages/898593?format=json","purl":"pkg:composer/phpunit/phpunit@10.3.4","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.3.4"},{"url":"http://public2.vulnerablecode.io/api/packages/898594?format=json","purl":"pkg:composer/phpunit/phpunit@10.3.5","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.3.5"},{"url":"http://public2.vulnerablecode.io/api/packages/898595?format=json","purl":"pkg:composer/phpunit/phpunit@10.4.0","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.4.0"},{"url":"http://public2.vulnerablecode.io/api/packages/898596?format=json","purl":"pkg:composer/phpunit/phpunit@10.4.1","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.4.1"},{"url":"http://public2.vulnerablecode.io/api/packages/898597?format=json","purl":"pkg:composer/phpunit/phpunit@10.4.2","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.4.2"},{"url":"http://public2.vulnerablecode.io/api/packages/898598?format=json","purl":"pkg:composer/phpunit/phpunit@10.5.0","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.5.0"},{"url":"http://public2.vulnerablecode.io/api/packages/898599?format=json","purl":"pkg:composer/phpunit/phpunit@10.5.1","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.5.1"},{"url":"http://public2.vulnerablecode.io/api/packages/898600?format=json","purl":"pkg:composer/phpunit/phpunit@10.5.2","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.5.2"},{"url":"http://public2.vulnerablecode.io/api/packages/898601?format=json","purl":"pkg:composer/phpunit/phpunit@10.5.3","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.5.3"},{"url":"http://public2.vulnerablecode.io/api/packages/898602?format=json","purl":"pkg:composer/phpunit/phpunit@10.5.4","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.5.4"},{"url":"http://public2.vulnerablecode.io/api/packages/898603?format=json","purl":"pkg:composer/phpunit/phpunit@10.5.5","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.5.5"},{"url":"http://public2.vulnerablecode.io/api/packages/898604?format=json","purl":"pkg:composer/phpunit/phpunit@10.5.6","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.5.6"},{"url":"http://public2.vulnerablecode.io/api/packages/898605?format=json","purl":"pkg:composer/phpunit/phpunit@10.5.7","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.5.7"},{"url":"http://public2.vulnerablecode.io/api/packages/898606?format=json","purl":"pkg:composer/phpunit/phpunit@10.5.8","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.5.8"},{"url":"http://public2.vulnerablecode.io/api/packages/898607?format=json","purl":"pkg:composer/phpunit/phpunit@10.5.9","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.5.9"},{"url":"http://public2.vulnerablecode.io/api/packages/898608?format=json","purl":"pkg:composer/phpunit/phpunit@10.5.10","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.5.10"},{"url":"http://public2.vulnerablecode.io/api/packages/898609?format=json","purl":"pkg:composer/phpunit/phpunit@10.5.11","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.5.11"},{"url":"http://public2.vulnerablecode.io/api/packages/898610?format=json","purl":"pkg:composer/phpunit/phpunit@10.5.12","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.5.12"},{"url":"http://public2.vulnerablecode.io/api/packages/898611?format=json","purl":"pkg:composer/phpunit/phpunit@10.5.13","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.5.13"},{"url":"http://public2.vulnerablecode.io/api/packages/898612?format=json","purl":"pkg:composer/phpunit/phpunit@10.5.14","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.5.14"},{"url":"http://public2.vulnerablecode.io/api/packages/898613?format=json","purl":"pkg:composer/phpunit/phpunit@10.5.15","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.5.15"},{"url":"http://public2.vulnerablecode.io/api/packages/898614?format=json","purl":"pkg:composer/phpunit/phpunit@10.5.16","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.5.16"},{"url":"http://public2.vulnerablecode.io/api/packages/898615?format=json","purl":"pkg:composer/phpunit/phpunit@10.5.17","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.5.17"},{"url":"http://public2.vulnerablecode.io/api/packages/898616?format=json","purl":"pkg:composer/phpunit/phpunit@10.5.18","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.5.18"},{"url":"http://public2.vulnerablecode.io/api/packages/898617?format=json","purl":"pkg:composer/phpunit/phpunit@10.5.19","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.5.19"},{"url":"http://public2.vulnerablecode.io/api/packages/898618?format=json","purl":"pkg:composer/phpunit/phpunit@10.5.20","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.5.20"},{"url":"http://public2.vulnerablecode.io/api/packages/898619?format=json","purl":"pkg:composer/phpunit/phpunit@10.5.21","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.5.21"},{"url":"http://public2.vulnerablecode.io/api/packages/898620?format=json","purl":"pkg:composer/phpunit/phpunit@10.5.22","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.5.22"},{"url":"http://public2.vulnerablecode.io/api/packages/898621?format=json","purl":"pkg:composer/phpunit/phpunit@10.5.23","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.5.23"},{"url":"http://public2.vulnerablecode.io/api/packages/898622?format=json","purl":"pkg:composer/phpunit/phpunit@10.5.24","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.5.24"},{"url":"http://public2.vulnerablecode.io/api/packages/898623?format=json","purl":"pkg:composer/phpunit/phpunit@10.5.25","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.5.25"},{"url":"http://public2.vulnerablecode.io/api/packages/898624?format=json","purl":"pkg:composer/phpunit/phpunit@10.5.26","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.5.26"},{"url":"http://public2.vulnerablecode.io/api/packages/898625?format=json","purl":"pkg:composer/phpunit/phpunit@10.5.27","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.5.27"},{"url":"http://public2.vulnerablecode.io/api/packages/898626?format=json","purl":"pkg:composer/phpunit/phpunit@10.5.28","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.5.28"},{"url":"http://public2.vulnerablecode.io/api/packages/898627?format=json","purl":"pkg:composer/phpunit/phpunit@10.5.29","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.5.29"},{"url":"http://public2.vulnerablecode.io/api/packages/898628?format=json","purl":"pkg:composer/phpunit/phpunit@10.5.30","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.5.30"},{"url":"http://public2.vulnerablecode.io/api/packages/898629?format=json","purl":"pkg:composer/phpunit/phpunit@10.5.31","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.5.31"},{"url":"http://public2.vulnerablecode.io/api/packages/898630?format=json","purl":"pkg:composer/phpunit/phpunit@10.5.32","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.5.32"},{"url":"http://public2.vulnerablecode.io/api/packages/898631?format=json","purl":"pkg:composer/phpunit/phpunit@10.5.33","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.5.33"},{"url":"http://public2.vulnerablecode.io/api/packages/898632?format=json","purl":"pkg:composer/phpunit/phpunit@10.5.34","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.5.34"},{"url":"http://public2.vulnerablecode.io/api/packages/898633?format=json","purl":"pkg:composer/phpunit/phpunit@10.5.35","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.5.35"},{"url":"http://public2.vulnerablecode.io/api/packages/898634?format=json","purl":"pkg:composer/phpunit/phpunit@10.5.36","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.5.36"},{"url":"http://public2.vulnerablecode.io/api/packages/898635?format=json","purl":"pkg:composer/phpunit/phpunit@10.5.37","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.5.37"},{"url":"http://public2.vulnerablecode.io/api/packages/898636?format=json","purl":"pkg:composer/phpunit/phpunit@10.5.38","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.5.38"},{"url":"http://public2.vulnerablecode.io/api/packages/898637?format=json","purl":"pkg:composer/phpunit/phpunit@10.5.39","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.5.39"},{"url":"http://public2.vulnerablecode.io/api/packages/898638?format=json","purl":"pkg:composer/phpunit/phpunit@10.5.40","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.5.40"},{"url":"http://public2.vulnerablecode.io/api/packages/898639?format=json","purl":"pkg:composer/phpunit/phpunit@10.5.41","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.5.41"},{"url":"http://public2.vulnerablecode.io/api/packages/898640?format=json","purl":"pkg:composer/phpunit/phpunit@10.5.42","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.5.42"},{"url":"http://public2.vulnerablecode.io/api/packages/898641?format=json","purl":"pkg:composer/phpunit/phpunit@10.5.43","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.5.43"},{"url":"http://public2.vulnerablecode.io/api/packages/898642?format=json","purl":"pkg:composer/phpunit/phpunit@10.5.44","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.5.44"},{"url":"http://public2.vulnerablecode.io/api/packages/898643?format=json","purl":"pkg:composer/phpunit/phpunit@10.5.45","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.5.45"},{"url":"http://public2.vulnerablecode.io/api/packages/898644?format=json","purl":"pkg:composer/phpunit/phpunit@10.5.46","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.5.46"},{"url":"http://public2.vulnerablecode.io/api/packages/898645?format=json","purl":"pkg:composer/phpunit/phpunit@10.5.47","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.5.47"},{"url":"http://public2.vulnerablecode.io/api/packages/898646?format=json","purl":"pkg:composer/phpunit/phpunit@10.5.48","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.5.48"},{"url":"http://public2.vulnerablecode.io/api/packages/898647?format=json","purl":"pkg:composer/phpunit/phpunit@10.5.49","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.5.49"},{"url":"http://public2.vulnerablecode.io/api/packages/898648?format=json","purl":"pkg:composer/phpunit/phpunit@10.5.50","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.5.50"},{"url":"http://public2.vulnerablecode.io/api/packages/898649?format=json","purl":"pkg:composer/phpunit/phpunit@10.5.51","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.5.51"},{"url":"http://public2.vulnerablecode.io/api/packages/898650?format=json","purl":"pkg:composer/phpunit/phpunit@10.5.52","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.5.52"},{"url":"http://public2.vulnerablecode.io/api/packages/898651?format=json","purl":"pkg:composer/phpunit/phpunit@10.5.53","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.5.53"},{"url":"http://public2.vulnerablecode.io/api/packages/898652?format=json","purl":"pkg:composer/phpunit/phpunit@10.5.54","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.5.54"},{"url":"http://public2.vulnerablecode.io/api/packages/898653?format=json","purl":"pkg:composer/phpunit/phpunit@10.5.55","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.5.55"},{"url":"http://public2.vulnerablecode.io/api/packages/898654?format=json","purl":"pkg:composer/phpunit/phpunit@10.5.56","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.5.56"},{"url":"http://public2.vulnerablecode.io/api/packages/898655?format=json","purl":"pkg:composer/phpunit/phpunit@10.5.57","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.5.57"},{"url":"http://public2.vulnerablecode.io/api/packages/898656?format=json","purl":"pkg:composer/phpunit/phpunit@10.5.58","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.5.58"},{"url":"http://public2.vulnerablecode.io/api/packages/898657?format=json","purl":"pkg:composer/phpunit/phpunit@10.5.59","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.5.59"},{"url":"http://public2.vulnerablecode.io/api/packages/898658?format=json","purl":"pkg:composer/phpunit/phpunit@10.5.60","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.5.60"},{"url":"http://public2.vulnerablecode.io/api/packages/898659?format=json","purl":"pkg:composer/phpunit/phpunit@10.5.61","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.5.61"},{"url":"http://public2.vulnerablecode.io/api/packages/67546?format=json","purl":"pkg:composer/phpunit/phpunit@11.0.0","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.0.0"},{"url":"http://public2.vulnerablecode.io/api/packages/898660?format=json","purl":"pkg:composer/phpunit/phpunit@11.0.1","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.0.1"},{"url":"http://public2.vulnerablecode.io/api/packages/898661?format=json","purl":"pkg:composer/phpunit/phpunit@11.0.2","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.0.2"},{"url":"http://public2.vulnerablecode.io/api/packages/898662?format=json","purl":"pkg:composer/phpunit/phpunit@11.0.3","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.0.3"},{"url":"http://public2.vulnerablecode.io/api/packages/898663?format=json","purl":"pkg:composer/phpunit/phpunit@11.0.4","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.0.4"},{"url":"http://public2.vulnerablecode.io/api/packages/898664?format=json","purl":"pkg:composer/phpunit/phpunit@11.0.5","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.0.5"},{"url":"http://public2.vulnerablecode.io/api/packages/898665?format=json","purl":"pkg:composer/phpunit/phpunit@11.0.6","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.0.6"},{"url":"http://public2.vulnerablecode.io/api/packages/898666?format=json","purl":"pkg:composer/phpunit/phpunit@11.0.7","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.0.7"},{"url":"http://public2.vulnerablecode.io/api/packages/898667?format=json","purl":"pkg:composer/phpunit/phpunit@11.0.8","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.0.8"},{"url":"http://public2.vulnerablecode.io/api/packages/898668?format=json","purl":"pkg:composer/phpunit/phpunit@11.0.9","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.0.9"},{"url":"http://public2.vulnerablecode.io/api/packages/898669?format=json","purl":"pkg:composer/phpunit/phpunit@11.0.10","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.0.10"},{"url":"http://public2.vulnerablecode.io/api/packages/898670?format=json","purl":"pkg:composer/phpunit/phpunit@11.1.0","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.1.0"},{"url":"http://public2.vulnerablecode.io/api/packages/898671?format=json","purl":"pkg:composer/phpunit/phpunit@11.1.1","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.1.1"},{"url":"http://public2.vulnerablecode.io/api/packages/898672?format=json","purl":"pkg:composer/phpunit/phpunit@11.1.2","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.1.2"},{"url":"http://public2.vulnerablecode.io/api/packages/898673?format=json","purl":"pkg:composer/phpunit/phpunit@11.1.3","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.1.3"},{"url":"http://public2.vulnerablecode.io/api/packages/898674?format=json","purl":"pkg:composer/phpunit/phpunit@11.2.0","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.2.0"},{"url":"http://public2.vulnerablecode.io/api/packages/898675?format=json","purl":"pkg:composer/phpunit/phpunit@11.2.1","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.2.1"},{"url":"http://public2.vulnerablecode.io/api/packages/898676?format=json","purl":"pkg:composer/phpunit/phpunit@11.2.2","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.2.2"},{"url":"http://public2.vulnerablecode.io/api/packages/898677?format=json","purl":"pkg:composer/phpunit/phpunit@11.2.3","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.2.3"},{"url":"http://public2.vulnerablecode.io/api/packages/898678?format=json","purl":"pkg:composer/phpunit/phpunit@11.2.4","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.2.4"},{"url":"http://public2.vulnerablecode.io/api/packages/898679?format=json","purl":"pkg:composer/phpunit/phpunit@11.2.5","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.2.5"},{"url":"http://public2.vulnerablecode.io/api/packages/898680?format=json","purl":"pkg:composer/phpunit/phpunit@11.2.6","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.2.6"},{"url":"http://public2.vulnerablecode.io/api/packages/898681?format=json","purl":"pkg:composer/phpunit/phpunit@11.2.7","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.2.7"},{"url":"http://public2.vulnerablecode.io/api/packages/898682?format=json","purl":"pkg:composer/phpunit/phpunit@11.2.8","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.2.8"},{"url":"http://public2.vulnerablecode.io/api/packages/898683?format=json","purl":"pkg:composer/phpunit/phpunit@11.2.9","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.2.9"},{"url":"http://public2.vulnerablecode.io/api/packages/898684?format=json","purl":"pkg:composer/phpunit/phpunit@11.3.0","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.3.0"},{"url":"http://public2.vulnerablecode.io/api/packages/898685?format=json","purl":"pkg:composer/phpunit/phpunit@11.3.1","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.3.1"},{"url":"http://public2.vulnerablecode.io/api/packages/898686?format=json","purl":"pkg:composer/phpunit/phpunit@11.3.2","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.3.2"},{"url":"http://public2.vulnerablecode.io/api/packages/898687?format=json","purl":"pkg:composer/phpunit/phpunit@11.3.3","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.3.3"},{"url":"http://public2.vulnerablecode.io/api/packages/898688?format=json","purl":"pkg:composer/phpunit/phpunit@11.3.4","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.3.4"},{"url":"http://public2.vulnerablecode.io/api/packages/898689?format=json","purl":"pkg:composer/phpunit/phpunit@11.3.5","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.3.5"},{"url":"http://public2.vulnerablecode.io/api/packages/898690?format=json","purl":"pkg:composer/phpunit/phpunit@11.3.6","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.3.6"},{"url":"http://public2.vulnerablecode.io/api/packages/898691?format=json","purl":"pkg:composer/phpunit/phpunit@11.4.0","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.4.0"},{"url":"http://public2.vulnerablecode.io/api/packages/898692?format=json","purl":"pkg:composer/phpunit/phpunit@11.4.1","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.4.1"},{"url":"http://public2.vulnerablecode.io/api/packages/898693?format=json","purl":"pkg:composer/phpunit/phpunit@11.4.2","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.4.2"},{"url":"http://public2.vulnerablecode.io/api/packages/898694?format=json","purl":"pkg:composer/phpunit/phpunit@11.4.3","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.4.3"},{"url":"http://public2.vulnerablecode.io/api/packages/898695?format=json","purl":"pkg:composer/phpunit/phpunit@11.4.4","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.4.4"},{"url":"http://public2.vulnerablecode.io/api/packages/898696?format=json","purl":"pkg:composer/phpunit/phpunit@11.5.0","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.5.0"},{"url":"http://public2.vulnerablecode.io/api/packages/898697?format=json","purl":"pkg:composer/phpunit/phpunit@11.5.1","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.5.1"},{"url":"http://public2.vulnerablecode.io/api/packages/898698?format=json","purl":"pkg:composer/phpunit/phpunit@11.5.2","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.5.2"},{"url":"http://public2.vulnerablecode.io/api/packages/898699?format=json","purl":"pkg:composer/phpunit/phpunit@11.5.3","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.5.3"},{"url":"http://public2.vulnerablecode.io/api/packages/898700?format=json","purl":"pkg:composer/phpunit/phpunit@11.5.4","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.5.4"},{"url":"http://public2.vulnerablecode.io/api/packages/898701?format=json","purl":"pkg:composer/phpunit/phpunit@11.5.5","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.5.5"},{"url":"http://public2.vulnerablecode.io/api/packages/898702?format=json","purl":"pkg:composer/phpunit/phpunit@11.5.6","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.5.6"},{"url":"http://public2.vulnerablecode.io/api/packages/898703?format=json","purl":"pkg:composer/phpunit/phpunit@11.5.7","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.5.7"},{"url":"http://public2.vulnerablecode.io/api/packages/898704?format=json","purl":"pkg:composer/phpunit/phpunit@11.5.8","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.5.8"},{"url":"http://public2.vulnerablecode.io/api/packages/898705?format=json","purl":"pkg:composer/phpunit/phpunit@11.5.9","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.5.9"},{"url":"http://public2.vulnerablecode.io/api/packages/898706?format=json","purl":"pkg:composer/phpunit/phpunit@11.5.10","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.5.10"},{"url":"http://public2.vulnerablecode.io/api/packages/898707?format=json","purl":"pkg:composer/phpunit/phpunit@11.5.11","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.5.11"},{"url":"http://public2.vulnerablecode.io/api/packages/898708?format=json","purl":"pkg:composer/phpunit/phpunit@11.5.12","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.5.12"},{"url":"http://public2.vulnerablecode.io/api/packages/898709?format=json","purl":"pkg:composer/phpunit/phpunit@11.5.13","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.5.13"},{"url":"http://public2.vulnerablecode.io/api/packages/898710?format=json","purl":"pkg:composer/phpunit/phpunit@11.5.14","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.5.14"},{"url":"http://public2.vulnerablecode.io/api/packages/898711?format=json","purl":"pkg:composer/phpunit/phpunit@11.5.15","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.5.15"},{"url":"http://public2.vulnerablecode.io/api/packages/898712?format=json","purl":"pkg:composer/phpunit/phpunit@11.5.16","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.5.16"},{"url":"http://public2.vulnerablecode.io/api/packages/898713?format=json","purl":"pkg:composer/phpunit/phpunit@11.5.17","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.5.17"},{"url":"http://public2.vulnerablecode.io/api/packages/898714?format=json","purl":"pkg:composer/phpunit/phpunit@11.5.18","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.5.18"},{"url":"http://public2.vulnerablecode.io/api/packages/898715?format=json","purl":"pkg:composer/phpunit/phpunit@11.5.19","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.5.19"},{"url":"http://public2.vulnerablecode.io/api/packages/898716?format=json","purl":"pkg:composer/phpunit/phpunit@11.5.20","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.5.20"},{"url":"http://public2.vulnerablecode.io/api/packages/898717?format=json","purl":"pkg:composer/phpunit/phpunit@11.5.21","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.5.21"},{"url":"http://public2.vulnerablecode.io/api/packages/898718?format=json","purl":"pkg:composer/phpunit/phpunit@11.5.22","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.5.22"},{"url":"http://public2.vulnerablecode.io/api/packages/898719?format=json","purl":"pkg:composer/phpunit/phpunit@11.5.23","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.5.23"},{"url":"http://public2.vulnerablecode.io/api/packages/898720?format=json","purl":"pkg:composer/phpunit/phpunit@11.5.24","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.5.24"},{"url":"http://public2.vulnerablecode.io/api/packages/898721?format=json","purl":"pkg:composer/phpunit/phpunit@11.5.25","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.5.25"},{"url":"http://public2.vulnerablecode.io/api/packages/898722?format=json","purl":"pkg:composer/phpunit/phpunit@11.5.26","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.5.26"},{"url":"http://public2.vulnerablecode.io/api/packages/898723?format=json","purl":"pkg:composer/phpunit/phpunit@11.5.27","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.5.27"},{"url":"http://public2.vulnerablecode.io/api/packages/898724?format=json","purl":"pkg:composer/phpunit/phpunit@11.5.28","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.5.28"},{"url":"http://public2.vulnerablecode.io/api/packages/898725?format=json","purl":"pkg:composer/phpunit/phpunit@11.5.29","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.5.29"},{"url":"http://public2.vulnerablecode.io/api/packages/898726?format=json","purl":"pkg:composer/phpunit/phpunit@11.5.30","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.5.30"},{"url":"http://public2.vulnerablecode.io/api/packages/898727?format=json","purl":"pkg:composer/phpunit/phpunit@11.5.31","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.5.31"},{"url":"http://public2.vulnerablecode.io/api/packages/898728?format=json","purl":"pkg:composer/phpunit/phpunit@11.5.32","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.5.32"},{"url":"http://public2.vulnerablecode.io/api/packages/898729?format=json","purl":"pkg:composer/phpunit/phpunit@11.5.33","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.5.33"},{"url":"http://public2.vulnerablecode.io/api/packages/898730?format=json","purl":"pkg:composer/phpunit/phpunit@11.5.34","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.5.34"},{"url":"http://public2.vulnerablecode.io/api/packages/898731?format=json","purl":"pkg:composer/phpunit/phpunit@11.5.35","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.5.35"},{"url":"http://public2.vulnerablecode.io/api/packages/898732?format=json","purl":"pkg:composer/phpunit/phpunit@11.5.36","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.5.36"},{"url":"http://public2.vulnerablecode.io/api/packages/898733?format=json","purl":"pkg:composer/phpunit/phpunit@11.5.37","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.5.37"},{"url":"http://public2.vulnerablecode.io/api/packages/898734?format=json","purl":"pkg:composer/phpunit/phpunit@11.5.38","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.5.38"},{"url":"http://public2.vulnerablecode.io/api/packages/898735?format=json","purl":"pkg:composer/phpunit/phpunit@11.5.39","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.5.39"},{"url":"http://public2.vulnerablecode.io/api/packages/898736?format=json","purl":"pkg:composer/phpunit/phpunit@11.5.40","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.5.40"},{"url":"http://public2.vulnerablecode.io/api/packages/898737?format=json","purl":"pkg:composer/phpunit/phpunit@11.5.41","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.5.41"},{"url":"http://public2.vulnerablecode.io/api/packages/898738?format=json","purl":"pkg:composer/phpunit/phpunit@11.5.42","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.5.42"},{"url":"http://public2.vulnerablecode.io/api/packages/898739?format=json","purl":"pkg:composer/phpunit/phpunit@11.5.43","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.5.43"},{"url":"http://public2.vulnerablecode.io/api/packages/898740?format=json","purl":"pkg:composer/phpunit/phpunit@11.5.44","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.5.44"},{"url":"http://public2.vulnerablecode.io/api/packages/898741?format=json","purl":"pkg:composer/phpunit/phpunit@11.5.45","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.5.45"},{"url":"http://public2.vulnerablecode.io/api/packages/898742?format=json","purl":"pkg:composer/phpunit/phpunit@11.5.46","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.5.46"},{"url":"http://public2.vulnerablecode.io/api/packages/898743?format=json","purl":"pkg:composer/phpunit/phpunit@11.5.47","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.5.47"},{"url":"http://public2.vulnerablecode.io/api/packages/898744?format=json","purl":"pkg:composer/phpunit/phpunit@11.5.48","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.5.48"},{"url":"http://public2.vulnerablecode.io/api/packages/898745?format=json","purl":"pkg:composer/phpunit/phpunit@11.5.49","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.5.49"},{"url":"http://public2.vulnerablecode.io/api/packages/67547?format=json","purl":"pkg:composer/phpunit/phpunit@12.0.0","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@12.0.0"},{"url":"http://public2.vulnerablecode.io/api/packages/898746?format=json","purl":"pkg:composer/phpunit/phpunit@12.0.1","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@12.0.1"},{"url":"http://public2.vulnerablecode.io/api/packages/898747?format=json","purl":"pkg:composer/phpunit/phpunit@12.0.2","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@12.0.2"},{"url":"http://public2.vulnerablecode.io/api/packages/898748?format=json","purl":"pkg:composer/phpunit/phpunit@12.0.3","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@12.0.3"},{"url":"http://public2.vulnerablecode.io/api/packages/898749?format=json","purl":"pkg:composer/phpunit/phpunit@12.0.4","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@12.0.4"},{"url":"http://public2.vulnerablecode.io/api/packages/898750?format=json","purl":"pkg:composer/phpunit/phpunit@12.0.5","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@12.0.5"},{"url":"http://public2.vulnerablecode.io/api/packages/898751?format=json","purl":"pkg:composer/phpunit/phpunit@12.0.6","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@12.0.6"},{"url":"http://public2.vulnerablecode.io/api/packages/898752?format=json","purl":"pkg:composer/phpunit/phpunit@12.0.7","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@12.0.7"},{"url":"http://public2.vulnerablecode.io/api/packages/898753?format=json","purl":"pkg:composer/phpunit/phpunit@12.0.8","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@12.0.8"},{"url":"http://public2.vulnerablecode.io/api/packages/898754?format=json","purl":"pkg:composer/phpunit/phpunit@12.0.9","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@12.0.9"},{"url":"http://public2.vulnerablecode.io/api/packages/898755?format=json","purl":"pkg:composer/phpunit/phpunit@12.0.10","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@12.0.10"},{"url":"http://public2.vulnerablecode.io/api/packages/898756?format=json","purl":"pkg:composer/phpunit/phpunit@12.1.0","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@12.1.0"},{"url":"http://public2.vulnerablecode.io/api/packages/898757?format=json","purl":"pkg:composer/phpunit/phpunit@12.1.1","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@12.1.1"},{"url":"http://public2.vulnerablecode.io/api/packages/898758?format=json","purl":"pkg:composer/phpunit/phpunit@12.1.2","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@12.1.2"},{"url":"http://public2.vulnerablecode.io/api/packages/898759?format=json","purl":"pkg:composer/phpunit/phpunit@12.1.3","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@12.1.3"},{"url":"http://public2.vulnerablecode.io/api/packages/898760?format=json","purl":"pkg:composer/phpunit/phpunit@12.1.4","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@12.1.4"},{"url":"http://public2.vulnerablecode.io/api/packages/898761?format=json","purl":"pkg:composer/phpunit/phpunit@12.1.5","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@12.1.5"},{"url":"http://public2.vulnerablecode.io/api/packages/898762?format=json","purl":"pkg:composer/phpunit/phpunit@12.1.6","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@12.1.6"},{"url":"http://public2.vulnerablecode.io/api/packages/898763?format=json","purl":"pkg:composer/phpunit/phpunit@12.2.0","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@12.2.0"},{"url":"http://public2.vulnerablecode.io/api/packages/898764?format=json","purl":"pkg:composer/phpunit/phpunit@12.2.1","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@12.2.1"},{"url":"http://public2.vulnerablecode.io/api/packages/898765?format=json","purl":"pkg:composer/phpunit/phpunit@12.2.2","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@12.2.2"},{"url":"http://public2.vulnerablecode.io/api/packages/898766?format=json","purl":"pkg:composer/phpunit/phpunit@12.2.3","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@12.2.3"},{"url":"http://public2.vulnerablecode.io/api/packages/898767?format=json","purl":"pkg:composer/phpunit/phpunit@12.2.4","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@12.2.4"},{"url":"http://public2.vulnerablecode.io/api/packages/898768?format=json","purl":"pkg:composer/phpunit/phpunit@12.2.5","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@12.2.5"},{"url":"http://public2.vulnerablecode.io/api/packages/898769?format=json","purl":"pkg:composer/phpunit/phpunit@12.2.6","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@12.2.6"},{"url":"http://public2.vulnerablecode.io/api/packages/898770?format=json","purl":"pkg:composer/phpunit/phpunit@12.2.7","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@12.2.7"},{"url":"http://public2.vulnerablecode.io/api/packages/898771?format=json","purl":"pkg:composer/phpunit/phpunit@12.2.8","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@12.2.8"},{"url":"http://public2.vulnerablecode.io/api/packages/898772?format=json","purl":"pkg:composer/phpunit/phpunit@12.2.9","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@12.2.9"},{"url":"http://public2.vulnerablecode.io/api/packages/898773?format=json","purl":"pkg:composer/phpunit/phpunit@12.3.0","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@12.3.0"},{"url":"http://public2.vulnerablecode.io/api/packages/898774?format=json","purl":"pkg:composer/phpunit/phpunit@12.3.1","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@12.3.1"},{"url":"http://public2.vulnerablecode.io/api/packages/898775?format=json","purl":"pkg:composer/phpunit/phpunit@12.3.2","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@12.3.2"},{"url":"http://public2.vulnerablecode.io/api/packages/898776?format=json","purl":"pkg:composer/phpunit/phpunit@12.3.3","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@12.3.3"},{"url":"http://public2.vulnerablecode.io/api/packages/898777?format=json","purl":"pkg:composer/phpunit/phpunit@12.3.4","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@12.3.4"},{"url":"http://public2.vulnerablecode.io/api/packages/898778?format=json","purl":"pkg:composer/phpunit/phpunit@12.3.5","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@12.3.5"},{"url":"http://public2.vulnerablecode.io/api/packages/898779?format=json","purl":"pkg:composer/phpunit/phpunit@12.3.6","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@12.3.6"},{"url":"http://public2.vulnerablecode.io/api/packages/898780?format=json","purl":"pkg:composer/phpunit/phpunit@12.3.7","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@12.3.7"},{"url":"http://public2.vulnerablecode.io/api/packages/898781?format=json","purl":"pkg:composer/phpunit/phpunit@12.3.8","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@12.3.8"},{"url":"http://public2.vulnerablecode.io/api/packages/898782?format=json","purl":"pkg:composer/phpunit/phpunit@12.3.9","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@12.3.9"},{"url":"http://public2.vulnerablecode.io/api/packages/898783?format=json","purl":"pkg:composer/phpunit/phpunit@12.3.10","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@12.3.10"},{"url":"http://public2.vulnerablecode.io/api/packages/898784?format=json","purl":"pkg:composer/phpunit/phpunit@12.3.11","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@12.3.11"},{"url":"http://public2.vulnerablecode.io/api/packages/898785?format=json","purl":"pkg:composer/phpunit/phpunit@12.3.12","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@12.3.12"},{"url":"http://public2.vulnerablecode.io/api/packages/898786?format=json","purl":"pkg:composer/phpunit/phpunit@12.3.13","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@12.3.13"},{"url":"http://public2.vulnerablecode.io/api/packages/898787?format=json","purl":"pkg:composer/phpunit/phpunit@12.3.14","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@12.3.14"},{"url":"http://public2.vulnerablecode.io/api/packages/898788?format=json","purl":"pkg:composer/phpunit/phpunit@12.3.15","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@12.3.15"},{"url":"http://public2.vulnerablecode.io/api/packages/898789?format=json","purl":"pkg:composer/phpunit/phpunit@12.4.0","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@12.4.0"},{"url":"http://public2.vulnerablecode.io/api/packages/898790?format=json","purl":"pkg:composer/phpunit/phpunit@12.4.1","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@12.4.1"},{"url":"http://public2.vulnerablecode.io/api/packages/898791?format=json","purl":"pkg:composer/phpunit/phpunit@12.4.2","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@12.4.2"},{"url":"http://public2.vulnerablecode.io/api/packages/898792?format=json","purl":"pkg:composer/phpunit/phpunit@12.4.3","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@12.4.3"},{"url":"http://public2.vulnerablecode.io/api/packages/898793?format=json","purl":"pkg:composer/phpunit/phpunit@12.4.4","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@12.4.4"},{"url":"http://public2.vulnerablecode.io/api/packages/898794?format=json","purl":"pkg:composer/phpunit/phpunit@12.4.5","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@12.4.5"},{"url":"http://public2.vulnerablecode.io/api/packages/898795?format=json","purl":"pkg:composer/phpunit/phpunit@12.5.0","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@12.5.0"},{"url":"http://public2.vulnerablecode.io/api/packages/898796?format=json","purl":"pkg:composer/phpunit/phpunit@12.5.1","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@12.5.1"},{"url":"http://public2.vulnerablecode.io/api/packages/898797?format=json","purl":"pkg:composer/phpunit/phpunit@12.5.2","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@12.5.2"},{"url":"http://public2.vulnerablecode.io/api/packages/898798?format=json","purl":"pkg:composer/phpunit/phpunit@12.5.3","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@12.5.3"},{"url":"http://public2.vulnerablecode.io/api/packages/898799?format=json","purl":"pkg:composer/phpunit/phpunit@12.5.4","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@12.5.4"},{"url":"http://public2.vulnerablecode.io/api/packages/898800?format=json","purl":"pkg:composer/phpunit/phpunit@12.5.5","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@12.5.5"},{"url":"http://public2.vulnerablecode.io/api/packages/898801?format=json","purl":"pkg:composer/phpunit/phpunit@12.5.6","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@12.5.6"},{"url":"http://public2.vulnerablecode.io/api/packages/898802?format=json","purl":"pkg:composer/phpunit/phpunit@12.5.7","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@12.5.7"},{"url":"http://public2.vulnerablecode.io/api/packages/1053116?format=json","purl":"pkg:deb/debian/phpunit@1.1.1-2","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"},{"vulnerability":"VCID-ks7b-f17t-dfd4"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:deb/debian/phpunit@1.1.1-2"},{"url":"http://public2.vulnerablecode.io/api/packages/1053117?format=json","purl":"pkg:deb/debian/phpunit@1.3.2-2","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"},{"vulnerability":"VCID-ks7b-f17t-dfd4"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:deb/debian/phpunit@1.3.2-2"},{"url":"http://public2.vulnerablecode.io/api/packages/1053118?format=json","purl":"pkg:deb/debian/phpunit@3.2.16-1","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"},{"vulnerability":"VCID-ks7b-f17t-dfd4"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:deb/debian/phpunit@3.2.16-1"},{"url":"http://public2.vulnerablecode.io/api/packages/1053119?format=json","purl":"pkg:deb/debian/phpunit@3.4.14-1","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"},{"vulnerability":"VCID-ks7b-f17t-dfd4"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:deb/debian/phpunit@3.4.14-1"},{"url":"http://public2.vulnerablecode.io/api/packages/1053120?format=json","purl":"pkg:deb/debian/phpunit@3.6.10-1","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"},{"vulnerability":"VCID-ks7b-f17t-dfd4"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:deb/debian/phpunit@3.6.10-1"},{"url":"http://public2.vulnerablecode.io/api/packages/1053121?format=json","purl":"pkg:deb/debian/phpunit@3.7.28-1~bpo70%2B1","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"},{"vulnerability":"VCID-ks7b-f17t-dfd4"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:deb/debian/phpunit@3.7.28-1~bpo70%252B1"},{"url":"http://public2.vulnerablecode.io/api/packages/1053122?format=json","purl":"pkg:deb/debian/phpunit@4.2.6-2","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"},{"vulnerability":"VCID-ks7b-f17t-dfd4"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:deb/debian/phpunit@4.2.6-2"},{"url":"http://public2.vulnerablecode.io/api/packages/1053123?format=json","purl":"pkg:deb/debian/phpunit@5.4.6-2~deb9u1","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"},{"vulnerability":"VCID-ks7b-f17t-dfd4"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:deb/debian/phpunit@5.4.6-2~deb9u1"},{"url":"http://public2.vulnerablecode.io/api/packages/1053124?format=json","purl":"pkg:deb/debian/phpunit@7.5.6-1","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:deb/debian/phpunit@7.5.6-1"},{"url":"http://public2.vulnerablecode.io/api/packages/1053125?format=json","purl":"pkg:deb/debian/phpunit@9.5.2-1","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:deb/debian/phpunit@9.5.2-1"},{"url":"http://public2.vulnerablecode.io/api/packages/1053126?format=json","purl":"pkg:deb/debian/phpunit@9.6.7-1","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:deb/debian/phpunit@9.6.7-1"},{"url":"http://public2.vulnerablecode.io/api/packages/935280?format=json","purl":"pkg:deb/debian/phpunit@9.6.7-1?distro=trixie","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6bt7-kw89-v3dt"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:deb/debian/phpunit@9.6.7-1%3Fdistro=trixie"}],"references":[{"reference_url":"https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2026-24765.json","reference_id":"","reference_type":"","scores":[{"value":"7.8","scoring_system":"cvssv3","scoring_elements":"CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H"}],"url":"https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2026-24765.json"},{"reference_url":"https://api.first.org/data/v1/epss?cve=CVE-2026-24765","reference_id":"","reference_type":"","scores":[{"value":"0.00106","scoring_system":"epss","scoring_elements":"0.28853","published_at":"2026-04-04T12:55:00Z"},{"value":"0.00106","scoring_system":"epss","scoring_elements":"0.28803","published_at":"2026-04-02T12:55:00Z"},{"value":"0.00123","scoring_system":"epss","scoring_elements":"0.31434","published_at":"2026-04-07T12:55:00Z"},{"value":"0.00123","scoring_system":"epss","scoring_elements":"0.31422","published_at":"2026-04-21T12:55:00Z"},{"value":"0.00123","scoring_system":"epss","scoring_elements":"0.31454","published_at":"2026-04-18T12:55:00Z"},{"value":"0.00123","scoring_system":"epss","scoring_elements":"0.31476","published_at":"2026-04-16T12:55:00Z"},{"value":"0.00123","scoring_system":"epss","scoring_elements":"0.31441","published_at":"2026-04-13T12:55:00Z"},{"value":"0.00123","scoring_system":"epss","scoring_elements":"0.31478","published_at":"2026-04-12T12:55:00Z"},{"value":"0.00123","scoring_system":"epss","scoring_elements":"0.3152","published_at":"2026-04-11T12:55:00Z"},{"value":"0.00123","scoring_system":"epss","scoring_elements":"0.31516","published_at":"2026-04-09T12:55:00Z"},{"value":"0.00123","scoring_system":"epss","scoring_elements":"0.31487","published_at":"2026-04-08T12:55:00Z"},{"value":"0.00126","scoring_system":"epss","scoring_elements":"0.31338","published_at":"2026-05-07T12:55:00Z"},{"value":"0.00126","scoring_system":"epss","scoring_elements":"0.3127","published_at":"2026-05-05T12:55:00Z"},{"value":"0.00126","scoring_system":"epss","scoring_elements":"0.3142","published_at":"2026-04-29T12:55:00Z"},{"value":"0.00126","scoring_system":"epss","scoring_elements":"0.31504","published_at":"2026-04-26T12:55:00Z"},{"value":"0.00126","scoring_system":"epss","scoring_elements":"0.31632","published_at":"2026-04-24T12:55:00Z"},{"value":"0.00126","scoring_system":"epss","scoring_elements":"0.31254","published_at":"2026-05-11T12:55:00Z"},{"value":"0.00126","scoring_system":"epss","scoring_elements":"0.31277","published_at":"2026-05-12T12:55:00Z"},{"value":"0.00126","scoring_system":"epss","scoring_elements":"0.31346","published_at":"2026-05-09T12:55:00Z"}],"url":"https://api.first.org/data/v1/epss?cve=CVE-2026-24765"},{"reference_url":"https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2026-24765","reference_id":"","reference_type":"","scores":[],"url":"https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2026-24765"},{"reference_url":"https://github.com/sebastianbergmann/phpunit","reference_id":"","reference_type":"","scores":[{"value":"7.8","scoring_system":"cvssv3.1","scoring_elements":"CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H"},{"value":"HIGH","scoring_system":"generic_textual","scoring_elements":""}],"url":"https://github.com/sebastianbergmann/phpunit"},{"reference_url":"https://github.com/sebastianbergmann/phpunit/commit/3141742e00620e2968d3d2e732d320de76685fda","reference_id":"","reference_type":"","scores":[{"value":"7.8","scoring_system":"cvssv3.1","scoring_elements":"CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H"},{"value":"HIGH","scoring_system":"generic_textual","scoring_elements":""},{"value":"Track","scoring_system":"ssvc","scoring_elements":"SSVCv2/E:N/A:N/T:T/P:M/B:A/M:M/D:T/2026-01-28T21:13:53Z/"}],"url":"https://github.com/sebastianbergmann/phpunit/commit/3141742e00620e2968d3d2e732d320de76685fda"},{"reference_url":"https://github.com/sebastianbergmann/phpunit/commit/613d142f5a8471ca71623ce5ca2795f79248329e","reference_id":"","reference_type":"","scores":[{"value":"7.8","scoring_system":"cvssv3.1","scoring_elements":"CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H"},{"value":"HIGH","scoring_system":"generic_textual","scoring_elements":""}],"url":"https://github.com/sebastianbergmann/phpunit/commit/613d142f5a8471ca71623ce5ca2795f79248329e"},{"reference_url":"https://github.com/sebastianbergmann/phpunit/releases/tag/10.5.63","reference_id":"","reference_type":"","scores":[{"value":"7.8","scoring_system":"cvssv3.1","scoring_elements":"CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H"},{"value":"HIGH","scoring_system":"generic_textual","scoring_elements":""},{"value":"Track","scoring_system":"ssvc","scoring_elements":"SSVCv2/E:N/A:N/T:T/P:M/B:A/M:M/D:T/2026-01-28T21:13:53Z/"}],"url":"https://github.com/sebastianbergmann/phpunit/releases/tag/10.5.63"},{"reference_url":"https://github.com/sebastianbergmann/phpunit/releases/tag/11.5.50","reference_id":"","reference_type":"","scores":[{"value":"7.8","scoring_system":"cvssv3.1","scoring_elements":"CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H"},{"value":"HIGH","scoring_system":"generic_textual","scoring_elements":""},{"value":"Track","scoring_system":"ssvc","scoring_elements":"SSVCv2/E:N/A:N/T:T/P:M/B:A/M:M/D:T/2026-01-28T21:13:53Z/"}],"url":"https://github.com/sebastianbergmann/phpunit/releases/tag/11.5.50"},{"reference_url":"https://github.com/sebastianbergmann/phpunit/releases/tag/12.5.8","reference_id":"","reference_type":"","scores":[{"value":"7.8","scoring_system":"cvssv3.1","scoring_elements":"CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H"},{"value":"HIGH","scoring_system":"generic_textual","scoring_elements":""},{"value":"Track","scoring_system":"ssvc","scoring_elements":"SSVCv2/E:N/A:N/T:T/P:M/B:A/M:M/D:T/2026-01-28T21:13:53Z/"}],"url":"https://github.com/sebastianbergmann/phpunit/releases/tag/12.5.8"},{"reference_url":"https://github.com/sebastianbergmann/phpunit/releases/tag/8.5.52","reference_id":"","reference_type":"","scores":[{"value":"7.8","scoring_system":"cvssv3.1","scoring_elements":"CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H"},{"value":"HIGH","scoring_system":"generic_textual","scoring_elements":""},{"value":"Track","scoring_system":"ssvc","scoring_elements":"SSVCv2/E:N/A:N/T:T/P:M/B:A/M:M/D:T/2026-01-28T21:13:53Z/"}],"url":"https://github.com/sebastianbergmann/phpunit/releases/tag/8.5.52"},{"reference_url":"https://github.com/sebastianbergmann/phpunit/releases/tag/9.6.33","reference_id":"","reference_type":"","scores":[{"value":"7.8","scoring_system":"cvssv3.1","scoring_elements":"CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H"},{"value":"HIGH","scoring_system":"generic_textual","scoring_elements":""},{"value":"Track","scoring_system":"ssvc","scoring_elements":"SSVCv2/E:N/A:N/T:T/P:M/B:A/M:M/D:T/2026-01-28T21:13:53Z/"}],"url":"https://github.com/sebastianbergmann/phpunit/releases/tag/9.6.33"},{"reference_url":"https://github.com/sebastianbergmann/phpunit/security/advisories/GHSA-vvj3-c3rp-c85p","reference_id":"","reference_type":"","scores":[{"value":"7.8","scoring_system":"cvssv3.1","scoring_elements":"CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H"},{"value":"HIGH","scoring_system":"cvssv3.1_qr","scoring_elements":""},{"value":"HIGH","scoring_system":"generic_textual","scoring_elements":""},{"value":"Track","scoring_system":"ssvc","scoring_elements":"SSVCv2/E:N/A:N/T:T/P:M/B:A/M:M/D:T/2026-01-28T21:13:53Z/"}],"url":"https://github.com/sebastianbergmann/phpunit/security/advisories/GHSA-vvj3-c3rp-c85p"},{"reference_url":"https://lists.debian.org/debian-lts-announce/2026/02/msg00009.html","reference_id":"","reference_type":"","scores":[{"value":"7.8","scoring_system":"cvssv3.1","scoring_elements":"CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H"},{"value":"HIGH","scoring_system":"generic_textual","scoring_elements":""}],"url":"https://lists.debian.org/debian-lts-announce/2026/02/msg00009.html"},{"reference_url":"https://nvd.nist.gov/vuln/detail/CVE-2026-24765","reference_id":"","reference_type":"","scores":[{"value":"7.8","scoring_system":"cvssv3.1","scoring_elements":"CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H"},{"value":"HIGH","scoring_system":"generic_textual","scoring_elements":""}],"url":"https://nvd.nist.gov/vuln/detail/CVE-2026-24765"},{"reference_url":"https://owasp.org/www-project-top-10-ci-cd-security-risks/CICD-SEC-04-Poisoned-Pipeline-Execution","reference_id":"","reference_type":"","scores":[{"value":"7.8","scoring_system":"cvssv3.1","scoring_elements":"CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H"},{"value":"HIGH","scoring_system":"generic_textual","scoring_elements":""}],"url":"https://owasp.org/www-project-top-10-ci-cd-security-risks/CICD-SEC-04-Poisoned-Pipeline-Execution"},{"reference_url":"https://bugzilla.redhat.com/show_bug.cgi?id=2433606","reference_id":"2433606","reference_type":"","scores":[],"url":"https://bugzilla.redhat.com/show_bug.cgi?id=2433606"},{"reference_url":"https://github.com/FriendsOfPHP/security-advisories/blob/master/phpunit/phpunit/CVE-2026-24765.yaml","reference_id":"CVE-2026-24765.YAML","reference_type":"","scores":[{"value":"7.8","scoring_system":"cvssv3.1","scoring_elements":"CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H"},{"value":"HIGH","scoring_system":"generic_textual","scoring_elements":""}],"url":"https://github.com/FriendsOfPHP/security-advisories/blob/master/phpunit/phpunit/CVE-2026-24765.yaml"},{"reference_url":"https://github.com/advisories/GHSA-vvj3-c3rp-c85p","reference_id":"GHSA-vvj3-c3rp-c85p","reference_type":"","scores":[{"value":"HIGH","scoring_system":"cvssv3.1_qr","scoring_elements":""}],"url":"https://github.com/advisories/GHSA-vvj3-c3rp-c85p"}],"weaknesses":[{"cwe_id":502,"name":"Deserialization of Untrusted Data","description":"The product deserializes untrusted data without sufficiently verifying that the resulting data will be valid."},{"cwe_id":937,"name":"OWASP Top Ten 2013 Category A9 - Using Components with Known Vulnerabilities","description":"Weaknesses in this category are related to the A9 category in the OWASP Top Ten 2013."},{"cwe_id":1035,"name":"OWASP Top Ten 2017 Category A9 - Using Components with Known Vulnerabilities","description":"Weaknesses in this category are related to the A9 category in the OWASP Top Ten 2017."}],"exploits":[],"severity_range_score":"7.0 - 8.9","exploitability":"0.5","weighted_severity":"8.0","risk_score":4.0,"resource_url":"http://public2.vulnerablecode.io/vulnerabilities/VCID-6bt7-kw89-v3dt"}