重传
Showing
.gitignore
0 → 100644
.travis.yml
0 → 100644
LICENSE
0 → 100644
README.md
0 → 100644
composer.json
0 → 100644
| { | |||
| "name": "swoft/rpc-server", | |||
| "type": "library", | |||
| "keywords": [ | |||
| "php", | |||
| "swoole", | |||
| "swoft", | |||
| "rpc" | |||
| ], | |||
| "description": "microservice framework base on swoole", | |||
| "license": "Apache-2.0", | |||
| "require": { | |||
| "swoft/framework": "^1.0", | |||
| "swoft/console": "^1.0", | |||
| "swoft/http-message": "^1.0", | |||
| "psr/http-server-middleware": "^1.0" | |||
| }, | |||
| "require-dev": { | |||
| "eaglewu/swoole-ide-helper": "dev-master", | |||
| "phpunit/phpunit": "^5.7" | |||
| }, | |||
| "autoload": { | |||
| "psr-4": { | |||
| "Swoft\\Rpc\\Server\\": "src/" | |||
| } | |||
| }, | |||
| "autoload-dev": { | |||
| "psr-4": { | |||
| "SwoftTest\\RpcServer\\": "test/Cases" | |||
| } | |||
| }, | |||
| "repositories": [ | |||
| { | |||
| "type": "composer", | |||
| "url": "https://packagist.phpcomposer.com" | |||
| } | |||
| ], | |||
| "scripts": { | |||
| "test": "./vendor/bin/phpunit -c phpunit.xml" | |||
| } | |||
| } |
phpunit.xml
0 → 100644
src/Bean/Annotation/Service.php
0 → 100644
src/Bean/Collector/ServiceCollector.php
0 → 100644
src/Bean/Parser/ServiceParser.php
0 → 100644
src/Bean/Wrapper/ServiceWrapper.php
0 → 100644
src/Bootstrap/CoreBean.php
0 → 100644
src/Bootstrap/Listeners/RpcEventListener.php
0 → 100644
src/Command/RpcCommand.php
0 → 100644
src/Event/Listeners/AfterReceiveListener.php
0 → 100644
src/Event/RpcServerEvent.php
0 → 100644
src/Exception/RpcServerException.php
0 → 100644
src/Middleware/HandlerAdapterMiddleware.php
0 → 100644
src/Middleware/PackerMiddleware.php
0 → 100644
src/Middleware/RouterMiddleware.php
0 → 100644
src/Middleware/UserMiddleware.php
0 → 100644
src/Middleware/ValidatorMiddleware.php
0 → 100644
src/Router/HandlerAdapter.php
0 → 100644
src/Router/HandlerMapping.php
0 → 100644
src/Rpc/Request.php
0 → 100644
src/Rpc/Response.php
0 → 100644
src/Rpc/RpcServer.php
0 → 100644
src/ServiceDispatcher.php
0 → 100644
src/Validator/ServiceValidator.php
0 → 100644
test/.env
0 → 100644
test/Cases/AbstractTestCase.php
0 → 100644
test/Cases/DemoTest.php
0 → 100644
test/bootstrap.php
0 → 100644
test/config/beans/base.php
0 → 100644
test/config/beans/log.php
0 → 100644
test/config/define.php
0 → 100644
test/config/properties/app.php
0 → 100644
test/config/properties/cache.php
0 → 100644
test/config/server.php
0 → 100644
Please
register
or
sign in
to comment