Download the PHP package markwalet/environment-manager without Composer

On this page you can find all versions of the php package markwalet/environment-manager. 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 environment-manager

Laravel environment manager

Build Status Total Downloads Latest Stable Version License

A Laravel package that helps you edit the .env file programmatically.

Installation

You can install this package with composer.

Laravel

Although this package is written for Laravel projects, the package can also be used for other frameworks or vanilla PHP projects.

Laravel 5.5 used Package auto-discovery, so you don't have to register the service provider. If you want to register the service provider manually, add the following line to your config/app.php file:

The service provider is also compatible with Laravel Lumen. Just add the following line to your bootstrap/app.php file:

Usage

You can get the environment manager by resolving it with the app Laravel service container. This will give you a singleton MarkWalet\EnvironmentManager\Environment instance with the right dependencies.

You can also manually set up an Environment class when you are not using Laravel.

Once you have a environment instance you can add lines to the environment:

If you don't specify a location for the new value, the value will be added at the end of the file.

You can also update environment variables:

This will replace the original value of EXISTING_KEY with updatedValue.

All values will be automatically formatted to a valid environment value.

Mutating multiple lines

You can use the mutate() method when you want to apply multiple changes to the file. The syntax looks a lot like the syntax in Laravel migrations:

Available methods

Below you will find every available method and its underlying class. These methods can be called on the Environment class itself and the EnvironmentBuilder you get when mutating the environment.

Method Returns
add(string $key, $value = null) Addition
create(string $key, $value = null) Addition
set(string $key, $value = null) Update
update(string $key, $value = null) Update
move(string $key) Move
delete(string $key) Delete
unset(string $key) Delete

Extending the builder

You can also extend the builder with your own implementation of the Change class. In the example below we are making a class that can increment a value quickly:

After we extended the builder we can call it through the environment object:


All versions of environment-manager with dependencies

PHP Build Version
Package Version
Requires php Version ^7.0
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 markwalet/environment-manager contains the following files

Loading the files please wait ....