Skip to content
This repository has been archived by the owner on Jan 29, 2020. It is now read-only.

zend-config 3.2.0

Compare
Choose a tag to compare
@weierophinney weierophinney released this 24 Apr 19:27
· 54 commits to master since this release

Added

  • #47 adds Zend\Config\Writer\JavaProperties, a complement to
    Zend\Config\Reader\JavaProperties, for writing JavaProperties files from configuration. The writer supports
    specifying an alternate key/value delimiter (the default is ":") via the constructor.

  • #46 adds a constructor option to the JavaProperties reader to allow
    users to indicate keys and values from the configuration should be trimmed of whitespace:

    $reader = new JavaProperties(
      JavaProperties::DELIMITER_DEFAULT, // or ":"
      JavaProperties::WHITESPACE_TRIM,   // or true; default is false
    );
  • #45 adds the ability to specify an alternate key/value delimiter to
    the JavaProperties config reader via the constructor: $reader = new JavaProperties("=");.

  • #42 adds support for PHP 7.1 and 7.2.

Changed

  • Nothing.

Deprecated

  • Nothing.

Removed

  • #42 removes support for HHVM.

Fixed

  • Nothing.