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

Prepare for RC6 #60

Merged

Commits on Jan 19, 2016

  1. Allow using zend-servicemanager v3

    Sets the version constraint for zend-servicemanager to `^2.7.3 || ^3.0`,
    to allow usage of either version. Initial selection will be based on
    other dependencies. Users can override later to select a more specific
    version.
    weierophinney committed Jan 19, 2016
    Configuration menu
    Copy the full SHA
    8dba178 View commit details
    Browse the repository at this point in the history
  2. Set new version for zend-expressive-helpers

    Need the 2.0 version going forward. This also means new configuration for the
    middleware pipeline.
    
    Per zendframework/zend-expressive#270, this patch updates the middleware
    pipeline to be an array of middleware specifications, each with a
    priority. It defines three specific pipelines:
    
    - "always" is registered at priority 10000, and represents a pipeline of
      middleware that acts as either pre-conditions or post-routing handlers
      (e.g., CORS support, WWW-Authentication header injection, etc.).
    - "routing" is registered at priority 1, and defines a middleware
      pipeline containing the routing, UrlHelper, and dispatch middleware;
      any middleware that you might want to have intercept the results of
      routing could go between them.
    - "error" is registered at priority -1000, and defines a middleware
      pipeline for error handlers.
    weierophinney committed Jan 19, 2016
    Configuration menu
    Copy the full SHA
    7627203 View commit details
    Browse the repository at this point in the history
  3. Use --no-dev when installing

    Otherwise the dev requirements *before they are rewritten by the installer* are
    used.
    
    Also provides a note detailing how to install the dev requirements after
    installation.
    weierophinney committed Jan 19, 2016
    Configuration menu
    Copy the full SHA
    cf17bc2 View commit details
    Browse the repository at this point in the history