{"id":15016963,"url":"https://github.com/webplusmultimedia/filemanager","last_synced_at":"2025-04-12T10:42:22.275Z","repository":{"id":143834791,"uuid":"616665337","full_name":"webplusmultimedia/FileManager","owner":"webplusmultimedia","description":"A file manager made with alpineJs and Livewire","archived":false,"fork":false,"pushed_at":"2024-07-08T19:17:40.000Z","size":176,"stargazers_count":15,"open_issues_count":2,"forks_count":2,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-03-26T05:33:23.580Z","etag":null,"topics":["alpinejs","file-manager","livewire","tailwindcss"],"latest_commit_sha":null,"homepage":"","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/webplusmultimedia.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-03-20T20:48:13.000Z","updated_at":"2024-08-30T03:29:16.000Z","dependencies_parsed_at":null,"dependency_job_id":"851923cc-5801-4edd-8c0d-d18f83314b57","html_url":"https://github.com/webplusmultimedia/FileManager","commit_stats":{"total_commits":36,"total_committers":3,"mean_commits":12.0,"dds":0.4722222222222222,"last_synced_commit":"d881e4d8fe2927524fc74d958a61838bd10d9038"},"previous_names":[],"tags_count":10,"template":false,"template_full_name":"spatie/package-skeleton-laravel","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/webplusmultimedia%2FFileManager","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/webplusmultimedia%2FFileManager/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/webplusmultimedia%2FFileManager/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/webplusmultimedia%2FFileManager/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/webplusmultimedia","download_url":"https://codeload.github.com/webplusmultimedia/FileManager/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248557205,"owners_count":21124156,"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":["alpinejs","file-manager","livewire","tailwindcss"],"created_at":"2024-09-24T19:49:37.307Z","updated_at":"2025-04-12T10:42:22.246Z","avatar_url":"https://github.com/webplusmultimedia.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Manage files with this file manager made with alpinejs and livewire and tailwindcss\n\n[![Latest Version on Packagist](https://img.shields.io/packagist/v/webplusmultimedia/filemanager.svg?style=flat-square)](https://packagist.org/packages/webplusmultimedia/filemanager)\n[![GitHub Tests Action Status](https://img.shields.io/github/actions/workflow/status/webplusmultimedia/filemanager/run-tests.yml?branch=main\u0026label=tests\u0026style=flat-square)](https://github.com/webplusmultimedia/filemanager/actions?query=workflow%3Arun-tests+branch%3Amain)\n[![GitHub Code Style Action Status](https://img.shields.io/github/actions/workflow/status/webplusmultimedia/filemanager/fix-php-code-style-issues.yml?branch=main\u0026label=code%20style\u0026style=flat-square)](https://github.com/webplusmultimedia/filemanager/actions?query=workflow%3A\"Fix+PHP+code+style+issues\"+branch%3Amain)\n[![Total Downloads](https://img.shields.io/packagist/dt/webplusmultimedia/filemanager.svg?style=flat-square)](https://packagist.org/packages/webplusmultimedia/filemanager)\n\nWant to manage your files and directories in a file manager?\n\nThis one is for you. Here is the file manager made with alpineJs, Livewire and Tailwind CSS for Laravel.\n\nThis is a simple one, just adding files and directories to a root directory(default is medias) in your public storage path. You can change it in the filemanager config file.\n\n[![img.png](https://i.postimg.cc/XvQ1M2gt/img.png)](https://postimg.cc/v1xtftkv)\n\n## Installation\n\nYou can install the package via composer:\n\n```bash\ncomposer require webplusmultimedia/filemanager\n```\n\nYou can publish the config file and change the root directory if you want:\n\n```bash\nphp artisan vendor:publish --tag=\"filemanager-config\"\n```\n\nThis is the contents of the published config file:\n\n```php\nreturn [\n    'root' =\u003e 'medias',\n];\n```\n\nOptionally, you can publish the views, but not recommended because will failing at an future update.\n\n```bash\nphp artisan vendor:publish --tag=\"filemanager-views\"\n```\nFinaly, you need to compile your assets with  FileManager ones like that :\n```css\n/* before @tailwind base in your resources/css/app.css */\n@import \"./vendor/webplusmultimedia/filemanager/resources/dist/css/filemanager.css\";\n@tailwind base;\n```\n```javascript\n/*  in your resources/js/app.js */\nimport './vendor/webplusmultimedia/filemanager/resources/dist/js/filemanager'\n```\n```javascript\n/* put that line in content key on your tailwind.config.js */\ncontent:[\n    '*** Others paths ***',\n    './vendor/webplusmultimedia/filemanager/resources/dist/js/Components/**/*.js'\n]\n```\n## Usage\nFor simple use in a blade view :\n```html\n\u003cdiv class=\"py-12\"\u003e\n    \u003cdiv class=\"max-w-7xl mx-auto sm:px-6 lg:px-8\" aria-\u003e\n        \u003cdiv class=\"bg-white overflow-hidden shadow-sm sm:rounded-lg\"\u003e\n            \u003cdiv class=\"p-6 text-gray-900 \"\u003e\n                \u003ch1 class=\"text-2xl uppercase font-bold mb-6\"\u003e{{ __(\"Téléversement de fichiers\") }}\u003c/h1\u003e\n                \u003c!-- the livewire component --\u003e\n                \u003clivewire:filemanager/\u003e\n            \u003c/div\u003e\n        \u003c/div\u003e\n    \u003c/div\u003e\n\u003c/div\u003e\n```\n\n## Testing\n\n```bash\ncomposer test\n```\n\n## Changelog\n\nPlease see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.\n\n## Contributing\n\nPlease see [CONTRIBUTING](CONTRIBUTING.md) for details.\n\n## Security Vulnerabilities\n\nPlease review [our security policy](../../security/policy) on how to report security vulnerabilities.\n\n## Credits\n\n- [Webplusm Multimedia](https://github.com/webplusmultimedia)\n\n## License\n\nThe MIT License (MIT). Please see [License File](LICENSE.md) for more information.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwebplusmultimedia%2Ffilemanager","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwebplusmultimedia%2Ffilemanager","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwebplusmultimedia%2Ffilemanager/lists"}