Download the PHP package theiconic/config without Composer

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

theiconic/config

General purpose config manager for file-based configuration.

Build Status Coverage Status Scrutinizer Code Quality Latest Stable Version Total Downloads License Dependency Status

Setup

Concepts

Spaces

Configuration is grouped into configuration spaces. Spaces are managed by the configuration factory.

Multi-file & multi-section configuration

A configuration space can read configuration from several files. The configuration is merged and then flattened by section.

Placeholders

During parsing, pre-defined placeholders will be replaced with the configured replacement values.

Example

So the basic setup looks something like this (modified example based on alice):

Multi-section config format

Configuration files must contain configuration sections. This is the sections in .ini files and the first level array/object items in .php or .json config files.

No sections are pre-selected by default. You will need to explicitly state the sections in code, like so:

Sections will be merged in the order specified, i.e. entries in later sections will override those in earlier sections.

Caching

All configuration is parsed into multidimensional PHP arrays. The arrays are then stored in cache files so that expensive parsing is bypassed.

Cache keys are determined based on

Cache is automatically validated based on file modification timestamps. Hence, the cache will automatically update itself whenever any of the source configuration files changes.

Parsing

Extendable parsers are used to parse different file formats. Currently implemented parsers are:

Accessing configuration values

Configuration can be accessed via dot-paths. These paths are dynamically resolved against the internal array-representation of configuration. This allows retrieving individual entries as well as collections of entries.

You can also retrieve the configuration as a flat array of dot-path to value mappings:

Using environment variables

There is no explicit functionality to handle environment variables, however they can be dynamically used in the configurations via the placeholders mechanism:

With these few lines in place, a configuration file could look like this:

License

THE ICONIC config library for PHP is released under the MIT License.


All versions of config with dependencies

PHP Build Version
Package Version
Requires php Version >=7.1
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 theiconic/config contains the following files

Loading the files please wait ....