gitextract_nm_wkhzu/ ├── .editorconfig ├── .gitattributes ├── .github/ │ ├── CONTRIBUTING.md │ ├── ISSUE_TEMPLATE.md │ ├── PULL_REQUEST_TEMPLATE.md │ └── workflows/ │ ├── .editorconfig │ ├── static.yml │ └── tests.yml ├── .gitignore ├── .php_cs ├── .scrutinizer.yml ├── .styleci.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── composer.json ├── phpspec.ci.yml ├── phpspec.yml.dist ├── phpstan.neon.dist ├── phpunit.xml.dist ├── src/ │ ├── Cache/ │ │ ├── Generator/ │ │ │ ├── CacheKeyGenerator.php │ │ │ ├── HeaderCacheKeyGenerator.php │ │ │ └── SimpleGenerator.php │ │ └── Listener/ │ │ ├── AddHeaderCacheListener.php │ │ └── CacheListener.php │ ├── CachePlugin.php │ └── Exception/ │ └── RewindStreamException.php └── tests/ └── Cache/ ├── CachePluginTest.php └── Generator/ ├── HeaderCacheKeyGeneratorTest.php └── SimpleGeneratorTest.php