Download the PHP package thedepart3d/laravel-source-encryption without Composer
On this page you can find all versions of the php package thedepart3d/laravel-source-encryption. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download thedepart3d/laravel-source-encryption
More information about thedepart3d/laravel-source-encryption
Files in thedepart3d/laravel-source-encryption
Package laravel-source-encryption
Short Description Laravel Source Code Encryptor
License MIT
Informations about the package laravel-source-encryption
This package encrypts your php code with phpBolt
For Laravel 9*
- Installation
- Usage
Installation
Step 1
You have to install phpBolt.
Step 2
Require the package with composer using the following command:
Step 3
For Laravel
The service provider will automatically get registered. Or you may manually add the service provider in your config/app.php
file:
Step 4 (Optional)
You can publish the config file with this following command:
Usage
Open terminal in project root and run this command:
This command encrypts files and directories in config/source-encryption.php
file. Default values are app
, database
, routes
, config
.
The default destination directory is encrypted-source
. You can change it in config/source-encryption.php
file.
Also the default encryption key length is 16
. You can change it in config/source-encryption.php
file. 6
is the recommended key length.
This command has these optional options:
Option | Description | Example |
---|---|---|
source | Path(s) to encrypt | app,routes,public/a.php |
destination | Destination directory | encrypted-source |
key | Custom Encryption key | |
keylength | Encryption key length | 16 |
force | Force the operation to run when destination directory already exists |
Usage Examples
Command | Description |
---|---|
php artisan encrypt-source |
Encrypts with default source, destination and keylength. If the destination directory exists, asks for delete it. |
php artisan encrypt-source --force |
Encrypts with default source, destination and keylength. If the destination directory exists, deletes it. |
php artisan encrypt-source --source=app |
Encrypts app directory to the default destination with default keylength. |
php artisan encrypt-source --destination=encrypted-source |
Encrypts with default source and key length to encrypted-source directory. |
php artisan encrypt-source --destination=encrypted-source --keylength=8 |
Encrypts default source to encrypted-source directory and the encryption key length is 8 . |
php artisan encrypt-source --destination=encrypted-source --key="somecustomstrongstring" |
Encrypts default source to encrypted-source directory and the encryption key is somecustomstrongstring |
Updated with ♥ by The Departed
Support can be shared by staring this repository.
All versions of laravel-source-encryption with dependencies
illuminate/console Version ^8|^9|^10
illuminate/support Version ^8|^9|^10
ext-bolt Version *