phpf/config

Phpf Configuration package

Installs: 11

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 1

pkg:composer/phpf/config

dev-master 2014-05-18 23:54 UTC

This package is not auto-updated.

Last update: 2025-10-11 17:56:23 UTC


README

General use configuration classes

###Requirements

  • Wells\Util

##Basic Usage

Use dot-notation to set and get settings in nested arrays.

$config = new Wells\Config\Object;
$config->set('use.template.views', true);

The above will be stored like:

"use" => array(
    "template" => array(
        "views" => true
    ),
);