-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit b098bbe
Showing
37 changed files
with
6,577 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
/.idea | ||
/vendor |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# RpcServer Component | ||
|
||
## Intro | ||
|
||
Inject into your project abstraction on RPC calls according [JSON-RPC 2.0 Specification](http://www.jsonrpc.org/specification) | ||
|
||
## Installation | ||
|
||
#### Install via composer | ||
|
||
``` | ||
$ composer require devimteam/rpc-server | ||
``` | ||
|
||
## Use-cases | ||
|
||
## Contributing | ||
|
||
#### Install vendors | ||
|
||
``` | ||
$ composer install | ||
``` | ||
|
||
#### Run tests | ||
|
||
``` | ||
$ php vendor/bin/codecept run | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
actor: Tester | ||
paths: | ||
tests: tests | ||
log: tests/_output | ||
data: tests/_data | ||
support: tests/_support | ||
envs: tests/_envs | ||
settings: | ||
bootstrap: _bootstrap.php | ||
colors: true | ||
memory_limit: 1024M | ||
extensions: | ||
enabled: | ||
- Codeception\Extension\RunFailed | ||
modules: | ||
config: | ||
Db: | ||
dsn: '' | ||
user: '' | ||
password: '' | ||
dump: tests/_data/dump.sql |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
{ | ||
"type": "library", | ||
"name": "devimteam/rpc-server", | ||
"description": "Inject into your project abstraction on RPC calls according JSON-RPC 2.0 Specification", | ||
"keywords": [], | ||
"license": "", | ||
"authors": [], | ||
"version": "1.3.2", | ||
"minimum-stability": "stable", | ||
"require": { | ||
"php": ">=7", | ||
"symfony/http-foundation": "^3.1", | ||
"doctrine/orm": "~2.5.4" | ||
}, | ||
"require-dev": { | ||
"codeception/codeception": "*" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"Devimteam\\Component\\RpcServer\\": "src/" | ||
} | ||
} | ||
} |
Oops, something went wrong.