gitextract_4su6f833/ ├── .doctrine-project.json ├── .gitattributes ├── .github/ │ ├── FUNDING.yml │ └── workflows/ │ ├── coding-standards.yml │ ├── continuous-integration.yml │ └── release-on-milestone-closed.yml ├── .gitignore ├── LICENSE ├── README.md ├── UPGRADE-1.11.md ├── UPGRADE-1.4.md ├── build.properties ├── build.xml ├── composer.json ├── docs/ │ └── en/ │ └── index.rst ├── lib/ │ └── Doctrine/ │ └── Common/ │ └── Cache/ │ ├── Cache.php │ ├── CacheProvider.php │ ├── ClearableCache.php │ ├── FlushableCache.php │ ├── MultiDeleteCache.php │ ├── MultiGetCache.php │ ├── MultiOperationCache.php │ ├── MultiPutCache.php │ └── Psr6/ │ ├── CacheAdapter.php │ ├── CacheItem.php │ ├── DoctrineProvider.php │ ├── InvalidArgument.php │ └── TypedCacheItem.php ├── phpcs.xml.dist ├── phpunit.xml.dist └── tests/ ├── Doctrine/ │ └── Tests/ │ ├── Common/ │ │ └── Cache/ │ │ ├── ArrayCache.php │ │ ├── ArrayCacheTest.php │ │ ├── CacheProviderTest.php │ │ ├── CacheTest.php │ │ └── Psr6/ │ │ ├── CacheAdapterTest.php │ │ └── DoctrineProviderTest.php │ └── DoctrineTestCase.php └── travis/ └── php.ini