├── Dockerfile ├── LICENSE ├── README.md ├── assets ├── css │ └── styles.css ├── favicon.png ├── icons │ ├── close.svg │ ├── dashboards │ │ ├── apcu.svg │ │ ├── memcached.svg │ │ ├── opcache.svg │ │ ├── realpath.svg │ │ ├── redis.svg │ │ └── server.svg │ ├── down.svg │ ├── edit.svg │ ├── export.svg │ ├── github.svg │ ├── import.svg │ ├── logo.svg │ ├── logout.svg │ ├── moon.svg │ ├── plus.svg │ ├── save.svg │ ├── search.svg │ ├── sun.svg │ ├── system.svg │ ├── tableview.svg │ ├── trash.svg │ └── treeview.svg └── js │ ├── echarts.min.js │ └── scripts.js ├── composer.json ├── config.dist.php ├── docker-compose.yml ├── index.php ├── predis.phar ├── src ├── Admin.php ├── Config.php ├── Dashboards │ ├── APCu │ │ ├── APCuDashboard.php │ │ └── APCuTrait.php │ ├── DashboardException.php │ ├── DashboardInterface.php │ ├── Memcached │ │ ├── MemcachedDashboard.php │ │ ├── MemcachedException.php │ │ ├── MemcachedMetrics.php │ │ ├── MemcachedTrait.php │ │ └── PHPMem.php │ ├── OPCache │ │ ├── OPCacheDashboard.php │ │ └── OPCacheTrait.php │ ├── Realpath │ │ ├── RealpathDashboard.php │ │ └── RealpathTrait.php │ ├── Redis │ │ ├── Compatibility │ │ │ ├── Cluster │ │ │ │ ├── PredisCluster.php │ │ │ │ └── RedisCluster.php │ │ │ ├── Predis.php │ │ │ ├── Redis.php │ │ │ ├── RedisCompatibilityInterface.php │ │ │ ├── RedisJson.php │ │ │ ├── RedisModules.php │ │ │ └── get_key_info.lua │ │ ├── RedisDashboard.php │ │ ├── RedisMetrics.php │ │ ├── RedisTrait.php │ │ └── RedisTypes.php │ └── Server │ │ ├── ServerDashboard.php │ │ └── ServerTrait.php ├── Format.php ├── Helpers.php ├── Http.php ├── Paginator.php ├── Template.php ├── Value.php └── functions.php ├── templates ├── components │ ├── alert.twig │ ├── badge.twig │ ├── button.twig │ ├── input.twig │ ├── macros.twig │ ├── modal.twig │ ├── paginator.twig │ ├── select.twig │ ├── tabs.twig │ └── textarea.twig ├── dashboards │ ├── apcu.twig │ ├── memcached │ │ ├── memcached.twig │ │ └── metrics.twig │ ├── opcache.twig │ ├── realpath.twig │ ├── redis │ │ ├── form.twig │ │ ├── metrics.twig │ │ └── redis.twig │ └── server.twig ├── layout.twig └── partials │ ├── form.twig │ ├── import_form.twig │ ├── info.twig │ ├── info_table.twig │ ├── keys_list.twig │ ├── panel.twig │ ├── table_view.twig │ ├── tree_view.twig │ ├── view_key.twig │ └── view_key_array.twig └── twig.phar /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobiNN1/phpCacheAdmin/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobiNN1/phpCacheAdmin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobiNN1/phpCacheAdmin/HEAD/README.md -------------------------------------------------------------------------------- /assets/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobiNN1/phpCacheAdmin/HEAD/assets/css/styles.css -------------------------------------------------------------------------------- /assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobiNN1/phpCacheAdmin/HEAD/assets/favicon.png -------------------------------------------------------------------------------- /assets/icons/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobiNN1/phpCacheAdmin/HEAD/assets/icons/close.svg -------------------------------------------------------------------------------- /assets/icons/dashboards/apcu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobiNN1/phpCacheAdmin/HEAD/assets/icons/dashboards/apcu.svg -------------------------------------------------------------------------------- /assets/icons/dashboards/memcached.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobiNN1/phpCacheAdmin/HEAD/assets/icons/dashboards/memcached.svg -------------------------------------------------------------------------------- /assets/icons/dashboards/opcache.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobiNN1/phpCacheAdmin/HEAD/assets/icons/dashboards/opcache.svg -------------------------------------------------------------------------------- /assets/icons/dashboards/realpath.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobiNN1/phpCacheAdmin/HEAD/assets/icons/dashboards/realpath.svg -------------------------------------------------------------------------------- /assets/icons/dashboards/redis.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobiNN1/phpCacheAdmin/HEAD/assets/icons/dashboards/redis.svg -------------------------------------------------------------------------------- /assets/icons/dashboards/server.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobiNN1/phpCacheAdmin/HEAD/assets/icons/dashboards/server.svg -------------------------------------------------------------------------------- /assets/icons/down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobiNN1/phpCacheAdmin/HEAD/assets/icons/down.svg -------------------------------------------------------------------------------- /assets/icons/edit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobiNN1/phpCacheAdmin/HEAD/assets/icons/edit.svg -------------------------------------------------------------------------------- /assets/icons/export.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobiNN1/phpCacheAdmin/HEAD/assets/icons/export.svg -------------------------------------------------------------------------------- /assets/icons/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobiNN1/phpCacheAdmin/HEAD/assets/icons/github.svg -------------------------------------------------------------------------------- /assets/icons/import.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobiNN1/phpCacheAdmin/HEAD/assets/icons/import.svg -------------------------------------------------------------------------------- /assets/icons/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobiNN1/phpCacheAdmin/HEAD/assets/icons/logo.svg -------------------------------------------------------------------------------- /assets/icons/logout.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobiNN1/phpCacheAdmin/HEAD/assets/icons/logout.svg -------------------------------------------------------------------------------- /assets/icons/moon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobiNN1/phpCacheAdmin/HEAD/assets/icons/moon.svg -------------------------------------------------------------------------------- /assets/icons/plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobiNN1/phpCacheAdmin/HEAD/assets/icons/plus.svg -------------------------------------------------------------------------------- /assets/icons/save.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobiNN1/phpCacheAdmin/HEAD/assets/icons/save.svg -------------------------------------------------------------------------------- /assets/icons/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobiNN1/phpCacheAdmin/HEAD/assets/icons/search.svg -------------------------------------------------------------------------------- /assets/icons/sun.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobiNN1/phpCacheAdmin/HEAD/assets/icons/sun.svg -------------------------------------------------------------------------------- /assets/icons/system.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobiNN1/phpCacheAdmin/HEAD/assets/icons/system.svg -------------------------------------------------------------------------------- /assets/icons/tableview.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobiNN1/phpCacheAdmin/HEAD/assets/icons/tableview.svg -------------------------------------------------------------------------------- /assets/icons/trash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobiNN1/phpCacheAdmin/HEAD/assets/icons/trash.svg -------------------------------------------------------------------------------- /assets/icons/treeview.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobiNN1/phpCacheAdmin/HEAD/assets/icons/treeview.svg -------------------------------------------------------------------------------- /assets/js/echarts.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobiNN1/phpCacheAdmin/HEAD/assets/js/echarts.min.js -------------------------------------------------------------------------------- /assets/js/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobiNN1/phpCacheAdmin/HEAD/assets/js/scripts.js -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobiNN1/phpCacheAdmin/HEAD/composer.json -------------------------------------------------------------------------------- /config.dist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobiNN1/phpCacheAdmin/HEAD/config.dist.php -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobiNN1/phpCacheAdmin/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobiNN1/phpCacheAdmin/HEAD/index.php -------------------------------------------------------------------------------- /predis.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobiNN1/phpCacheAdmin/HEAD/predis.phar -------------------------------------------------------------------------------- /src/Admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobiNN1/phpCacheAdmin/HEAD/src/Admin.php -------------------------------------------------------------------------------- /src/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobiNN1/phpCacheAdmin/HEAD/src/Config.php -------------------------------------------------------------------------------- /src/Dashboards/APCu/APCuDashboard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobiNN1/phpCacheAdmin/HEAD/src/Dashboards/APCu/APCuDashboard.php -------------------------------------------------------------------------------- /src/Dashboards/APCu/APCuTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobiNN1/phpCacheAdmin/HEAD/src/Dashboards/APCu/APCuTrait.php -------------------------------------------------------------------------------- /src/Dashboards/DashboardException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobiNN1/phpCacheAdmin/HEAD/src/Dashboards/DashboardException.php -------------------------------------------------------------------------------- /src/Dashboards/DashboardInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobiNN1/phpCacheAdmin/HEAD/src/Dashboards/DashboardInterface.php -------------------------------------------------------------------------------- /src/Dashboards/Memcached/MemcachedDashboard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobiNN1/phpCacheAdmin/HEAD/src/Dashboards/Memcached/MemcachedDashboard.php -------------------------------------------------------------------------------- /src/Dashboards/Memcached/MemcachedException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobiNN1/phpCacheAdmin/HEAD/src/Dashboards/Memcached/MemcachedException.php -------------------------------------------------------------------------------- /src/Dashboards/Memcached/MemcachedMetrics.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobiNN1/phpCacheAdmin/HEAD/src/Dashboards/Memcached/MemcachedMetrics.php -------------------------------------------------------------------------------- /src/Dashboards/Memcached/MemcachedTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobiNN1/phpCacheAdmin/HEAD/src/Dashboards/Memcached/MemcachedTrait.php -------------------------------------------------------------------------------- /src/Dashboards/Memcached/PHPMem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobiNN1/phpCacheAdmin/HEAD/src/Dashboards/Memcached/PHPMem.php -------------------------------------------------------------------------------- /src/Dashboards/OPCache/OPCacheDashboard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobiNN1/phpCacheAdmin/HEAD/src/Dashboards/OPCache/OPCacheDashboard.php -------------------------------------------------------------------------------- /src/Dashboards/OPCache/OPCacheTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobiNN1/phpCacheAdmin/HEAD/src/Dashboards/OPCache/OPCacheTrait.php -------------------------------------------------------------------------------- /src/Dashboards/Realpath/RealpathDashboard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobiNN1/phpCacheAdmin/HEAD/src/Dashboards/Realpath/RealpathDashboard.php -------------------------------------------------------------------------------- /src/Dashboards/Realpath/RealpathTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobiNN1/phpCacheAdmin/HEAD/src/Dashboards/Realpath/RealpathTrait.php -------------------------------------------------------------------------------- /src/Dashboards/Redis/Compatibility/Cluster/PredisCluster.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobiNN1/phpCacheAdmin/HEAD/src/Dashboards/Redis/Compatibility/Cluster/PredisCluster.php -------------------------------------------------------------------------------- /src/Dashboards/Redis/Compatibility/Cluster/RedisCluster.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobiNN1/phpCacheAdmin/HEAD/src/Dashboards/Redis/Compatibility/Cluster/RedisCluster.php -------------------------------------------------------------------------------- /src/Dashboards/Redis/Compatibility/Predis.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobiNN1/phpCacheAdmin/HEAD/src/Dashboards/Redis/Compatibility/Predis.php -------------------------------------------------------------------------------- /src/Dashboards/Redis/Compatibility/Redis.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobiNN1/phpCacheAdmin/HEAD/src/Dashboards/Redis/Compatibility/Redis.php -------------------------------------------------------------------------------- /src/Dashboards/Redis/Compatibility/RedisCompatibilityInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobiNN1/phpCacheAdmin/HEAD/src/Dashboards/Redis/Compatibility/RedisCompatibilityInterface.php -------------------------------------------------------------------------------- /src/Dashboards/Redis/Compatibility/RedisJson.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobiNN1/phpCacheAdmin/HEAD/src/Dashboards/Redis/Compatibility/RedisJson.php -------------------------------------------------------------------------------- /src/Dashboards/Redis/Compatibility/RedisModules.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobiNN1/phpCacheAdmin/HEAD/src/Dashboards/Redis/Compatibility/RedisModules.php -------------------------------------------------------------------------------- /src/Dashboards/Redis/Compatibility/get_key_info.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobiNN1/phpCacheAdmin/HEAD/src/Dashboards/Redis/Compatibility/get_key_info.lua -------------------------------------------------------------------------------- /src/Dashboards/Redis/RedisDashboard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobiNN1/phpCacheAdmin/HEAD/src/Dashboards/Redis/RedisDashboard.php -------------------------------------------------------------------------------- /src/Dashboards/Redis/RedisMetrics.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobiNN1/phpCacheAdmin/HEAD/src/Dashboards/Redis/RedisMetrics.php -------------------------------------------------------------------------------- /src/Dashboards/Redis/RedisTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobiNN1/phpCacheAdmin/HEAD/src/Dashboards/Redis/RedisTrait.php -------------------------------------------------------------------------------- /src/Dashboards/Redis/RedisTypes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobiNN1/phpCacheAdmin/HEAD/src/Dashboards/Redis/RedisTypes.php -------------------------------------------------------------------------------- /src/Dashboards/Server/ServerDashboard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobiNN1/phpCacheAdmin/HEAD/src/Dashboards/Server/ServerDashboard.php -------------------------------------------------------------------------------- /src/Dashboards/Server/ServerTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobiNN1/phpCacheAdmin/HEAD/src/Dashboards/Server/ServerTrait.php -------------------------------------------------------------------------------- /src/Format.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobiNN1/phpCacheAdmin/HEAD/src/Format.php -------------------------------------------------------------------------------- /src/Helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobiNN1/phpCacheAdmin/HEAD/src/Helpers.php -------------------------------------------------------------------------------- /src/Http.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobiNN1/phpCacheAdmin/HEAD/src/Http.php -------------------------------------------------------------------------------- /src/Paginator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobiNN1/phpCacheAdmin/HEAD/src/Paginator.php -------------------------------------------------------------------------------- /src/Template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobiNN1/phpCacheAdmin/HEAD/src/Template.php -------------------------------------------------------------------------------- /src/Value.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobiNN1/phpCacheAdmin/HEAD/src/Value.php -------------------------------------------------------------------------------- /src/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobiNN1/phpCacheAdmin/HEAD/src/functions.php -------------------------------------------------------------------------------- /templates/components/alert.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobiNN1/phpCacheAdmin/HEAD/templates/components/alert.twig -------------------------------------------------------------------------------- /templates/components/badge.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobiNN1/phpCacheAdmin/HEAD/templates/components/badge.twig -------------------------------------------------------------------------------- /templates/components/button.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobiNN1/phpCacheAdmin/HEAD/templates/components/button.twig -------------------------------------------------------------------------------- /templates/components/input.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobiNN1/phpCacheAdmin/HEAD/templates/components/input.twig -------------------------------------------------------------------------------- /templates/components/macros.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobiNN1/phpCacheAdmin/HEAD/templates/components/macros.twig -------------------------------------------------------------------------------- /templates/components/modal.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobiNN1/phpCacheAdmin/HEAD/templates/components/modal.twig -------------------------------------------------------------------------------- /templates/components/paginator.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobiNN1/phpCacheAdmin/HEAD/templates/components/paginator.twig -------------------------------------------------------------------------------- /templates/components/select.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobiNN1/phpCacheAdmin/HEAD/templates/components/select.twig -------------------------------------------------------------------------------- /templates/components/tabs.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobiNN1/phpCacheAdmin/HEAD/templates/components/tabs.twig -------------------------------------------------------------------------------- /templates/components/textarea.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobiNN1/phpCacheAdmin/HEAD/templates/components/textarea.twig -------------------------------------------------------------------------------- /templates/dashboards/apcu.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobiNN1/phpCacheAdmin/HEAD/templates/dashboards/apcu.twig -------------------------------------------------------------------------------- /templates/dashboards/memcached/memcached.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobiNN1/phpCacheAdmin/HEAD/templates/dashboards/memcached/memcached.twig -------------------------------------------------------------------------------- /templates/dashboards/memcached/metrics.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobiNN1/phpCacheAdmin/HEAD/templates/dashboards/memcached/metrics.twig -------------------------------------------------------------------------------- /templates/dashboards/opcache.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobiNN1/phpCacheAdmin/HEAD/templates/dashboards/opcache.twig -------------------------------------------------------------------------------- /templates/dashboards/realpath.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobiNN1/phpCacheAdmin/HEAD/templates/dashboards/realpath.twig -------------------------------------------------------------------------------- /templates/dashboards/redis/form.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobiNN1/phpCacheAdmin/HEAD/templates/dashboards/redis/form.twig -------------------------------------------------------------------------------- /templates/dashboards/redis/metrics.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobiNN1/phpCacheAdmin/HEAD/templates/dashboards/redis/metrics.twig -------------------------------------------------------------------------------- /templates/dashboards/redis/redis.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobiNN1/phpCacheAdmin/HEAD/templates/dashboards/redis/redis.twig -------------------------------------------------------------------------------- /templates/dashboards/server.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobiNN1/phpCacheAdmin/HEAD/templates/dashboards/server.twig -------------------------------------------------------------------------------- /templates/layout.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobiNN1/phpCacheAdmin/HEAD/templates/layout.twig -------------------------------------------------------------------------------- /templates/partials/form.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobiNN1/phpCacheAdmin/HEAD/templates/partials/form.twig -------------------------------------------------------------------------------- /templates/partials/import_form.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobiNN1/phpCacheAdmin/HEAD/templates/partials/import_form.twig -------------------------------------------------------------------------------- /templates/partials/info.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobiNN1/phpCacheAdmin/HEAD/templates/partials/info.twig -------------------------------------------------------------------------------- /templates/partials/info_table.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobiNN1/phpCacheAdmin/HEAD/templates/partials/info_table.twig -------------------------------------------------------------------------------- /templates/partials/keys_list.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobiNN1/phpCacheAdmin/HEAD/templates/partials/keys_list.twig -------------------------------------------------------------------------------- /templates/partials/panel.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobiNN1/phpCacheAdmin/HEAD/templates/partials/panel.twig -------------------------------------------------------------------------------- /templates/partials/table_view.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobiNN1/phpCacheAdmin/HEAD/templates/partials/table_view.twig -------------------------------------------------------------------------------- /templates/partials/tree_view.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobiNN1/phpCacheAdmin/HEAD/templates/partials/tree_view.twig -------------------------------------------------------------------------------- /templates/partials/view_key.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobiNN1/phpCacheAdmin/HEAD/templates/partials/view_key.twig -------------------------------------------------------------------------------- /templates/partials/view_key_array.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobiNN1/phpCacheAdmin/HEAD/templates/partials/view_key_array.twig -------------------------------------------------------------------------------- /twig.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobiNN1/phpCacheAdmin/HEAD/twig.phar --------------------------------------------------------------------------------