Download the PHP package naugrim/laravel-strict-config-helper without Composer

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

Laravel Strict Config Helper

This package is mainly intended to work together with PHPStan.

Laravel's helper config($key, $default) returns mixed. In higher PHPStan levels, you cannot perform certain operations on mixed types.

Example:

https://phpstan.org/r/39022f87-cbae-4e7b-bb44-8a4a655d2f00

This produces the following error:

Line Message
10 Parameter #1 $haystack of function strpos expects string, mixed given

With this package, you can do:

https://phpstan.org/r/0c0e3e10-2dbd-418b-966d-2930016d803d

No error is returned, as $value is guaranteed to be a string.

A RuntimeException is thrown if the value in the config has the wrong type.

Note: The helper functions in this package cannot return NULL. So if the value is not set in your config and you do not provide a $default value, an exception will be thrown.

Installation

Available Functions

IDE config key autocompletion

If you are using the awesome Laravel IDEA plugin for PHPStorm, you can create a file named ide.json in your project with the following content to have autocompletion of the config keys:


All versions of laravel-strict-config-helper with dependencies

PHP Build Version
Package Version
Requires php Version ^8.1
laravel/framework Version ^8.0|^9.0|^10.0|^11.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 naugrim/laravel-strict-config-helper contains the following files

Loading the files please wait ....