Skip to content

Commit d9597eb

Browse files
author
Robert Kummer
authored
Merge pull request #16 from C0deWiser/master
Zend\Diactoros is abandoned. Migrate to Laminas\Diactoros
2 parents 5fc2027 + 3462a6c commit d9597eb

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

composer.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "ipunkt/laravel-oauth-introspection",
33
"description": "OAuth 2.0 Token Introspection implementation for extending Laravel Passport (RFC 7662)",
4-
"version": "2.0",
4+
"version": "2.0.1",
55
"keywords": [
66
"laravel",
77
"passport",
@@ -20,6 +20,7 @@
2020
"php": ">=7.0",
2121
"guzzlehttp/guzzle": ">=7.0",
2222
"ipunkt/laravel-package-manager": "^2.0",
23+
"laminas/laminas-diactoros": "^2.4",
2324
"laravel/passport": ">=8.0"
2425
},
2526
"autoload": {

src/Http/Controllers/IntrospectionController.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
use League\OAuth2\Server\ResourceServer;
1616
use Psr\Http\Message\ResponseInterface;
1717
use Psr\Http\Message\ServerRequestInterface;
18-
use Zend\Diactoros\Response as Psr7Response;
18+
use Laminas\Diactoros\Response as Psr7Response;
1919

2020
class IntrospectionController
2121
{

0 commit comments

Comments
 (0)