Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Support for Symfony 6 * TASK: Cleanup GitHub workflows * FIX: Allow phpstan/extension-install composer plugin * Cleanup .gitattributes with export-ignore * TASK: Use composer-install action for workflows * TASK: Apply codestyle fixes * FIX: Fix scrutinizer workflow action uploading * TASK: Added php-xdebug ext to workspace docker container * FEATURE: Allow lower versions of symfony/event-dispatcher * TASK: Ignore phpstan error * FEATURE: Upgrade phpstan * TASK: Refactor GitHub workflow * FEATURE: Workspace docker image for php 8.1 added * FEATURE: Test against php 8.1 with GitHub workflows * FIX: Fixed several issues with occurred with php >= 8.1 * TASK: Disable failing fast while running phpunit tests * FIX: Fix phpstan issues and invalid BlackholeTest * FIX: Raise minimum version of phpunit * FEATURE: Restructure GitHub Workflow * FEATURE: Added editorconfig checker * FIX: Fix editorconfig violations * TASK: Added .editorconfig to export-ignore via .gitattributes * FEATURE: Install editorconfig-checker wrapper for php * TASK: Fix export-ignore for phpstan in .gitattributes * TASK: Do not exclude defaults for editorconfig checker * Rework php-vcr#161. Manage request index state in Videorecorder. Enable Cassette to playback and record request/responses at a given index. Do not require Cassette to manage index state. * $index should not be a required parameter on record(). Avoid unecessary API changes. * Ensure that the cassette indexes are reset when the cassette is ejected or inserted. * Use equals not identical operator when comparing the request index to the recording index. * Spport legacy cassettes. Create a recording index of 0 if no index key exists in the cassette. * Add comment punctuation. * Add testPlaybackLegacyCassette() to ensure that legacy cassettes with no index keys playback. * Add tests ensuring that both legacy (non-indexed) cassettes and indexed cassettes playback multiple identical requests correctly. * Modify testInsertCassetteEjectExisting() to ensure that resetIndex() is called as part of eject() and insertCassette(). * Remove redundant testPlaybackLegacyCassette(). * Fix indents. * FEATURE: Added testcase for mixed cassettes (with and without legacy entries) * FIX: Fixed remaining phpstan errors * FIX: Indentions * FIX: Videorecorder always raised index for identical requests, Cassette have to handle legacy entries Because the Videorecorder increments the index for each identical requests it also passes it to the cassette, so the cassette have to handle legacy stored entries. So if no index is present while loading recorded requests we have to set the index to searched one (instead of zero) to always match (disabled the feature), when all other matchers match. * Revert "FEATURE: Added testcase for mixed cassettes" This reverts commit ce1471b. * FIX: Fixed remaining phpstan errors * FIX: README.md badge * Add CURLINFO_APPCONNECT_TIME to CurlHelper Fixes php-vcr#309 * Fix CurlHookTest.php * FIX: Read the whole stream and perform code transformations First read the whole stream and afterwards perform code transformations. This will ensure to also replace code, which is divided into chunks while reading a file. Fixes php-vcr#268 * FIX: Codestyle * FIX: Codestyle * TASK: Update README.md * TASK: Drop support for php 8.2 Currently, the php-vcr library does not work well with php 8.2 so we drop the support for now until it is fixed. * TASK: Apply codestyle * FEATURE: Fix/review phpstan errors * FEATURE: Custom workspace docker file for php 8.2 added * FEATURE: Added php 8.2 to GitHub workflow * TASK: Add support for php 8.2 * TASK: Added support for php greater than 8.2.9 * FIX: Initialized typed property * Add SOAP extension requirement for running tests * (tech) add PHP 8.3 support * FIX: Fixed nullable types * TASK: Fix phpstan error (by generating new baseline) * FEATURE: Added php 8.3 workspace docker image * Add support Symfony 7 * Remove trailing semicolon in Content-Type header * Adjust SOAP v1.1 header expectation in test * Fix PHPUnit deprecations * Fix set_stream_options arguments * TASK: Apply code style fixes * FIX: Added new baseline * FIX: Removed phpstan ignore (there is no error to ignore) * FIX: Gnerated phpstan baseline * add PHP 8.4 support * add support * fix cs * skip soap tests due to problem with them * phpstan, cs * remove scruitinizer reports --------- Co-authored-by: nicodemuz <[email protected]> Co-authored-by: Daniel Hürtgen <[email protected]> Co-authored-by: Daniel Hürtgen <[email protected]> Co-authored-by: Brian Wood <[email protected]> Co-authored-by: oranges13 <[email protected]> Co-authored-by: Peter <[email protected]> Co-authored-by: ecourtial <[email protected]> Co-authored-by: yethee <[email protected]> Co-authored-by: alexzabolotny <[email protected]> Co-authored-by: Lars Strojny <[email protected]> Co-authored-by: Masaki Kawaguchi <[email protected]>
- Loading branch information