{"id":22238765,"url":"https://github.com/tomatophp/filament-browser","last_synced_at":"2025-04-09T12:09:36.175Z","repository":{"id":232138642,"uuid":"783556143","full_name":"tomatophp/filament-browser","owner":"tomatophp","description":"File \u0026 Folders \u0026 Media Browser With Code Editor","archived":false,"fork":false,"pushed_at":"2024-10-14T13:04:38.000Z","size":4904,"stargazers_count":33,"open_issues_count":3,"forks_count":6,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-04-02T11:06:52.144Z","etag":null,"topics":["browser","filament-plugin","file","file-browser","manager"],"latest_commit_sha":null,"homepage":"https://tomatophp.com/en/open-source/filament-browser","language":"PHP","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/tomatophp.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"github":["3x1io"]}},"created_at":"2024-04-08T06:03:12.000Z","updated_at":"2025-03-02T11:17:51.000Z","dependencies_parsed_at":null,"dependency_job_id":"22fa7366-0365-485e-b5d1-1ef9874660b3","html_url":"https://github.com/tomatophp/filament-browser","commit_stats":null,"previous_names":["tomatophp/filament-browser"],"tags_count":4,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tomatophp%2Ffilament-browser","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tomatophp%2Ffilament-browser/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tomatophp%2Ffilament-browser/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tomatophp%2Ffilament-browser/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tomatophp","download_url":"https://codeload.github.com/tomatophp/filament-browser/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248036067,"owners_count":21037092,"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","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":["browser","filament-plugin","file","file-browser","manager"],"created_at":"2024-12-03T03:17:15.384Z","updated_at":"2025-04-09T12:09:36.158Z","avatar_url":"https://github.com/tomatophp.png","language":"PHP","funding_links":["https://github.com/sponsors/3x1io"],"categories":[],"sub_categories":[],"readme":"![Screenshot](https://raw.githubusercontent.com/tomatophp/filament-browser/master/arts/3x1io-tomato-browser.jpg)\n\n# Filament File Browser\n\n[![Latest Stable Version](https://poser.pugx.org/tomatophp/filament-browser/version.svg)](https://packagist.org/packages/tomatophp/filament-browser)\n[![License](https://poser.pugx.org/tomatophp/filament-browser/license.svg)](https://packagist.org/packages/tomatophp/filament-browser)\n[![Downloads](https://poser.pugx.org/tomatophp/filament-browser/d/total.svg)](https://packagist.org/packages/tomatophp/filament-browser)\n\nFile \u0026 Folders \u0026 Media Browser With Code Editor\n\n\u003e [!CAUTION]\n\u003e This package is for super-admin only and it's not recommended to use it for normal users. because it's give access to all files and folders in your server.\n\n## Screenshots\n\n![Browser](https://raw.githubusercontent.com/tomatophp/filament-browser/master/arts/browser.png)\n![File Types](https://raw.githubusercontent.com/tomatophp/filament-browser/master/arts/file-types.png)\n![Create File](https://raw.githubusercontent.com/tomatophp/filament-browser/master/arts/create-file.png)\n![Delete File](https://raw.githubusercontent.com/tomatophp/filament-browser/master/arts/delete.png)\n![Rename File](https://raw.githubusercontent.com/tomatophp/filament-browser/master/arts/rename.png)\n![Markdown Editor](https://raw.githubusercontent.com/tomatophp/filament-browser/master/arts/markdown.png)\n![Code Editor](https://raw.githubusercontent.com/tomatophp/filament-browser/master/arts/code.png)\n![Video File](https://raw.githubusercontent.com/tomatophp/filament-browser/master/arts/video.png)\n![Audio File](https://raw.githubusercontent.com/tomatophp/filament-browser/master/arts/audio.png)\n![Excel File](https://raw.githubusercontent.com/tomatophp/filament-browser/master/arts/excel.png)\n![Image File](https://raw.githubusercontent.com/tomatophp/filament-browser/master/arts/image.png)\n![PDF File](https://raw.githubusercontent.com/tomatophp/filament-browser/master/arts/pdf.png)\n\n## Installation\n\n```bash\ncomposer require tomatophp/filament-browser\n```\nafter install your package please run this command\n\n```bash\nphp artisan filament-browser:install\n```\n\nfinally reigster the plugin on `/app/Providers/Filament/AdminPanelProvider.php`\n\n```php\n-\u003eplugin(\n    \\TomatoPHP\\FilamentBrowser\\FilamentBrowserPlugin::make()\n        -\u003ehiddenFolders([\n            base_path('app')\n        ])\n        -\u003ehiddenFiles([\n            base_path('.env')\n        ])\n        -\u003ehiddenExtantions([\n            \"php\"\n        ])\n        -\u003eallowCreateFolder()\n        -\u003eallowEditFile()\n        -\u003eallowCreateNewFile()\n        -\u003eallowCreateFolder()\n        -\u003eallowRenameFile()\n        -\u003eallowDeleteFile()\n        -\u003eallowMarkdown()\n        -\u003eallowCode()\n        -\u003eallowPreview()\n        -\u003ebasePath(base_path())\n)\n```\n\nwhen you try to access the browser it will ask you about password it's `password` and you can change it from your `.env` file\n\n```env\nDEVELOPER_GATE_PASSWORD=\n```\n\n## Publish Assets\n\nyou can publish config file by use this command\n\n```bash\nphp artisan vendor:publish --tag=\"filament-browser-config\"\n```\n\nyou can publish views file by use this command\n\n```bash\nphp artisan vendor:publish --tag=\"filament-browser-views\"\n```\n\nyou can publish languages file by use this command\n\n```bash\nphp artisan vendor:publish --tag=\"filament-browser-lang\"\n```\n\nyou can publish migrations file by use this command\n\n```bash\nphp artisan vendor:publish --tag=\"filament-browser-migrations\"\n```\n\n## Other Filament Packages\n\nCheckout our [Awesome TomatoPHP](https://github.com/tomatophp/awesome)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftomatophp%2Ffilament-browser","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftomatophp%2Ffilament-browser","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftomatophp%2Ffilament-browser/lists"}