{"id":16890738,"url":"https://github.com/z-song/redis-manager","last_synced_at":"2025-10-09T00:08:33.178Z","repository":{"id":56977626,"uuid":"114085132","full_name":"z-song/redis-manager","owner":"z-song","description":"Integrates your Laravel application with a redis manager","archived":false,"fork":false,"pushed_at":"2018-04-24T09:26:55.000Z","size":1106,"stargazers_count":250,"open_issues_count":5,"forks_count":34,"subscribers_count":10,"default_branch":"master","last_synced_at":"2025-10-09T00:06:00.478Z","etag":null,"topics":["laravel","manager","redis"],"latest_commit_sha":null,"homepage":"https://zsong.me/redis-manager/","language":"Vue","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/z-song.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2017-12-13T06:52:08.000Z","updated_at":"2024-12-17T14:11:33.000Z","dependencies_parsed_at":"2022-08-21T11:50:30.376Z","dependency_job_id":null,"html_url":"https://github.com/z-song/redis-manager","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/z-song/redis-manager","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/z-song%2Fredis-manager","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/z-song%2Fredis-manager/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/z-song%2Fredis-manager/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/z-song%2Fredis-manager/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/z-song","download_url":"https://codeload.github.com/z-song/redis-manager/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/z-song%2Fredis-manager/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279000744,"owners_count":26082879,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-08T02:00:06.501Z","response_time":56,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["laravel","manager","redis"],"created_at":"2024-10-13T17:04:14.666Z","updated_at":"2025-10-09T00:08:33.148Z","avatar_url":"https://github.com/z-song.png","language":"Vue","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\u003cimg src=\"https://zsong.me/vendor/redis-manager/img/logo.svg\" alt=\"redis-manager\"\u003e\u003c/p\u003e\n\n\u003cp align=\"center\"\u003e\n    \u003ca href=\"https://styleci.io/repos/114085132\"\u003e\n        \u003cimg src=\"https://styleci.io/repos/114085132/shield\" alt=\"StyleCI\"\u003e\n    \u003c/a\u003e\n    \u003ca href=\"https://packagist.org/packages/encore/redis-manager\"\u003e\n        \u003cimg src=\"https://img.shields.io/packagist/l/encore/redis-manager.svg?maxAge=2592000\u0026\u0026style=flat-square\" alt=\"Packagist\"\u003e\n    \u003c/a\u003e\n    \u003ca href=\"https://packagist.org/packages/encore/redis-manager\"\u003e\n        \u003cimg src=\"https://img.shields.io/packagist/dt/encore/redis-manager.svg?style=flat-square\" alt=\"Total Downloads\"\u003e\n    \u003c/a\u003e\n\u003c/div\u003e\n\n`Redis-manager` gives your laravel application a redis web administration interface that allows you to easily manipulate the most commonly used data types for redis (strings, hashes, lists, sets, sorted sets).\n\nIt also provides a web-style command-line tool that works like redis-cli that can run most of the redis commands.\n\n`Redis-manager` allows you to easily monitor several redis system status, including memory usage, cpu usage, and the throughput of each command.\n\nHere is the living [demo](https://zsong.me/redis-manager/)\n\n\u003e redis-manager reads laravel's redis configuration located in the `config/database.php`\n\n# Installation\n\nYou may use Composer to install Redis-manager into your Laravel project:\n\n```shell\ncomposer require encore/redis-manager\n\n```\n\nAfter installing `redis-manager`, publish its assets using the vendor:publish Artisan command:\n\n```shell\nphp artisan vendor:publish --provider=\"Encore\\RedisManager\\RedisManagerServiceProvider\"\n```\n\nAfter installation, open `http://your-server/redis-manager` to access `redis-manager`.\n\n## Configuration\n\nThe config file was published at `config/redis-manager.php`, and the default contents of the configuration: \n```php\n\u003c?php\n\nreturn [\n\n    /*\n    |--------------------------------------------------------------------------\n    | Redis Manager Base Path\n    |--------------------------------------------------------------------------\n    |\n    | Base path for Redis Manager\n    |\n    */\n\n    'base_path' =\u003e 'redis-manager',\n\n    /*\n    |--------------------------------------------------------------------------\n    | Redis Manager Middleware\n    |--------------------------------------------------------------------------\n    |\n    | The Redis Manager's route middleware.\n    |\n    */\n\n    'middleware' =\u003e [],\n\n    /*\n    |--------------------------------------------------------------------------\n    | Redis Manager Results Per Page\n    |--------------------------------------------------------------------------\n    |\n    | Here you can configure for the number of results will show in the\n    | Redis Manager search page.\n    |\n    */\n\n    'results_per_page' =\u003e 50,\n\n    /*\n    |--------------------------------------------------------------------------\n    | Redis Manager Disable Commands\n    |--------------------------------------------------------------------------\n    |\n    | The commands listed here was disabled when you use Redis Manager Console\n    | to run commands. Feel free to add commands here which you do not want\n    | users to use.\n    |\n    */\n\n    'disable_commands' =\u003e [\n        'flushdb'\n    ]\n];\n\n```\n\n## Authentication\n\nBy default, you will only be able to access `redis-manager` in the `local` environment. To define a more specific access policy for it, you should use the `RedisManager::auth` method. The auth method accepts a callback which should return `true` or `false`, indicating whether the user should have access to `redis-manager`:\n\n```php\nRedisManager::auth(function ($request) {\n    // return true / false;\n});\n```\n\n## License\n\n`Redis manager` is open-sourced software licensed under the [MIT license](http://opensource.org/licenses/MIT)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fz-song%2Fredis-manager","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fz-song%2Fredis-manager","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fz-song%2Fredis-manager/lists"}