-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactored main method to process query. get rid of design pattern. f…
…ixed test queries.
- Loading branch information
1 parent
fdb0b29
commit 7e67c4b
Showing
19 changed files
with
374 additions
and
452 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
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 |
---|---|---|
@@ -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" | ||
] | ||
} | ||
} |
Oops, something went wrong.