Download the PHP package markwalet/dotenv-manager without Composer

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

PHP Dotenv manager

Latest Stable Version Build status Coverage StyleCI Total Downloads

A PHP package that helps you edit the .env file programmatically. It works great for building tools like an installation CLI.

Installation

You can install this package with composer.

This package can be used in every PHP project.

Laravel

The optional DotenvManagerServiceProvider makes this package package suitable for Laravel projects.

From Laravel 5.5 and up you don't have to register your service provider anymore because of the package auto-discovery feature.

If you want to register the service provider manually (required for older versions), 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 dotenv manager by resolving it with the app Laravel service container. This will give you a singleton MarkWalet\DotenvManager\DotenvManager instance with the right dependencies.

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

Once you have a dotenv instance you can add a new value to the dotenv file:

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 edit dotenv variables:

This will replace the original value of EXISTING_KEY with updatedValue.

All values will be automatically formatted to a valid dotenv 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 DotenvManager class itself and also on the DotenvBuilder you get when mutating the dotenv file.

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 DotenvManager instance:


All versions of dotenv-manager with dependencies

PHP Build Version
Package Version
Requires php Version 8.*
laravel/framework Version ~8.74|^9.0|^10.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/dotenv-manager contains the following files

Loading the files please wait ....