Skip to content

Commit bf7a683

Browse files
author
Christoph Singer
committed
Make it clear that it still does not work in SF 4
1 parent 7fed7bd commit bf7a683

3 files changed

Lines changed: 6 additions & 3 deletions

File tree

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ script: vendor/bin/phpunit
1919

2020
matrix:
2121
allow_failures:
22+
- env: SYMFONY_VERSION=^4
2223
- env: SYMFONY_VERSION=dev-master
2324
exclude:
2425
- env: SYMFONY_VERSION=dev-master

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,9 @@ JsonRpcBundle
66
[![Downloads from Packagist](http://img.shields.io/packagist/dt/wa72/jsonrpc-bundle.svg)](https://packagist.org/packages/wa72/jsonrpc-bundle)
77

88

9-
JsonRpcBundle is a bundle for Symfony 2.7 and up that allows to easily build a JSON-RPC server for web services using [JSON-RPC 2.0] (http://www.jsonrpc.org/specification).
9+
JsonRpcBundle is a bundle for Symfony 2 and 3 that allows to easily build a JSON-RPC server for web services using [JSON-RPC 2.0] (http://www.jsonrpc.org/specification).
10+
11+
*Currently it does not work yet with Symfony 4.*
1012

1113
The bundle contains a controller that is able to expose methods of any service registered in the Symfony service container as a JSON-RPC web service.
1214

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name":"wa72/jsonrpc-bundle",
3-
"description":"JSON-RPC server, originally for Symfony 2, updated for Symfony 4: exposes services registered in the service container as JSON-RPC webservices",
3+
"description":"JSON-RPC server for Symfony: exposes services registered in the service container as JSON-RPC webservices",
44
"keywords":["json", "rpc", "jsonrpc", "json-rpc", "webservice", "symfony4bundle" ],
55
"homepage":"http://github.com/wasinger/jsonrpc-bundle",
66
"license":"MIT",
@@ -14,7 +14,7 @@
1414
],
1515
"require":{
1616
"php":">=5.4",
17-
"symfony/symfony":"~2.7|~3.0|^4.0",
17+
"symfony/symfony":"~2.7|~3.0",
1818
"jms/serializer-bundle":"^1.1|^2"
1919
},
2020
"require-dev": {

0 commit comments

Comments
 (0)