This repository has been archived by the owner on Jan 21, 2020. It is now read-only.
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; if0
, it disables development
mode, and if1
, 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 supportsymlink()
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.