Weave Code
Code Weaver
Helps Laravel developers discover, compare, and choose open-source packages. See popularity, security, maintainers, and scores at a glance to make better decisions.
Feedback
Share your thoughts, report bugs, or suggest improvements.
Subject
Message

Laminas Config Laravel Package

laminas/laminas-config

Abandoned Laminas library for managing application configuration. Provides config containers and utilities (e.g., reading/merging structured config) used across Laminas/Zend-style apps. No further development; see Laminas TSC minutes for details.

View on GitHub
Deep Wiki
Context7

Laminas\Config\Writer

Laminas\Config\Writer provides the ability to write config files from an array, Laminas\Config\Config instance, or any Traversable object. Laminas\Config\Writer is itself only an interface that defining the methods toFile() and toString().

We have six writers implementing the interface:

  • Laminas\Config\Writer\Ini
  • Laminas\Config\Writer\JavaProperties
  • Laminas\Config\Writer\Json
  • Laminas\Config\Writer\PhpArray
  • Laminas\Config\Writer\Xml
  • Laminas\Config\Writer\Yaml

Laminas\Config\Writer\Ini

The INI writer has two modes for rendering with regard to sections. By default, the top-level configuration is always written into section names. By calling $writer->setRenderWithoutSectionsFlags(true); all options are written into the global namespace of the INI file and no sections are applied.

Laminas\Config\Writer\Ini has an additional option parameter, nestSeparator, which defines with which character the single nodes are separated. The default is a single dot (.), such as is accepted by Laminas\Config\Reader\Ini by default.

When modifying or creating a Laminas\Config\Config object, there are several considerations to keep in mind. To create or modify a value, you simply say set the parameter of the Config object via the parameter accessor (->). To create a section in the root or to create a branch, just create a new array ($config->branch = [];).

Using Laminas\Config\Writer\Ini

Consider the following code, which creates a configuration structure:

// Create the config object
$config = new Laminas\Config\Config([], true);
$config->production = [];

$config->production->webhost = 'www.example.com';
$config->production->database = [];
$config->production->database->params = [];
$config->production->database->params->host = 'localhost';
$config->production->database->params->username = 'production';
$config->production->database->params->password = 'secret';
$config->production->database->params->dbname = 'dbproduction';

$writer = new Laminas\Config\Writer\Ini();
echo $writer->toString($config);

The result of this code is the following INI string:

[production]
webhost = "www.example.com"
database.params.host = "localhost"
database.params.username = "production"
database.params.password = "secret"
database.params.dbname = "dbproduction"

You can use the method toFile() to store the INI data to a file instead.

Laminas\Config\Writer\JavaProperties

  • Since 3.2.0

The JavaProperties writer can only write single-dimensional configuration (i.e., key/value pairs); this is a limitation of the JavaProperties format.

Laminas\Config\Writer\JavaProperties has a single, optional constructor parameter, delimiter, which defines with which character the key/value pairs are separated. The default is a single colon (:), such as is accepted by Laminas\Config\Reader\JavaProperties by default.

Using Laminas\Config\Writer\JavaProperties

Consider the following code, creating configuration:

// Create the config object
$config = new Laminas\Config\Config([], true);

$config->webhost             = 'www.example.com'; // use object notation
$config['database.host']     = 'localhost';       // or array notation, for complex key names
$config['database.username'] = 'production';
$config['database.password'] = 'secret';
$config['database.dbname']   = 'dbproduction';

$writer = new Laminas\Config\Writer\JavaProperties();
echo $writer->toString($config);

The result of this code is the following JavaProperties string:

webhost:www.example.com
database.host:localhost
database.username:production
database.password:secret
database.dbname:dbproduction

You can use the method toFile() to store the JavaProperties data to a file instead.

Using an alternate delimiter

If you want to use an alternate delimiter, such as =, pass it to the constructor:

$writer = new Laminas\Config\Writer\JavaProperties('=');

Using the above configuration, we would now receive:

webhost=www.example.com
database.host=localhost
database.username=production
database.password=secret
database.dbname=dbproduction

Laminas\Config\Writer\Xml

Laminas\Config\Writer\Xml can be used to generate an XML string or file.

Using Laminas\Config\Writer\Xml

Consider the following code, which creates a configuration structure:

// Create the config object
$config = new Laminas\Config\Config([], true);
$config->production = [];

$config->production->webhost = 'www.example.com';
$config->production->database = [];
$config->production->database->params = [];
$config->production->database->params->host = 'localhost';
$config->production->database->params->username = 'production';
$config->production->database->params->password = 'secret';
$config->production->database->params->dbname = 'dbproduction';

