Download the PHP package alfred-nutile-inc/env-deployer without Composer

On this page you can find all versions of the php package alfred-nutile-inc/env-deployer. 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 env-deployer

Build Status

Env Deployer

Only works with 5.1 and greater

See the video

envdeploy

This will take your local environment and deploy it to the selected server

Your config file will have the list of servers

For example say your .env looks like this

The new Laravel tail library spatie/laravel-tail inspired and helped this a ton

#@dev=dev
#@stage=stage
APP_ENV=local

#@dev=dev_db
#@stage=stage_db
DATABASE_NAME=local_db

If you run the command

php artisan envdeployer:push dev

This will send you local to dev replacing the values as needed.

APP_ENV=dev
DATABASE_NAME=dev_db

This makes it super easy for local developers to merge their env to the different servers while at time keep a local .env and .env.example

php artisan envdeployer:make-example

Would then setup example with random values

php artisan envdeployer:share

Would place it on the config setting share path for the team member to write

php artisan envdeployer:share get

To get and pull that down as their env settings.

Lastly

php artisan envdeployer:get_and_merge dev

Would get dev and merge it into your local setting #@dev=foo as needed and adding values you are missing

Install

You can install the package via composer:

You must install this service provider:

Now to setup your config:

A file named envdeployer.php will be created in the config directory. The options you can set in the file should be self-explanatory.

RoadMap

Immediate Todo Items Make it a true laravel 5 library with config settings

1) get file from target and merge into local

2) share command so teams can share the file securely


All versions of env-deployer with dependencies

PHP Build Version
Package Version
Requires php Version >=5.4.0
illuminate/support Version *
vlucas/phpdotenv Version *
illuminate/contracts Version *
illuminate/console Version *
illuminate/filesystem Version *
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 alfred-nutile-inc/env-deployer contains the following files

Loading the files please wait ....