Skip to content

Commit

Permalink
refactored main method to process query. get rid of design pattern. f…
Browse files Browse the repository at this point in the history
…ixed test queries.
  • Loading branch information
stefanak-michal committed Aug 11, 2021
1 parent fdb0b29 commit 7e67c4b
Show file tree
Hide file tree
Showing 19 changed files with 374 additions and 452 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

PHP API library following Deepr specification.

![](https://img.shields.io/badge/phpunit-passed-success) ![](https://img.shields.io/badge/coverage-97%25-green) ![](https://img.shields.io/github/stars/stefanak-michal/deepr-php) ![](https://img.shields.io/packagist/dt/stefanak-michal/deepr-php) ![](https://img.shields.io/github/v/release/stefanak-michal/deepr-php) ![](https://img.shields.io/github/commits-since/stefanak-michal/deepr-php/latest)
![phpunit](https://img.shields.io/badge/phpunit-passed-success) ![coverage](https://img.shields.io/badge/coverage-94%25-green) ![stars](https://img.shields.io/github/stars/stefanak-michal/deepr-php) ![downloads](https://img.shields.io/packagist/dt/stefanak-michal/deepr-php) ![release](https://img.shields.io/github/v/release/stefanak-michal/deepr-php) ![commits](https://img.shields.io/github/commits-since/stefanak-michal/deepr-php/latest)

## Usage

Expand Down
99 changes: 52 additions & 47 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,50 +1,55 @@
{
"name": "stefanak-michal/deepr-php",
"description": "API library following Deepr specification",
"keywords": ["deepr", "php", "api", "rpc"],
"homepage": "https://github.com/stefanak-michal/deepr-php",
"type": "library",
"readme": "README.md",
"license": "MIT",
"minimum-stability": "stable",
"require": {
"php": ">=7.1.0"
},
"require-dev": {
"phpunit/phpunit": ">=7.5.0",
"ext-json": "*"
},
"support": {
"issues": "https://github.com/stefanak-michal/deepr-php/issues",
"source": "https://github.com/stefanak-michal/deepr-php"
},
"funding": [
{
"type": "paypal",
"url": "https://www.paypal.me/MichalStefanak"
}
],
"authors": [
{
"name": "Michal Stefanak",
"role": "Developer",
"homepage": "https://www.linkedin.com/in/michalstefanak/"
}
],
"autoload": {
"psr-4": {
"Deepr\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Deepr\\tests\\": "tests/"
}
},
"scripts": {
"test": [
"Composer\\Config::disableProcessTimeout",
"phpunit"
]
"name": "stefanak-michal/deepr-php",
"description": "API library following Deepr specification",
"keywords": [
"deepr",
"php",
"api",
"rpc"
],
"homepage": "https://github.com/stefanak-michal/deepr-php",
"type": "library",
"readme": "README.md",
"license": "MIT",
"minimum-stability": "stable",
"require": {
"php": ">=7.2.0",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": ">=7.5.0"
},
"support": {
"issues": "https://github.com/stefanak-michal/deepr-php/issues",
"source": "https://github.com/stefanak-michal/deepr-php"
},
"funding": [
{
"type": "paypal",
"url": "https://www.paypal.me/MichalStefanak"
}
],
"authors": [
{
"name": "Michal Stefanak",
"role": "Developer",
"homepage": "https://www.linkedin.com/in/michalstefanak/"
}
],
"autoload": {
"psr-4": {
"Deepr\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Deepr\\tests\\": "tests/"
}
},
"scripts": {
"test": [
"Composer\\Config::disableProcessTimeout",
"phpunit"
]
}
}
Loading

0 comments on commit 7e67c4b

Please sign in to comment.