$writer = new Laminas\Config\Writer\Xml();
echo $writer->toString($config);

The result of this code is the following XML string:

<?xml version="1.0" encoding="UTF-8"?>
<laminas-config>
    <production>
        <webhost>www.example.com</webhost>
        <database>
            <params>
                <host>localhost</host>
                <username>production</username>
                <password>secret</password>
                <dbname>dbproduction</dbname>
            </params>
        </database>
    </production>
</laminas-config>

You can use the method toFile() to store the XML data to a file.

Laminas\Config\Writer\PhpArray

Laminas\Config\Writer\PhpArray can be used to generate a PHP script that represents and returns configuration.

Using Laminas\Config\Writer\PhpArray

Consider the following code, which creates a configuration structure:

// Create the config object
$config = new Laminas\Config\Config([], true);
$config->production = [];

$config->production->webhost = 'www.example.com';
$config->production->database = [];
$config->production->database->params = [];
$config->production->database->params->host = 'localhost';
$config->production->database->params->username = 'production';
$config->production->database->params->password = 'secret';
$config->production->database->params->dbname = 'dbproduction';

$writer = new Laminas\Config\Writer\PhpArray();
echo $writer->toString($config);

The result of this code is the following PHP script:

<?php
return [
  'production' =>
  [
    'webhost' => 'www.example.com',
    'database' =>
    [
      'params' =>
      [
        'host' => 'localhost',
        'username' => 'production',
        'password' => 'secret',
        'dbname' => 'dbproduction',
      ],
    ],
  ],
];

You can use the method toFile() to save the PHP script to a file.

Laminas\Config\Writer\Json

Laminas\Config\Writer\Json can be used to generate a JSON representation of configuration.

Using Laminas\Config\Writer\Json

Consider the following code, which creates a configuration structure:

// Create the config object
$config = new Laminas\Config\Config([], true);
$config->production = [];

$config->production->webhost = 'www.example.com';
$config->production->database = [];
$config->production->database->params = [];
$config->production->database->params->host = 'localhost';
$config->production->database->params->username = 'production';
$config->production->database->params->password = 'secret';
$config->production->database->params->dbname = 'dbproduction';

$writer = new Laminas\Config\Writer\Json();
echo $writer->toString($config);

The result of this code is the following JSON string:

{
  "webhost": "www.example.com",
  "database": {
    "params": {
      "host": "localhost",
      "username": "production",
      "password": "secret",
      "dbname": "dbproduction"
    }
  }
}

You can use the method toFile() to save the JSON data to a file.

Laminas\Config\Writer\Json uses the laminas-json component to convert the data to JSON.

Laminas\Config\Writer\Yaml

Laminas\Config\Writer\Yaml can be used to generate a PHP code that returns the YAML representation of configuration. In order to use the YAML writer, we need to pass a callback to an external PHP library, or use the YAML PECL extension.

Using Laminas\Config\Writer\Yaml

Consider the following code, which creates a configuration structure using the YAML PECL extension:

// Create the config object
$config = new Laminas\Config\Config([], true);
$config->production = [];

$config->production->webhost = 'www.example.com';
$config->production->database = [];
$config->production->database->params = [];
$config->production->database->params->host = 'localhost';
$config->production->database->params->username = 'production';
$config->production->database->params->password = 'secret';
$config->production->database->params->dbname = 'dbproduction';

$writer = new Laminas\Config\Writer\Yaml();
echo $writer->toString($config);

The result of this code is the following YAML string contains the following value:

webhost: www.example.com
database:
    params:
      host:     localhost
      username: production
      password: secret
      dbname:   dbproduction

You can use the method toFile() to save the YAML data to a file.

If you want to use an external YAML writer library, pass the callback function that will generate the YAML from the configuration when instantiating the writer. For instance, to use the Spyc library:

// include the Spyc library
require_once 'path/to/spyc.php';

$writer = new Laminas\Config\Writer\Yaml(['Spyc', 'YAMLDump']);
echo $writer->toString($config);
Weaver

How can I help you explore Laravel packages today?

Conversation history is not saved when not logged in.
Prompt
Add packages to context
No packages found.
davejamesmiller/laravel-breadcrumbs
artisanry/parsedown
christhompsontldr/phpsdk
enqueue/dsn
bunny/bunny
enqueue/test
enqueue/null
enqueue/amqp-tools
bower-asset/punycode
bower-asset/inputmask
bower-asset/jquery
bower-asset/yii2-pjax
laravel/nova
spatie/laravel-mailcoach
spatie/laravel-superseeder
laravel/liferaft
nst/json-test-suite
danielmiessler/sec-lists
jackalope/jackalope-transport
twbs/bootstrap4