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: albertcht/lumen-testing
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.1
Choose a base ref
...
head repository: albertcht/lumen-testing
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
  • 5 commits
  • 3 files changed
  • 2 contributors

Commits on Jan 2, 2020

  1. Issue 13, could not send parameters to json endpoints

    This should fix the problems that parameters in tests like these, do not end up in the controller:
    ```php
    $this->json('GET', '/something', ['var' => 'x']);
    ```
    
    With this change you can again just do this in your Controller, and it will work:
    ```php
    $input = $this->validate($request, [
      'var' => 'required',
    ]);
    ```
    
    With the default AlbertCht\lumen-testing the above would fail with `var.required`, even though you set it.
    HenkPoley authored Jan 2, 2020
    Configuration menu
    Copy the full SHA
    aa80321 View commit details
    Browse the repository at this point in the history
  2. Add testing for Lumen 5.7, 5.8 and 6.x, plus PHP 7.1-7.4

    Upgrade distro to bionic (Ubuntu 18.04 LTS) so we have PHP 7.1-7.4 available:
    
    https://docs.travis-ci.com/user/languages/php/#choosing-php-versions-to-test-against
    
    I notice that Travis CI doesn't quite seem to know that tests have ended. Not sure if this fixes anything.
    HenkPoley authored Jan 2, 2020
    Configuration menu
    Copy the full SHA
    f58d9c7 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #14 from HenkPoley/patch-1

    Fix for Issue 13, could not send parameters to json endpoints
    albertcht authored Jan 2, 2020
    Configuration menu
    Copy the full SHA
    922f8d1 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #16 from HenkPoley/patch-2

    Add testing for Lumen 5.7, 5.8 and 6.x, plus PHP 7.1-7.4
    albertcht authored Jan 2, 2020
    Configuration menu
    Copy the full SHA
    1a1cdb1 View commit details
    Browse the repository at this point in the history

Commits on Aug 11, 2020

  1. Update composer.json

    support lumen 7.0
    albertcht authored Aug 11, 2020
    Configuration menu
    Copy the full SHA
    e8bac92 View commit details
    Browse the repository at this point in the history
Loading