This commit is contained in:
yansongda 2021-07-10 09:41:29 +08:00
parent 3fbf275c7e
commit 58b19d22e6
3 changed files with 7 additions and 2 deletions

View File

@ -20,6 +20,11 @@
"ext-simplexml":"*",
"ext-libxml": "*",
"ext-json": "*",
"psr/event-dispatcher": "^1.0",
"psr/log": "^1.1",
"psr/container": "^1.1 | ^2.0",
"psr/http-client": "^1.0",
"psr/http-message": "^1.0",
"php-di/php-di": "~6.3.0",
"yansongda/supports": "~3.1.0",
"guzzlehttp/guzzle": "~7.3.0"

View File

@ -4,6 +4,6 @@ declare(strict_types=1);
namespace Yansongda\Pay\Contract;
interface EventDispatcherInterface
interface EventDispatcherInterface extends \Psr\EventDispatcher\EventDispatcherInterface
{
}

View File

@ -4,6 +4,6 @@ declare(strict_types=1);
namespace Yansongda\Pay\Contract;
interface LoggerInterface
interface LoggerInterface extends \Psr\Log\LoggerInterface
{
}