Package Data | |
---|---|
Maintainer Username: | meSingh |
Maintainer Contact: | im@msingh.me (Mandeep Singh) |
Package Create Date: | 2017-05-03 |
Package Last Update: | 2018-03-18 |
Home Page: | |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-11-19 03:16:22 |
Package Statistics | |
---|---|
Total Downloads: | 7 |
Monthly Downloads: | 0 |
Daily Downloads: | 0 |
Total Stars: | 1 |
Total Watchers: | 3 |
Total Forks: | 2 |
Total Open Issues: | 0 |
This package lets you define various package requirements according to the environment.
Via Composer
$ composer require mesingh/laravel-env-packages
Then add the service provider in config/app.php
:
meSingh\EnvPackages\EnvPackagesServiceProvider::class,
Then publish vendor files for access the configuration file:
$ php artisan vendor:publish --provider="meSingh\EnvPackages\EnvPackagesServiceProvider"
You need to run envpackages:generate
command after each configuration update.
$ php artisan envpackages:generate
envpackages.php
file is used to define any package requirements that are loaded over some specific environment like you might have some
development packages installed that you do not wish to load over production and/or staging.
You can define any requirement in any environment. So to define a provider for the local environment, you just need to add it like this:
'providers' => [
'local' => [
Provider\Package\SomeServiceProvider::class,
],
],
In case you need to load this provider in multiple environments like local, testing and development, you can do so like this:
'providers' => [
'local,testing,development' => [
Provider\Package\SomeServiceProvider::class,
],
],
You can also do any kind of combinations in configuration like this:
'providers' => [
'local,testing,development' => [
Provider\Package\SomeServiceProvider::class,
],
'development' => [
Provider\Package\OtherServiceProvider::class,
],
'staging,production' => [
Provider\Package\AnotherServiceProvider::class,
],
],
The MIT License (MIT). Please see License File for more information.