Looking to hire Laravel developers? Try LaraJobs

laravel-env-sync-command maintained by nox0121

Description
Laravel Command Package for .env file synchronization
Author
Last update
2018/02/13 07:53 (dev-master)
License
Links
Downloads
6 896

Comments
comments powered by Disqus

Laravel Command Package for .env file synchronization

這個套件編寫了一個 .env 同步的 Artisan 命令,主要用來協助系統管理與設定。

安裝方式

composer require nox0121/laravel-env-sync-command

設定 app.confg (Laravel 5.5 以上版本不需設定)

'providers' => [
    ...
    Nox0121\LaravelEnvSyncCommand\LaravelEnvSyncCommandServiceProvider::class,
    ...
];

支援指令如下:

  1. php artisan env:sync {source} {destination} - 同步 .env 設定檔。

參考來源