├── CHANGELOG.md ├── LICENSE ├── README.md ├── composer.json ├── phpstan.neon.dist └── src ├── NamingStrategy ├── NamingStrategyInterface.php └── PathNamingStrategy.php ├── RecordPlugin.php ├── Recorder ├── FilesystemRecorder.php ├── InMemoryRecorder.php ├── PlayerInterface.php └── RecorderInterface.php └── ReplayPlugin.php /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-http/vcr-plugin/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-http/vcr-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-http/vcr-plugin/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-http/vcr-plugin/HEAD/composer.json -------------------------------------------------------------------------------- /phpstan.neon.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-http/vcr-plugin/HEAD/phpstan.neon.dist -------------------------------------------------------------------------------- /src/NamingStrategy/NamingStrategyInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-http/vcr-plugin/HEAD/src/NamingStrategy/NamingStrategyInterface.php -------------------------------------------------------------------------------- /src/NamingStrategy/PathNamingStrategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-http/vcr-plugin/HEAD/src/NamingStrategy/PathNamingStrategy.php -------------------------------------------------------------------------------- /src/RecordPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-http/vcr-plugin/HEAD/src/RecordPlugin.php -------------------------------------------------------------------------------- /src/Recorder/FilesystemRecorder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-http/vcr-plugin/HEAD/src/Recorder/FilesystemRecorder.php -------------------------------------------------------------------------------- /src/Recorder/InMemoryRecorder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-http/vcr-plugin/HEAD/src/Recorder/InMemoryRecorder.php -------------------------------------------------------------------------------- /src/Recorder/PlayerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-http/vcr-plugin/HEAD/src/Recorder/PlayerInterface.php -------------------------------------------------------------------------------- /src/Recorder/RecorderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-http/vcr-plugin/HEAD/src/Recorder/RecorderInterface.php -------------------------------------------------------------------------------- /src/ReplayPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-http/vcr-plugin/HEAD/src/ReplayPlugin.php --------------------------------------------------------------------------------