Skip to content

Commit 8b41a82

Browse files
committed
Merge branch '9.x' into master
2 parents 29f137a + 98ad679 commit 8b41a82

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ jobs:
2020

2121
steps:
2222
- name: Checkout code
23-
uses: actions/checkout@v1
23+
uses: actions/checkout@v2
2424

2525
- name: Setup PHP
26-
uses: shivammathur/setup-php@v1
26+
uses: shivammathur/setup-php@v2
2727
with:
2828
php-version: ${{ matrix.php }}
2929
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, bcmath, soap, intl, gd, exif, iconv, imagick

composer.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
"php": "^7.2",
1818
"ext-json": "*",
1919
"firebase/php-jwt": "^5.0",
20-
"guzzlehttp/guzzle": "^6.0|^7.0",
2120
"illuminate/auth": "^6.18.31|^7.22.4",
2221
"illuminate/console": "^6.18.31|^7.22.4",
2322
"illuminate/container": "^6.18.31|^7.22.4",
@@ -35,7 +34,7 @@
3534
"require-dev": {
3635
"mockery/mockery": "^1.0",
3736
"orchestra/testbench": "^4.4|^5.0",
38-
"phpunit/phpunit": "^8.0"
37+
"phpunit/phpunit": "^8.5|^9.3"
3938
},
4039
"autoload": {
4140
"psr-4": {

tests/Unit/AuthorizationControllerTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
namespace Laravel\Passport\Tests\Unit;
44

5-
use GuzzleHttp\Psr7\Response;
65
use Illuminate\Contracts\Routing\ResponseFactory;
76
use Illuminate\Http\Request;
87
use Laravel\Passport\Bridge\Scope;
@@ -17,6 +16,7 @@
1716
use League\OAuth2\Server\Exception\OAuthServerException as LeagueException;
1817
use League\OAuth2\Server\RequestTypes\AuthorizationRequest;
1918
use Mockery as m;
19+
use Nyholm\Psr7\Response;
2020
use PHPUnit\Framework\TestCase;
2121
use Psr\Http\Message\ResponseInterface;
2222
use Psr\Http\Message\ServerRequestInterface;

0 commit comments

Comments
 (0)