Skip to content

Commit

Permalink
Merge pull request #12 from stefanak-michal/rebuild
Browse files Browse the repository at this point in the history
Rebuild
  • Loading branch information
stefanak-michal authored Aug 12, 2021
2 parents fdb0b29 + 1a40c89 commit 1f683b5
Show file tree
Hide file tree
Showing 19 changed files with 375 additions and 453 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@

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

Check [wiki](https://github.com/stefanak-michal/deepr-php/wiki) for more informations about how to use this library. Check [Deepr](https://github.com/deeprjs/deepr) specification to learn how to make requests.

## Requirements

- PHP >= 7.1
- PHP >= 7.2

## Installation

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 1f683b5

Please sign in to comment.