├── .gitignore ├── README.md ├── composer.json ├── phpcs.xml ├── phpstan.neon ├── tiny-cache.php ├── tiny-nav-menu-cache.php └── tiny-translation-cache.php /.gitignore: -------------------------------------------------------------------------------- 1 | /composer.lock 2 | /vendor/ 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szepeviktor/tiny-cache/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szepeviktor/tiny-cache/HEAD/composer.json -------------------------------------------------------------------------------- /phpcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szepeviktor/tiny-cache/HEAD/phpcs.xml -------------------------------------------------------------------------------- /phpstan.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szepeviktor/tiny-cache/HEAD/phpstan.neon -------------------------------------------------------------------------------- /tiny-cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szepeviktor/tiny-cache/HEAD/tiny-cache.php -------------------------------------------------------------------------------- /tiny-nav-menu-cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szepeviktor/tiny-cache/HEAD/tiny-nav-menu-cache.php -------------------------------------------------------------------------------- /tiny-translation-cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szepeviktor/tiny-cache/HEAD/tiny-translation-cache.php --------------------------------------------------------------------------------