├── .gitignore ├── LICENCE ├── README.md ├── cachemonster ├── CacheMonsterPlugin.php ├── controllers │ └── CacheMonsterController.php ├── services │ └── CacheMonsterService.php ├── tasks │ ├── CacheMonster_PurgeTask.php │ └── CacheMonster_WarmTask.php └── templates │ └── settings.twig ├── docs ├── 0-index.md ├── 1-how-it-works.md ├── 2-integrating-craft-with-varnish.md └── 3-sitemap-crawler.md └── release-notes.json /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supercool/Cache-Monster/HEAD/LICENCE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supercool/Cache-Monster/HEAD/README.md -------------------------------------------------------------------------------- /cachemonster/CacheMonsterPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supercool/Cache-Monster/HEAD/cachemonster/CacheMonsterPlugin.php -------------------------------------------------------------------------------- /cachemonster/controllers/CacheMonsterController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supercool/Cache-Monster/HEAD/cachemonster/controllers/CacheMonsterController.php -------------------------------------------------------------------------------- /cachemonster/services/CacheMonsterService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supercool/Cache-Monster/HEAD/cachemonster/services/CacheMonsterService.php -------------------------------------------------------------------------------- /cachemonster/tasks/CacheMonster_PurgeTask.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supercool/Cache-Monster/HEAD/cachemonster/tasks/CacheMonster_PurgeTask.php -------------------------------------------------------------------------------- /cachemonster/tasks/CacheMonster_WarmTask.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supercool/Cache-Monster/HEAD/cachemonster/tasks/CacheMonster_WarmTask.php -------------------------------------------------------------------------------- /cachemonster/templates/settings.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supercool/Cache-Monster/HEAD/cachemonster/templates/settings.twig -------------------------------------------------------------------------------- /docs/0-index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supercool/Cache-Monster/HEAD/docs/0-index.md -------------------------------------------------------------------------------- /docs/1-how-it-works.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supercool/Cache-Monster/HEAD/docs/1-how-it-works.md -------------------------------------------------------------------------------- /docs/2-integrating-craft-with-varnish.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supercool/Cache-Monster/HEAD/docs/2-integrating-craft-with-varnish.md -------------------------------------------------------------------------------- /docs/3-sitemap-crawler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supercool/Cache-Monster/HEAD/docs/3-sitemap-crawler.md -------------------------------------------------------------------------------- /release-notes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supercool/Cache-Monster/HEAD/release-notes.json --------------------------------------------------------------------------------