Download the PHP package skywarth/laravel-config-mapper without Composer

On this page you can find all versions of the php package skywarth/laravel-config-mapper. 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-config-mapper

Proof reading for the documentation is pending

Laravel Config Mapper

Packagist: https://packagist.org/packages/skywarth/laravel-config-mapper

Table of Contents

Laravel Config Mapper is a package for assisting your project with the ability to automatically map configs with env keys. It is designed for Laravel framework.

Installation

Run:

Optionally, you may publish the config, which allows you to tinker with libraries settings:

Problem Definition

You know the hassle... When defining a new configuration or adding to existing configuration, you have to give it a corresponding and appropriate env key. And if your config hierarchy has some depth, it is rather troublesome and prone to error. Laravel Config Mapper can help you eliminate this.

Example Case

Example folder structure

For the file structure above, assume you want to create configs for tiger, panda, dog, elephant and penguin (files are already created).

If we consider elephant in the room folder, and let's say we want elephant config to have enabled, and under permissions group allowed_to_walk and allowed_to_sleep. It would look something like this:

E.g: config('mammals.room.elephant.permissions.allowed_to_walk') for accessing

As you can see, it becomes cumbersome to name env keys after certain folder/path depth. If you ever had to deal with scenarios where you access a config like config('some.really.deep.down.config.and.also.in.an.array.nice_key_though') you know how painful it is to write the env key for that.

How to use

There is two distinct application methods for this package:

  1. Map the env keys by command
  2. Alternative config helper

TL;DR

  1. Put 'automap' value for configs
  2. Run php artisan laravel-config-mapper:publish-env-keys

Map the env keys by command

This method is the recommended way of using this library.

  1. Put the value of 'automap' for those configs that you'd like to map

    1. e.g: Sample application of automap
  2. Run the dedicated command: php artisan laravel-config-mapper:publish-env-keys
    1. It'll discover your automap configs
    2. After discovery, it'll prepare respective env keys for these
    3. Then config path & env key pairs will be output
    4. So far no change is made at all to your codebase
  3. Select an option on how you'd like to apply
    1. Each option is explained down below

1. "Just output the mapped env keys, I'll copy them myself"

This option will just output the env keys that you'll have to use. Just as the name suggests, it doesn't alter any file at all in your codebase. After receiving the output from the console, you should paste the mapped env keys to your .env or wherever you like. Then you should replace all 'automap' values in config with an env() helper function call.

For the example above, it would produce this output:

2. "Add mapped env keys to file"

This option will print the mapped env keys into a file of your choice. Returning to the command and chose this option, and pick .env as our target file, we can observe the change in .env file:

If automap env keys section present, the command will update the existing section. Otherwise it'll just append the section to the end of the file.

You can pick among these options as files:

If the chosen file doesn't exist, the command will ask you if you'd like it to be created.

3. "Update configs to replace 'automap' values with corresponding env keys, then add mapped keys to file"

This option allows you to be completely independent of config mapper library. It replaces any 'automap' value placed in configs with appropriate mapped env keys. After that, it'll continue with the same procedure as "Add mapped env keys to file".

Recalling command with this choice will produce these changes:

See the 'allowed_to_walk' key, it had the value of 'automap' prior to running the command, but now it is paired to an env key.

And corresponding mapped env keys are added to .env file, how convenient.


Alternative Config Helper

This method is not the recommended method. Please advise Map the env keys by command method to see if it fits your needs.

Package ships with a new helper function at your disposal. Let's return to the elephant config. But this time we'll be using Laravel Config Mapper's helper function configMapped().

You may have noticed that enabled and allowed_to_walk configs have the value of 'automap'. This is due to the fact we are feeling lazy and don't want to ponder about some env key for it.

Now run php artisan laravel-config-mapper:publish-env-keys command. In the command, when we select '[1] Just output the mapped env keys, I'll copy them myself' option, it outputs this:

Marvelous, now we can just copy this string and paste it into .env file. After pasting it and assigning values, only one thing left to do: use the configMapped() instead of config(). Because if you use config('mammals.room.elephant.permissions.allowed_to_walk'), it'll give you 'automap' naturally. But if you use configMapped('mammals.room.elephant.permissions.allowed_to_walk') It'll automatically find the corresponding env key (MAMMALS.ROOM.ELEPHANT.PERMISSIONS.ALLOWED_TO_WALK) and return Its value.

Q: hurrr durr why do I have to use an alternate config helper ?? How am I supposed to know when to use config() and when to use configMapped()

A: It is better to always use configMapped() because it inherently calls config() inside anyways if the corresponding config doesn't have 'automap' value. In other terms, it is just a wrapper around config helper to grant it additional capabilities. For the example above, I can still access allowed_to_sleep config using configMapped() even though it is not an automap config.

Roadmap & TODOs

Credits & References

This project has been developed using JetBrains products. Thanks for their support for open-source development.

JetBrains Logo (Main) logo. PhpStorm logo.

All versions of laravel-config-mapper with dependencies

PHP Build Version
Package Version
No informations.
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 skywarth/laravel-config-mapper contains the following files

Loading the files please wait ....