laravel擴充包的設定檔複製到config檔案夾下的問題解決

來源:互聯網
上載者:User
我們在寫擴充包的時候,總是會糾結,裡面的一些個人化的配置要怎麼處理呢。

laravel 很好的解決了這個問題。

laravel 的 ServiceProvider很好的解決了這個問題。

具體來說,如果,你想要在外部配置你的擴充包,那麼,就先要把你這個 包註冊成 服務。

首先需要定義一個類 繼承 ServiceProvider.

1.裡面定義一個register函數 指定 包所用的設定檔的絕對路徑,然後把配置的外部檔案和內部檔案的內容合并。

2.在boot函數中,指定 publish的具體位置。

代碼如下

mergeConfigFrom($configPath,"mslaravelsystem");    }    public function boot(){        $app = $this->app;        $configPath = __DIR__ . '/../../../config/mslaravelsystem.php';        $this->publishes([$configPath => $this->getConfigPath()],'config');    }    public function getConfigPath(){        return config_path("mslaravelsystem.php"); }    protected function publishConfig($configPath)    {        $this->publishes([$configPath => config_path('mslaravelsystem.php')], 'config');    }}

在 config/app.php 檔案夾下,添加該服務

在 providers 數組下添加

MoenSun\MSFileSystem\MSFileSystemServiceProvider::class

再執行

php artisan vendor:publish

這樣檔案就會copy 到config檔案夾下了。

  • 相關文章

    聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.