Skip to content

Commit

Permalink
Init commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Darkenery committed Sep 29, 2016
0 parents commit b098bbe
Show file tree
Hide file tree
Showing 37 changed files with 6,577 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
/.idea
/vendor
29 changes: 29 additions & 0 deletions README.md
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
```
21 changes: 21 additions & 0 deletions codeception.yml
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
23 changes: 23 additions & 0 deletions composer.json
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/"
}
}
}
Loading

0 comments on commit b098bbe

Please sign in to comment.