Commit b02b2c17 authored by 王源's avatar 王源
Browse files

调整rpc接口文件命名空间

parent 0343a4e1
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
Copyright (c) 2006-2019 meibuyu library
Copyright (c) 2006-2021 meibuyu library

Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
+20 −43
Original line number Diff line number Diff line
{
  "name": "meibuyu/micro",
  "description": "美不语微服务公共接口库",
    "name": "meibuyu/rpc",
    "description": "美不语微服务RPC接口库",
    "type": "library",
    "license": "MIT",
    "authors": [
        {
      "name": "梁俊杰",
      "email": "blithe8787@163.com"
            "name": "Zero",
            "email": "wangyuanwmm@163.com"
        }
    ],
    "require": {
    "ext-json": "*",
    "ext-redis": "*",
    "ext-gd": "*",
    "ext-curl": "*",
    "ext-mbstring": "*",
    "hyperf/cache": "~1.1.0",
    "hyperf/framework": "~1.1.0",
    "hyperf/db-connection": "~1.1.0",
    "hyperf/validation": "~1.1.0",
    "hyperf/command": "~1.1.0",
    "hyperf/redis": "~1.1.0",
    "hyperf/guzzle": "~1.1.0",
    "hyperf/config": "~1.1.0",
    "hyperf/logger": "~1.1.0",
    "hyperf/service-governance": "~1.1.0",
    "fzaninotto/faker": "^1.9",
    "phpoffice/phpspreadsheet": "^1.18",
    "dimsav/unix-zipper": "1.*",
    "hyperf/amqp": "~1.1.0"
    },
    "autoload": {
        "psr-4": {
      "Meibuyu\\Micro\\": "src/"
    },
    "files": [
      "src/functions.php",
      "src/const.php"
    ]
            "Meibuyu\\Rpc\\": "src/"
        }
    },
    "extra": {
        "hyperf": {
      "config": "Meibuyu\\Micro\\ConfigProvider"
            "config": "Meibuyu\\Rpc\\ConfigProvider"
        }
    }
}
+1 −1
Original line number Diff line number Diff line
<?php

namespace Meibuyu\Micro\Exceptions;
namespace Meibuyu\Rpc\Exceptions;

use Throwable;

+2 −2
Original line number Diff line number Diff line
<?php
/**
 * Created by PhpStorm.
 * User: zero
 * User: Zero
 * Date: 2020/3/27
 * Time: 15:03
 */

namespace Meibuyu\Micro\Service\Interfaces;
namespace Meibuyu\Rpc\Service\Interfaces\App;

interface AppServiceInterface
{
+1 −2
Original line number Diff line number Diff line
@@ -6,7 +6,7 @@
 * Time: 15:07
 */

namespace Meibuyu\Micro\Service\Interfaces;
namespace Meibuyu\Rpc\Service\Interfaces\Datacenter;

interface DatacenterServiceInterface
{
@@ -36,5 +36,4 @@ interface DatacenterServiceInterface
     */
    public function getCurrencyListRate($currencyIds, $field = ['id', 'currency_id', 'rate_val'], $where = []): array;


}
Loading