Download the PHP package pion/laravel-environment-config without Composer

On this page you can find all versions of the php package pion/laravel-environment-config. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package laravel-environment-config

App service config loader

Used to load app config, and register the alias and providers, based on environment or custom config by custom usage. In default looks only for local config app_local.php. You can enable loading of config based on the current environment (checks if config exists then loads it). More in AppServiceProvider and AppEnvironmentTrait docs.

You can also load any config file you want at any time you need. Just use a AppServiceConfigLoaderTrait and call:

// class that uses the trait
// load the admin.php file into our app
$this->registerFromConfig("admin", $this->app);

Instalation

composer require pion/laravel-environment-config

Config structure

The structure of the config is same like basic app config and should be named with app prefix and the name of the environment: app_{environment} The loader supports alias and providers keys.

Name examples

Example of local with dev tools (require-dev in composer)

<?php
return [
    "providers" => [
        Barryvdh\LaravelIdeHelper\IdeHelperServiceProvider::class,
        Barryvdh\Debugbar\ServiceProvider::class
    ],
    "aliases" => [
        'Debugbar' => Barryvdh\Debugbar\Facade::class
    ]
];

AppSeviceProvider

The default implementation that looks for local config only. Uses the AppEnvironmentTrait

Enable environment config load

Extend the register (and set before parent call) or construct method and set $checkOnlyLocalEnvironment property to false.

public function __construct(\Illuminate\Contracts\Foundation\Application $app) {
    parent::__construct($app);

    $this->checkOnlyLocalEnvironment = false;
}

Example

It's important that you dont implement register

use Pion\Laravel\EnvironmentConfig\AppServiceProvider as BaseAppServiceProvider;

class AppServiceProvider extends BaseAppServiceProvider {

}

AppEnvironmentTrait

Enables on demand loading of the config with provided the app instance and the name of the config name (without the prefix!). Uses the context of the app ($this->app) in the AppServiceProvider. All methods are protected.

loadAndRegister($checkOnlyLocal = true)

Tries to load the local config or if you pass false as first parametr it will try to load the config based on the current environment.

registerFromEnvironment($environment)

Registers the desired config (pass only name).

AppServiceConfigLoaderTrait

Enables loading custom config files and registers the aliases and providers by providing the config name and the app context. All methods are protected.

registerFromConfig($configName, $app)

Registers the aliases and providers.

registerProviders(array $providers, $app)

Registers the providers array into the app.

registerAliases(array $aliases, $app)

Registers the aliases array into the app.


All versions of laravel-environment-config with dependencies

PHP Build Version
Package Version
Requires laravel/framework Version 5.*
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package pion/laravel-environment-config contains the following files

Loading the files please wait ....