├── .ddev ├── .env ├── commands │ ├── playwright │ │ ├── playwright │ │ └── playwright-install │ └── web │ │ ├── orchestrate │ │ ├── orchestrate.d │ │ ├── 00_download_wordpress.sh │ │ ├── 01_gitignore.sh │ │ ├── 05_wp_config.sh │ │ ├── 10_wp_install.sh │ │ ├── 11_htaccess.sh │ │ ├── 20_cleanup_default_plugins.sh │ │ ├── 25_mu_loader.sh │ │ ├── 30_install_plugin_packages.sh │ │ ├── 35_activate_test_plugin.sh │ │ ├── 45_setup_whoops.sh │ │ └── 60_flush_rewrites.sh │ │ └── wp ├── config.yaml ├── docker-compose.playwright.yaml ├── docker-compose.wp-plugin.yaml ├── homeadditions │ └── .bashrc └── playwright-build │ ├── Dockerfile │ ├── entrypoint.sh │ ├── kasmvnc.yaml │ └── xstartup ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── composer.json ├── dropin └── object-cache.php ├── src ├── Admin │ ├── AdminBarMenu.php │ ├── CacheFlusher.php │ ├── Controller.php │ ├── MenuItem.php │ └── MenuItemProvider.php ├── Cli │ └── WpCliCommand.php ├── Config.php ├── ConfigBuilder.php ├── Debug │ └── ActionLogger.php ├── Generator │ ├── CacheKeyGenerator.php │ ├── KeyGen.php │ ├── MultisiteCacheKeyGenerator.php │ └── MultisiteKeyGen.php ├── ObjectCacheProxy.php ├── Stash │ └── PersistenceAwareComposite.php ├── StashAdapter.php └── WpStash.php └── wp-stash.php /.ddev/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inpsyde/WP-Stash/HEAD/.ddev/.env -------------------------------------------------------------------------------- /.ddev/commands/playwright/playwright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inpsyde/WP-Stash/HEAD/.ddev/commands/playwright/playwright -------------------------------------------------------------------------------- /.ddev/commands/playwright/playwright-install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inpsyde/WP-Stash/HEAD/.ddev/commands/playwright/playwright-install -------------------------------------------------------------------------------- /.ddev/commands/web/orchestrate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inpsyde/WP-Stash/HEAD/.ddev/commands/web/orchestrate -------------------------------------------------------------------------------- /.ddev/commands/web/orchestrate.d/00_download_wordpress.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inpsyde/WP-Stash/HEAD/.ddev/commands/web/orchestrate.d/00_download_wordpress.sh -------------------------------------------------------------------------------- /.ddev/commands/web/orchestrate.d/01_gitignore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inpsyde/WP-Stash/HEAD/.ddev/commands/web/orchestrate.d/01_gitignore.sh -------------------------------------------------------------------------------- /.ddev/commands/web/orchestrate.d/05_wp_config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inpsyde/WP-Stash/HEAD/.ddev/commands/web/orchestrate.d/05_wp_config.sh -------------------------------------------------------------------------------- /.ddev/commands/web/orchestrate.d/10_wp_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inpsyde/WP-Stash/HEAD/.ddev/commands/web/orchestrate.d/10_wp_install.sh -------------------------------------------------------------------------------- /.ddev/commands/web/orchestrate.d/11_htaccess.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inpsyde/WP-Stash/HEAD/.ddev/commands/web/orchestrate.d/11_htaccess.sh -------------------------------------------------------------------------------- /.ddev/commands/web/orchestrate.d/20_cleanup_default_plugins.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inpsyde/WP-Stash/HEAD/.ddev/commands/web/orchestrate.d/20_cleanup_default_plugins.sh -------------------------------------------------------------------------------- /.ddev/commands/web/orchestrate.d/25_mu_loader.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inpsyde/WP-Stash/HEAD/.ddev/commands/web/orchestrate.d/25_mu_loader.sh -------------------------------------------------------------------------------- /.ddev/commands/web/orchestrate.d/30_install_plugin_packages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inpsyde/WP-Stash/HEAD/.ddev/commands/web/orchestrate.d/30_install_plugin_packages.sh -------------------------------------------------------------------------------- /.ddev/commands/web/orchestrate.d/35_activate_test_plugin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inpsyde/WP-Stash/HEAD/.ddev/commands/web/orchestrate.d/35_activate_test_plugin.sh -------------------------------------------------------------------------------- /.ddev/commands/web/orchestrate.d/45_setup_whoops.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inpsyde/WP-Stash/HEAD/.ddev/commands/web/orchestrate.d/45_setup_whoops.sh -------------------------------------------------------------------------------- /.ddev/commands/web/orchestrate.d/60_flush_rewrites.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inpsyde/WP-Stash/HEAD/.ddev/commands/web/orchestrate.d/60_flush_rewrites.sh -------------------------------------------------------------------------------- /.ddev/commands/web/wp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inpsyde/WP-Stash/HEAD/.ddev/commands/web/wp -------------------------------------------------------------------------------- /.ddev/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inpsyde/WP-Stash/HEAD/.ddev/config.yaml -------------------------------------------------------------------------------- /.ddev/docker-compose.playwright.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inpsyde/WP-Stash/HEAD/.ddev/docker-compose.playwright.yaml -------------------------------------------------------------------------------- /.ddev/docker-compose.wp-plugin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inpsyde/WP-Stash/HEAD/.ddev/docker-compose.wp-plugin.yaml -------------------------------------------------------------------------------- /.ddev/homeadditions/.bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inpsyde/WP-Stash/HEAD/.ddev/homeadditions/.bashrc -------------------------------------------------------------------------------- /.ddev/playwright-build/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inpsyde/WP-Stash/HEAD/.ddev/playwright-build/Dockerfile -------------------------------------------------------------------------------- /.ddev/playwright-build/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inpsyde/WP-Stash/HEAD/.ddev/playwright-build/entrypoint.sh -------------------------------------------------------------------------------- /.ddev/playwright-build/kasmvnc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inpsyde/WP-Stash/HEAD/.ddev/playwright-build/kasmvnc.yaml -------------------------------------------------------------------------------- /.ddev/playwright-build/xstartup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inpsyde/WP-Stash/HEAD/.ddev/playwright-build/xstartup -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inpsyde/WP-Stash/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inpsyde/WP-Stash/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inpsyde/WP-Stash/HEAD/LICENSE -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inpsyde/WP-Stash/HEAD/composer.json -------------------------------------------------------------------------------- /dropin/object-cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inpsyde/WP-Stash/HEAD/dropin/object-cache.php -------------------------------------------------------------------------------- /src/Admin/AdminBarMenu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inpsyde/WP-Stash/HEAD/src/Admin/AdminBarMenu.php -------------------------------------------------------------------------------- /src/Admin/CacheFlusher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inpsyde/WP-Stash/HEAD/src/Admin/CacheFlusher.php -------------------------------------------------------------------------------- /src/Admin/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inpsyde/WP-Stash/HEAD/src/Admin/Controller.php -------------------------------------------------------------------------------- /src/Admin/MenuItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inpsyde/WP-Stash/HEAD/src/Admin/MenuItem.php -------------------------------------------------------------------------------- /src/Admin/MenuItemProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inpsyde/WP-Stash/HEAD/src/Admin/MenuItemProvider.php -------------------------------------------------------------------------------- /src/Cli/WpCliCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inpsyde/WP-Stash/HEAD/src/Cli/WpCliCommand.php -------------------------------------------------------------------------------- /src/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inpsyde/WP-Stash/HEAD/src/Config.php -------------------------------------------------------------------------------- /src/ConfigBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inpsyde/WP-Stash/HEAD/src/ConfigBuilder.php -------------------------------------------------------------------------------- /src/Debug/ActionLogger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inpsyde/WP-Stash/HEAD/src/Debug/ActionLogger.php -------------------------------------------------------------------------------- /src/Generator/CacheKeyGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inpsyde/WP-Stash/HEAD/src/Generator/CacheKeyGenerator.php -------------------------------------------------------------------------------- /src/Generator/KeyGen.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inpsyde/WP-Stash/HEAD/src/Generator/KeyGen.php -------------------------------------------------------------------------------- /src/Generator/MultisiteCacheKeyGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inpsyde/WP-Stash/HEAD/src/Generator/MultisiteCacheKeyGenerator.php -------------------------------------------------------------------------------- /src/Generator/MultisiteKeyGen.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inpsyde/WP-Stash/HEAD/src/Generator/MultisiteKeyGen.php -------------------------------------------------------------------------------- /src/ObjectCacheProxy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inpsyde/WP-Stash/HEAD/src/ObjectCacheProxy.php -------------------------------------------------------------------------------- /src/Stash/PersistenceAwareComposite.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inpsyde/WP-Stash/HEAD/src/Stash/PersistenceAwareComposite.php -------------------------------------------------------------------------------- /src/StashAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inpsyde/WP-Stash/HEAD/src/StashAdapter.php -------------------------------------------------------------------------------- /src/WpStash.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inpsyde/WP-Stash/HEAD/src/WpStash.php -------------------------------------------------------------------------------- /wp-stash.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inpsyde/WP-Stash/HEAD/wp-stash.php --------------------------------------------------------------------------------