{"id":19684927,"url":"https://github.com/boolfalse/clearcaches","last_synced_at":"2026-05-17T19:39:18.188Z","repository":{"id":62495972,"uuid":"150007442","full_name":"boolfalse/clearcaches","owner":"boolfalse","description":"Clear all Caches, Drop all DB tables, Flush all Sessions opportunities","archived":false,"fork":false,"pushed_at":"2018-12-19T22:01:13.000Z","size":18,"stargazers_count":1,"open_issues_count":0,"forks_count":1,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-10-24T22:29:33.910Z","etag":null,"topics":["cache","clearing","laravel","session","tables"],"latest_commit_sha":null,"homepage":"","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/boolfalse.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2018-09-23T17:18:21.000Z","updated_at":"2020-08-13T17:17:17.000Z","dependencies_parsed_at":"2022-11-02T09:32:16.540Z","dependency_job_id":null,"html_url":"https://github.com/boolfalse/clearcaches","commit_stats":null,"previous_names":[],"tags_count":19,"template":false,"template_full_name":null,"purl":"pkg:github/boolfalse/clearcaches","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/boolfalse%2Fclearcaches","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/boolfalse%2Fclearcaches/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/boolfalse%2Fclearcaches/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/boolfalse%2Fclearcaches/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/boolfalse","download_url":"https://codeload.github.com/boolfalse/clearcaches/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/boolfalse%2Fclearcaches/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33152247,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-17T09:28:26.183Z","status":"ssl_error","status_checked_at":"2026-05-17T09:27:52.702Z","response_time":107,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["cache","clearing","laravel","session","tables"],"created_at":"2024-11-11T18:19:21.677Z","updated_at":"2026-05-17T19:39:18.156Z","avatar_url":"https://github.com/boolfalse.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n[![Total Downloads](https://poser.pugx.org/boolfalse/clearcaches/downloads)](https://packagist.org/packages/boolfalse/clearcaches)\n[![License](https://poser.pugx.org/boolfalse/clearcaches/license)](https://packagist.org/packages/boolfalse/clearcaches)\n\n\nPackage for clearing/recreating all Laravel caches, for dropping all DB tables, and flushing all Laravel sessions. It's a package created for easy development.\nThis package is my first created package. So I will glad to hear any advices and suggestions.\n\n## Package Installation:\n\nRequire this package with composer. It is recommended to only require the package for development.\n\n```shell\ncomposer require boolfalse/clearcaches --dev\n```\n\nBut I prefer to use this in production level too (sometimes I need this). So you can just install with this:\n```shell\ncomposer require boolfalse/clearcaches\n```\n\nFor Laravel 5.4 and lower versions need to add service provider in config/app.php (or in config.php) to \"providers\" list array:\n```shell\nBoolfalse\\ClearCaches\\ClearCachesServiceProvider::class,\n```\nFor Laravel 5.5 and higher Package have Auto-Discovery functionality, so doesn't require you to manually add the ServiceProvider.\n\n\n## Usage:\n\nClear all Laravel Caches and Dump Autoload:\n```shell\nphp artisan clearcaches\n```\nWith CLI option 'dump' You can prevent Autoload Dumping:\n```shell\nphp artisan --dump='no'\n```\nDrop all tables from DB:\n```shell\nphp artisan droptables\n```\n\nFlush all Laravel sessions:\n```shell\nphp artisan flushsessions\n```\n\n - For index page: your-domain/dev/clearcaches-check\n - For clearing and recreating caches: your-domain/dev/clearcaches\n - For dropping all DB tables: your-domain/dev/droptables\n\n\n## Update the package:\n\nThis command will update this specific package:\n```shell\ncomposer update boolfalse/clearcaches\n```\nOr\n```shell\ncomposer update boolfalse/clearcaches --lock\n```\n\nFor updating all existing packages, just run:\n```shell\ncomposer update\n```\n\n## Remove the package:\nNOTE: For Laravel 5.4 and lower versions (for avoid terminal errors) before running command You need to firstly manually remove\n```shell\nBoolfalse\\ClearCaches\\ClearCachesServiceProvider::class,\n```\nservice provider from \"providers\" list array in config/app.php (or in config.php).\n```shell\ncomposer remove boolfalse/clearcaches\n```\nAnd after that open '/dev/clearcaches' pages for clearing providers config caches;\nor just run this commands:\n```shell\nphp artisan cache:clear\nphp artisan config:cache\n```\n\n## Publishing the package index view:\n\nAvailable for ^1.0 version\n```shell\nphp artisan vendor:publish --provider=\"Boolfalse\\ClearCaches\\ClearCachesServiceProvider\"\n```\n\n\n## History:\n\n#### v1.1.5: Added 'flushsessions' command.\n\n#### v1.1.0: Removed view (for publishing), controller, route\n\n##### v1.0.12: \"minimum-stability\" changed to \"stable\" version.\n\n##### v1.0.11: Added 'clear-compiled' artisan command.\n\n##### v1.0.6: Added 'dump' option for 'clearcaches' CLI custom artisan command.\n\n##### v1.0.5: Added custom artisan commands with appropriate signatures ('clearcaches', 'droptables').\n\n##### v1.0.4: Ability to publish package index page and have that as 'resources\\views\\clearcaches\\cc.blade.php' file\n\n##### v1.0.2: Added embed buttons from https://poser.pugx.org/ for README.md\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fboolfalse%2Fclearcaches","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fboolfalse%2Fclearcaches","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fboolfalse%2Fclearcaches/lists"}