dcodegroup / fileman
Laravel package for managing files.
Installs: 5 468
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 6
Forks: 0
Open Issues: 0
Requires
- php: ^8.0
- laravel/framework: ^8.0|^9.0|^10.0|^11.0|^12.0
- league/flysystem: ^1.1|^3.0
- league/flysystem-aws-s3-v3: ^1.0|^3.0
Requires (Dev)
- ergebnis/composer-normalize: ^2.45
- larastan/larastan: ^3.0
- laravel/pint: ^1.20
- orchestra/testbench: ^9.9
README
- Legacy branch is for the pre php 8 and pre laravel 8 applications - maintain 1.4.x on packagist
- master is for php 8+ and laravel 8 plus. use version 2.0.x on packagist
Installation
Install the package via composer:
composer require dcodegroup/fileman
npm install @vitejs/plugin-vue npm install vue npm install vite-svg-loader npm install lodash npm install vite-plugin-laravel-translations npm install vue-i18n npm install vue3-click-away
Publish the migrations:
php artisan vendor:publish --provider="DcodeGroup\Fileman\FilemanServiceProvider" --tag="migrations"
Publish the vendor front-end resources:
php artisan vendor:publish --provider="DcodeGroup\Fileman\FilemanServiceProvider" --tag="styles"
Add the following to your providers.php file:
DcodeGroup\Fileman\FilemanServiceProvider::class, return [ App\Providers\AppServiceProvider::class, \DcodeGroup\Fileman\FileManServiceProvider::class, ];
Add the package routes to your web.php file:
in web.php \DcodeGroup\Fileman\Routes\Web::get(); in api.php \DcodeGroup\Fileman\Routes\Api::get();
JS Add the following alias to vite.config.js
resolve: { alias: { "@fileman": path.resolve(__dirname, "./vendor/dcodegroup/fileman"),
Seem to need this in tailwind.config.js, Update the module exports under content:
content: [ ... "./vendor/dcodegroup/**/*.{blade.php,vue,js,ts}", ... ],
in the app.js file or other file where you are registering your vue components add the following:
import { registerFileman } from "@fileman/src/resources/js"; registerFileman(app);
Fileman will connect to the applications S3 bucket automatically. You'll need to have fileman index the bucket first before it can be used. To index the S3 bucket run:
php artisan fileman:import