The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

Search results for "module:Config::Extensions"

Config::Extensions - hash lookup of which core extensions were built. River stage five • 11292 direct dependents • 32664 total dependents

The Config::Extensions module provides a hash %Extensions containing all the core extensions that were enabled for this perl. The hash is keyed by extension name, with each entry having one of 3 possible values: dynamic The extension is dynamically l...

PEVANS/perl-5.38.2 - 29 Nov 2023 16:10:36 UTC

Config::Extensions - hash lookup of which core extensions were built. River stage five • 11292 direct dependents • 32664 total dependents

The Config::Extensions module provides a hash %Extensions containing all the core extensions that were enabled for this perl. The hash is keyed by extension name, with each entry having one of 3 possible values: dynamic The extension is dynamically l...

RJBS/perl-5.36.0 - 28 May 2022 00:26:10 UTC

Config::INIPlus - Read and write INI-style config files with structure extensions River stage zero No dependents

KILNA/Config-INIPlus-v1.0.3 - 30 Aug 2012 07:57:14 UTC

Config::Any - Load configuration from different file formats, transparently River stage three • 97 direct dependents • 830 total dependents

Config::Any provides a facility for Perl applications and libraries to load configuration data from multiple different file formats. It supports XML, YAML, JSON, Apache-style configuration, Windows INI files, and even Perl code. The rationale for thi...

HAARG/Config-Any-0.33 - 03 May 2023 15:24:49 UTC

Config::TT2 - Reading configuration files with the Template-Toolkit parser. River stage one • 1 direct dependent • 1 total dependent

"Config::TT2" extends the "Template-Toolkit" aka "TT2" in a very special way: It returns the VARIABLES STASH instead of the template text! The TT2 syntax is very powerful, flexible and extensible. One of the key features of TT2 is the ability to bind...

GAISSMAI/Config-TT2-0.53 - 15 Sep 2012 14:12:29 UTC

Config::JFDI - Just * Do it: A Catalyst::Plugin::ConfigLoader-style layer over Config::Any River stage two • 9 direct dependents • 12 total dependents

Config::JFDI is an implementation of Catalyst::Plugin::ConfigLoader that exists outside of Catalyst. Essentially, Config::JFDI will scan a directory for files matching a certain name. If such a file is found which also matches an extension that Confi...

ROKR/Config-JFDI-0.065 - 01 Jan 2011 22:12:16 UTC

Config::Merge - load a configuration directory tree containing YAML, JSON, XML, Perl, INI or Config::General files River stage one • 2 direct dependents • 2 total dependents

Config::Merge is a configuration module which has six goals: * Flexible storage Store all configuration in your format(s) of choice (YAML, JSON, INI, XML, Perl, Config::General / Apache-style config) broken down into individual files in a configurati...

DRTECH/Config-Merge-1.04 - 25 Aug 2014 12:52:11 UTC

Config::Onion - Layered configuration, because configs are like ogres River stage two • 2 direct dependents • 85 total dependents

All too often, configuration is not a universal or one-time thing, yet most configuration-handling treats it as such. Perhaps you can only load one config file. If you can load more than one, you often have to load all of them at the same time or eac...

DSHEROH/Config-Onion-1.007 - 13 Oct 2016 10:12:59 UTC

Config::Locale - Load and merge locale-specific configuration files. River stage zero No dependents

This module takes an identity array, determines the permutations of the identity using Algorithm::Loops, loads configuration files using Config::Any, and finally combines the configurations using Hash::Merge. So, given this setup: Config::Locale->new...

BLUEFEET/Config-Locale-0.10 - 30 Jan 2021 03:20:29 UTC

DocSet::Config - A superclass that handles object's configuration and data River stage zero No dependents

This objects lays in the base of the DocSet class and provides configuration and internal data storage/retrieval methods. At the end of this document the generic configuration file is explained. METHODS META: to be completed (see SYNOPSIS meanwhile) ...

STAS/DocSet-0.19 - 03 Oct 2005 06:28:27 UTC

Config::Any::INI - Load INI config files River stage three • 97 direct dependents • 830 total dependents

Loads INI files. Example: name=TestApp [Controller::Foo] foo=bar [Model::Baz] qux=xyzzy...

HAARG/Config-Any-0.33 - 03 May 2023 15:24:49 UTC

Config::Any::XML - Load XML config files River stage three • 97 direct dependents • 830 total dependents

Loads XML files. Example: <config> <name>TestApp</name> <component name="Controller::Foo"> <foo>bar</foo> </component> <model name="Baz"> <qux>xyzzy</qux> </model> </config>...

HAARG/Config-Any-0.33 - 03 May 2023 15:24:49 UTC

Config::Any::TT2 - Config::Any plugin for Config::TT2 files River stage zero No dependents

Loads Config::TT2 files. Example: [% # tt2 directive start-tag scalar = 'string' array = [ 10 20 30 ] # commas are optional rev = array.reverse # powerful virtual methods item = array.0 # interpolate previous value hash = { foo = 'bar' # hashes to an...

GAISSMAI/Config-Any-TT2-0.12 - 17 Sep 2012 11:23:23 UTC

Config::Any::TOML - Load TOML config files River stage zero No dependents

Loads TOML files. See <https://github.com/mojombo/toml>...

MJEMMESON/Config-Any-TOML-0.002 - 03 Dec 2013 13:38:17 UTC

Config::Any::JSON - Load JSON config files River stage three • 97 direct dependents • 830 total dependents

Loads JSON files. Example: { "name": "TestApp", "Controller::Foo": { "foo": "bar" }, "Model::Baz": { "qux": "xyzzy" } }...

HAARG/Config-Any-0.33 - 03 May 2023 15:24:49 UTC

Config::Any::YAML - Load YAML config files River stage three • 97 direct dependents • 830 total dependents

Loads YAML files. Example: --- name: TestApp Controller::Foo: foo: bar Model::Baz: qux: xyzzy...

HAARG/Config-Any-0.33 - 03 May 2023 15:24:49 UTC

Config::Any::Perl - Load Perl config files River stage three • 97 direct dependents • 830 total dependents

Loads Perl files. Example: { name => 'TestApp', 'Controller::Foo' => { foo => 'bar' }, 'Model::Baz' => { qux => 'xyzzy' } }...

HAARG/Config-Any-0.33 - 03 May 2023 15:24:49 UTC

Config::Processor - Cascading configuration files processor with additional features River stage one • 1 direct dependent • 5 total dependents

Config::Processor is the cascading configuration files processor, which supports file inclusions, variables interpolation and other manipulations with configuration tree. Works with YAML and JSON file formats. File format is determined by the extensi...

IPH/Config-Processor-0.28 - 21 Jan 2018 15:01:09 UTC

Config::Singleton - one place for your app's configuration River stage zero No dependents

Config::Singleton provides a base class for access to configuration data for your app. The basic implementation stores its configuration in YAML in a text file found in all the usual places. By default, Config::Singleton looks for myapp.yml, but an a...

RJBS/Config-Singleton-0.006 - 21 Jun 2021 00:08:39 UTC

CGI::MxScreen::Config - configuration for CGI::MxScreen River stage zero No dependents

The CGI::MxScreen::Config module is meant to provide compile-time configuration for the CGI::MxScreen framework. Configuration parameters may be set in a Perl file (which is loaded via "require", so it must end-up being syntactically correct and retu...

PURDY/CGI-MxScreen-0.103 - 18 Oct 2004 15:16:18 UTC
36 results (0.036 seconds)