Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: equip/framework
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: equip/framework
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: dev
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 11 commits
  • 53 files changed
  • 3 contributors

Commits on Jun 1, 2016

  1. Improve quality to be Scrutinizer CI compliant (#57)

    * Use a single line comment
    
    * Add a separate method to retrieve the Request body
    AlexMasterov authored and ameech committed Jun 1, 2016
    Configuration menu
    Copy the full SHA
    19fe98f View commit details
    Browse the repository at this point in the history

Commits on Jun 4, 2016

  1. Configuration menu
    Copy the full SHA
    2f4031f View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    f2f44c9 View commit details
    Browse the repository at this point in the history

Commits on Jun 6, 2016

  1. Switch from routing to split dispatching (#63)

    Rather than having a single large routing table, split routing into
    separate dispatching classes, similar to a middleware set.
    shadowhand committed Jun 6, 2016
    Configuration menu
    Copy the full SHA
    0b4d290 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    59bfbd6 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    fcdbd96 View commit details
    Browse the repository at this point in the history

Commits on Jun 18, 2016

  1. Upgrade PHPUnit version to 5.4 (#58)

    * Remove PHPUnit from composer, require users to install PHPUnit globally
    * Upgrade PHPUnit version to 5.4 in Travis CI
    * Use TestCase::createMock instead of using TestCase::getMock (deprecated)
    * Use TestCase::setExpectedExceptionRegExp instead of using annotations
    AlexMasterov authored and shadowhand committed Jun 18, 2016
    Configuration menu
    Copy the full SHA
    c5d44d3 View commit details
    Browse the repository at this point in the history

Commits on Aug 4, 2016

  1. Configuration menu
    Copy the full SHA
    9c5c273 View commit details
    Browse the repository at this point in the history

Commits on Aug 7, 2016

  1. Configuration menu
    Copy the full SHA
    6108461 View commit details
    Browse the repository at this point in the history

Commits on Aug 16, 2016

  1. Make actions first class citizens (#75)

    According to the [intent of ADR][1], the Action part of the triad is
    meant to be a completely custom class that provides a boundary between
    HTTP and domain logic. The action is aware of the domain and knows how
    to direct output through a responder.
    
    This is not how Equip has been treating the domain. Our attempts to
    make Domain pseudo-HTTP-aware with Payload and Input has not been very
    successful and is probably the least concise bit of the framework.
    
    [1]: http://pmjones.io/adr/
    
    Also includes changes from:
    
    * Remove payload from formatting (#77)
    * Restore content negotiation (#78)
    * Add documentation for v3 changes (#79)
    * Remove payload and input classes (#80)
    * Remove content negotiation (#84)
    shadowhand authored Aug 16, 2016
    Configuration menu
    Copy the full SHA
    0db9791 View commit details
    Browse the repository at this point in the history

Commits on Aug 17, 2016

  1. Make ActionInterface use ServerRequestInterface (#85)

    Although ActionHandler deals exclusively with ServerRequestInterface
    instead of RequestInterface, ActionInterface used just
    RequestInterface. This made it impossible for actions to use the
    helpful features that ServerRequestInterface offers.
    
    In particular, this bug actually rendered the example Action code in
    the docs incorrect, because the variable $request (of type
    RequestInterface) was passed as a parameter to input(), which expected
    ServerRequestInterface.
    bvisness authored and shadowhand committed Aug 17, 2016
    Configuration menu
    Copy the full SHA
    edc1d96 View commit details
    Browse the repository at this point in the history
Loading