Skip to content

Commit b93bbec

Browse files
committed
perf: remove redundant files
1 parent 45ed452 commit b93bbec

25 files changed

+4
-3659
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
phpunit.xml
22
test/server/node_modules
33
vendor
4+
/.idea
5+
/composer.lock

Makefile

Lines changed: 0 additions & 54 deletions
This file was deleted.

README.md

Lines changed: 1 addition & 51 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,7 @@
1-
# [ABANDONED] Guzzle JSON-RPC
2-
3-
[![No Maintenance Intended](http://unmaintained.tech/badge.svg)](http://unmaintained.tech/)
1+
# Guzzle JSON-RPC
42

53
### This is no longer supported, please consider forking this repository to make any desired changes.
64

7-
[![Master branch build status][ico-build]][travis]
8-
[![Coverage Status][ico-coverage]][coverage]
9-
[![Quality Score][ico-quality]][quality]
10-
[![Published version][ico-package]][package]
11-
[![PHP ~5.5][ico-engine]][lang]
12-
[![MIT Licensed][ico-license]][license]
13-
14-
This library implements [JSON-RPC 2.0][jsonrpc] for the Guzzle HTTP client. We
15-
try to support all commonly used versions of Guzzle including:
16-
17-
- [GuzzleHTTP 6][guzzle] on [`master`][branch-master] branch, `^3.0` releases
18-
- [GuzzleHTTP 5][guzzle] on [`guzzle-5`][branch-5] branch, `^2.1` releases
19-
- [GuzzleHTTP 4][guzzle] on [`guzzle-4`][branch-4] branch, `2.0.*` releases
20-
- [Guzzle 3][guzzle-3] on [`guzzle-3`][branch-3] branch, `^1.0` releases
21-
22-
It can be installed in whichever way you prefer, but we recommend [Composer][package].
23-
245
```json
256
{
267
"require": {
@@ -54,9 +35,6 @@ $client->sendAll([
5435

5536
### Async requests
5637

57-
Asynchronous requests are supported by making use of the
58-
[Guzzle Promises][guzzle-promise] library; an implementation of
59-
[Promises/A+][promise].
6038

6139
```php
6240
<?php
@@ -125,31 +103,3 @@ but passing unit tests must be included before it will be considered for merge.
125103

126104
The content of this library is released under the **MIT License** by
127105
**Nature Delivered Ltd**.
128-
129-
You can find a copy of this license at
130-
[mit][mit] or in [`LICENSE`][license]
131-
132-
<!-- Links -->
133-
[mit]: http://www.opensource.org/licenses/mit
134-
[travis]: https://travis-ci.org/graze/guzzle-jsonrpc
135-
[lang]: http://php.net
136-
[package]: https://packagist.org/packages/graze/guzzle-jsonrpc
137-
[coverage]: https://scrutinizer-ci.com/g/graze/guzzle-jsonrpc/code-structure
138-
[quality]: https://scrutinizer-ci.com/g/graze/guzzle-jsonrpc
139-
[ico-license]: http://img.shields.io/packagist/l/graze/guzzle-jsonrpc.svg?style=flat
140-
[ico-package]: http://img.shields.io/packagist/v/graze/guzzle-jsonrpc.svg?style=flat
141-
[ico-build]: http://img.shields.io/travis/graze/guzzle-jsonrpc/master.svg?style=flat
142-
[ico-engine]: http://img.shields.io/badge/php-~5.5-8892BF.svg?style=flat
143-
[ico-coverage]: https://img.shields.io/scrutinizer/coverage/g/graze/guzzle-jsonrpc.svg?style=flat
144-
[ico-quality]: https://img.shields.io/scrutinizer/g/graze/guzzle-jsonrpc.svg?style=flat
145-
[vagrant]: http://vagrantup.com
146-
[jsonrpc]: http://jsonrpc.org/specification
147-
[guzzle]: https://github.com/guzzle/guzzle
148-
[promise]: https://promisesaplus.com
149-
[guzzle-3]: https://github.com/guzzle/guzzle3
150-
[guzzle-promise]: https://github.com/guzzle/promises
151-
[branch-3]: https://github.com/graze/guzzle-jsonrpc/tree/guzzle-3
152-
[branch-4]: https://github.com/graze/guzzle-jsonrpc/tree/guzzle-4
153-
[branch-5]: https://github.com/graze/guzzle-jsonrpc/tree/guzzle-5
154-
[branch-master]: https://github.com/graze/guzzle-jsonrpc
155-
[license]: LICENSE

composer.json

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -25,22 +25,10 @@
2525
"Graze\\GuzzleHttp\\JsonRpc\\": "src"
2626
}
2727
},
28-
"autoload-dev": {
29-
"psr-4": {
30-
"Graze\\GuzzleHttp\\JsonRpc\\Test\\": "test/src"
31-
}
32-
},
3328
"require": {
34-
"php": ">=5.5|^7.0",
29+
"php": "^7.4|^8.0",
3530
"guzzlehttp/guzzle": "^6.0",
3631
"guzzlehttp/promises": "^1.0",
3732
"psr/http-message": "^1.0"
38-
},
39-
"require-dev": {
40-
"adlawson/timezone": "~1.0",
41-
"squizlabs/php_codesniffer": "^2.9",
42-
"mockery/mockery": "~0.9",
43-
"phpunit/phpunit": "^4|^5",
44-
"graze/standards": "^1.0"
4533
}
4634
}

0 commit comments

Comments
 (0)