Download the PHP package crhg/laravel-env-check without Composer

On this page you can find all versions of the php package crhg/laravel-env-check. 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-env-check

SUMMARY

Enhance checking of configuration cache and environment.

DESCRIPTION

Prohibit designation of an explicit environment when configuration is cached

Laravel's environment can be sepcified with the --env option of artisan command or APP_ENV environment variable, but specified environment is ignored when the configuration is cached.

Since this is potentially dangerous, when configuration is cached, it is prohibited to specify the environment with --env option orAPP_ENV environment variable.

Prohibit designation of environment for config:cache command

When generating the configuration cache with the config: cache command, prohibit specification of the environment with the--env option or the APP_ENV environment variable. Therefore, only the default environment described in the .env file can be cached.

Check consistency with .env file

Saves the checksum of the .env file when the config cache is generated. It is checked whether it matches that of the current .env file. If they do not match, an error will occur.

Commands to be excluded from check

Some artisan commands do not depend on the environment, so exclude them from checking.

If you want to add some commands to exclude, use the excluded_command setting in config/env_check.php.

INSTALL

Add the following code before return $app in bootstrap/app.php;

EXAMPLE


All versions of laravel-env-check with dependencies

PHP Build Version
Package Version
Requires php Version >=7.0
laravel/framework Version ^5.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 crhg/laravel-env-check contains the following files

Loading the files please wait ....