Download the PHP package irfa/encrypt-file-laravel without Composer
On this page you can find all versions of the php package irfa/encrypt-file-laravel. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Please rate this library. Is it a good library?
Informations about the package encrypt-file-laravel
🚀Simple Laravel Encrypt Upload File
The Simple Laravel Encrypt Upload File uses the default encryption of Laravel which is implemented in upload file.
🛠️ Installation with Composer
composer require irfa/encrypt-file-laravel >You can get Composer [ here]( https://getcomposer.org/download/) ***🛠️ Laravel Setup
Add to config/app.php
'providers' => [ .... Irfa\FileSafe\FileSafeServiceProvider::class, ];Add to config/app.php
'aliases' => [ .... 'FileSafe' => Irfa\FileSafe\Facades\FileSafe::class, ],Publish Vendor
php artisan vendor:publish --tag=file-safeConfig File
config/irfa/filesafe.phpExample store file
file('file'); FileSafe::store($file); //This is to encrypt the file before it is uploaded to the server. } }Example download file
View Raw File ... $file = 'encrypt_file.txt'; return FileSafe::file($file)->raw(); ...Contribution
ENG:If you want to contribute this project and make it better, your help is very welcome.
IDN:
Jika Anda ingin berkontribusi dalam proyek ini dan menjadikannya lebih baik, bantuan Anda sangat kami harapkan. ***
All versions of encrypt-file-laravel with dependencies
PHP Build Version
Package Version
Requires
php Version
^7.2
The package irfa/encrypt-file-laravel contains the following files
Loading the files please wait ....