Download the PHP package tadasei/backend-file-management without Composer
On this page you can find all versions of the php package tadasei/backend-file-management. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Informations about the package backend-file-management
Tadasei/backend-file-management
This package provides stubs for managing files in the backend of a Laravel application. It aims to simplify and streamline common Store, Update and Delete file operations by providing pre-defined structures.
Features
- Quickly generate file management migrations, models, validation rules and handling logic.
- Customize and extend generated code to fit your project's needs.
- Improve development efficiency by eliminating repetitive tasks.
Installation
You can install the package via Composer by running:
Usage
Publishing file management utilities
To publish file management utilities, use the following command:
Integration with HandleCors Middleware
The package also provides a route file, controller, and policy to help integrate Laravel's built-in HandleCors
middleware with the storage directory's files. This allows you to manage cross-origin file requests and ensure smooth file handling across different domains.
To publish the HandleCors
middleware integration files, add the --with-cors
flag to the command:
The following files will be generated:
- Route:
routes/resources/file.php
- Controller:
app/Http/Controllers/FileController.php
- Policy:
app/Policies/FilePolicy.php
By default:
- The generated routes are guarded by the
auth:sanctum
middleware. - The
FileController
'sdownload
method is authorized using theFilePolicy
. - The
FilePolicy
'sdownload
method is pre-configured to returntrue
, granting access to file downloads.
You can customize the route file, controller, and policy to fit your project's specific requirements and security policies.
Customization
The generated code serves as a starting point. You can customize and extend it according to your project's requirements. Modify the generated migrations, models, traits and validation rules as needed.
Contributing
Contributions are welcome! If you have suggestions, bug reports, or feature requests, please open an issue on the GitHub repository.
License
This package is open-source software licensed under the MIT license.
All versions of backend-file-management with dependencies
illuminate/console Version ^9.0|^10.0|^11.0
illuminate/filesystem Version ^9.0|^10.0|^11.0
illuminate/support Version ^9.0|^10.0|^11.0
illuminate/validation Version ^9.0|^10.0|^11.0