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

Releases: zfcampus/zf-development-mode

zf-development-mode 3.2.0

07 May 15:45
Compare
Choose a tag to compare

Added

  • #35 adds support for PHP 7.2.

  • #32 adds a new sub-command, auto-composer. When invoked, it uses the value of
    the environment variable COMPOSER_DEV_MODE to determine whether to enable or disable development
    mode locally. If the variable is not present, it does nothing; if 0, it disables development
    mode, and if 1, it enables development mode. This can be particularly useful as a composer script:

    "scripts": {
      "development-auto": "zf-development-mode auto-composer",
      "post-install-cmd": ["@development-auto"],
      "post-update-cmd": ["@development-auto"]
    }

Changed

  • #29 modifies how the enable subcommand copies development config files into
    the filesystem. On operating systems that are known to support symlink() predictably,
    the command will now create symlinks instead of copies. These include most Linux, BSD,
    and MacOS variants.

Deprecated

  • Nothing.

Removed

  • #35 removes support for HHVM.

Fixed

  • Nothing.

zf-development-mode 3.1.0

09 Jan 23:36
Compare
Choose a tag to compare

Added

Deprecated

  • Nothing.

Removed

  • Nothing.

Fixed

  • Nothing.

zf-development-mode 3.0.0

22 Jun 20:43
Compare
Choose a tag to compare

Added

  • #19 adds a standalone vendor binary, which may be invoked as ./vendor/bin/zf-development-mode.
  • #19 adds support for PHP 7.

Deprecated

  • Nothing.

Removed

  • #19 removes integration with zend-mvc/zend-console.
  • #19 removes the suggestions to install ZendDeveloperTools and ZFTool, as they are not ready for zend-mvc v3.
  • #19 removes support for PHP versions less than 5.6.

Fixed

  • Nothing.

zf-development-mode 2.1.1

31 Aug 09:09
2.1.1
Compare
Choose a tag to compare

Added

  • Nothing.

Deprecated

  • Nothing.

Removed

  • Nothing.

Fixed

  • #13 ensures that
    the application configuration cache file is always removed when switching
    to and from development mode.