Skip to content

Commit

Permalink
Merge pull request #16 from digitonic/feature/upgrade-deps
Browse files Browse the repository at this point in the history
Laravel 7 Upgrade
  • Loading branch information
richdynamix authored Jul 25, 2022
2 parents fa2005f + 53f0a56 commit 1f37867
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 7 deletions.
2 changes: 0 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,10 @@ language: php

php:
- 7.2
- 7.3

env:
matrix:
- COMPOSER_FLAGS="--prefer-lowest"
- COMPOSER_FLAGS=""

before_script:
- travis_retry composer self-update
Expand Down
7 changes: 4 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,12 @@
}
],
"require": {
"php": "^7.1|^8.0",
"illuminate/support": "5.8.*|6.*|7.*|8.*"
"php": "^7.1|^8.0|^8.1",
"illuminate/support": "7.*|8.*|9.*",
"illuminate/testing": "7.*|8.*|9.*"
},
"require-dev": {
"orchestra/testbench": "3.8.*|^4.0|^5.0|^6.0",
"orchestra/testbench": "3.8.*|^4.0|^5.0|^6.0|^7.0",
"phpunit/phpunit": "^7.0|^8.0|^9.0"
},
"autoload": {
Expand Down
4 changes: 2 additions & 2 deletions src/TestResponse.php
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<?php

namespace Digitonic\ApiTestSuite;
use Illuminate\Foundation\Testing\Assert as PHPUnit;
use Illuminate\Testing\Assert as PHPUnit;

class TestResponse extends \Illuminate\Foundation\Testing\TestResponse
class TestResponse extends \Illuminate\Testing\TestResponse
{
/**
* Assert that the response has the given status code.
Expand Down

0 comments on commit 1f37867

Please sign in to comment.