faryar76 / lrm
laravel remote manager package
Installs: 273
Dependents: 0
Suggesters: 0
Security: 0
Stars: 47
Watchers: 1
Forks: 8
Open Issues: 0
Type:package
This package is not auto-updated.
Last update: 2025-04-08 18:15:41 UTC
README
by using this package , you can easily manage your project remotely (without ssh).
For example :
- You can run the database migration files on server without "ssh"
- You can move migration files from your local system to the server and run database migrate commands without ssh.
- You can upload your edited files into the server without entering your own management panel (cpanel or directadmin ...). also upload new files (or folders) without ssh .
Installation
# composer require faryar76/lrm
# php artisan vendor:publish --provider="Faryar76\LRM\LRMServiceProvider"
how to config for use?
The first thing you have to do complete the config file lrm.php in :
your_project_path\config\lrm.php
fill the host_path in lrm.php with your uploaded project path for example :
"host_path" => "http://your-website-domain.com/",
or in some sharing hosts
"host_path" => "http://your-website-domain.com/public/",
also you can set a password for make it more secure in lrm.php :
"password" => hash('sha512',"type-your-password-here")
how to use?
upload file
for upload single file :
php artisan lrm:upload "path_to_file"
php artisan lrm:upload "app\Http\User.php"
for upload folder files :
php artisan lrm:upload "path_to_folder"
php artisan lrm:upload "app\Http"
for upload folder with sub folders :
php artisan lrm:upload "path_to_folder" --sub
php artisan lrm:upload "app\Http" --sub
run migrate files
just run Available files on server
php artisan lrm:migrate // will do php artisan migrate
php artisan lrm:migrate refresh // will do php artisan migrate:refresh
php artisan lrm:migrate rollback // will do php artisan migrate:rollback
...
upload local migrate files to server and run them
php artisan lrm:sync_migrate // will do php artisan migrate
php artisan lrm:sync_migrate refresh // will do php artisan migrate:refresh
php artisan lrm:sync_migrate rollback // will do php artisan migrate:rollback
...
License MIT
Notice: old files will backup and move to "old_files" folder on your server