You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+36-36Lines changed: 36 additions & 36 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -26,17 +26,17 @@ See [yoanm/symfony-jsonrpc-http-server-doc](https://github.com/yoanm/symfony-jso
26
26
27
27
## Versions
28
28
29
-
*Symfony v3/4 - PHP >=7.1 : `^2.0`
29
+
* Symfony v3/4 - PHP >=7.1 : `^2.0`
30
30
31
-
⚠️⚠️ `v2.1.0` and `v2.1.1` were badly taggued, used `v3.0.0` instead ! ⚠️⚠️
31
+
⚠️⚠️ `v2.1.0` and `v2.1.1` were badly taggued, used `v3.0.0` instead ! ⚠️⚠️
32
32
33
-
*Symfony v4/5 - PHP >=7.2 : `~3.0.0`
33
+
* Symfony v4/5 - PHP >=7.2 : `~3.0.0`
34
34
35
-
*Symfony v4/5 - PHP >=7.3 : `^3.1`
35
+
* Symfony v4/5 - PHP >=7.3 : `^3.1`
36
36
37
-
*Symfony v4.4/5.4 - PHP ^8.0 : `^3.2`
37
+
* Symfony v4.4/5.4 - PHP ^8.0 : `^3.2`
38
38
39
-
*Symfony v4.4/5.4/6.x - PHP ^8.0 : `^3.3`
39
+
* Symfony v4.4/5.4/6.x - PHP ^8.0 : `^3.3`
40
40
41
41
## How to use
42
42
@@ -48,41 +48,41 @@ See below how to configure it.
48
48
49
49
Bundle requires only one thing :
50
50
51
-
*JSON-RPC Methods which are compatible with [`yoanm/jsonrpc-server-sdk`](https://raw.githubusercontent.com/yoanm/php-jsonrpc-server-sdk)
51
+
* JSON-RPC Methods which are compatible with [`yoanm/jsonrpc-server-sdk`](https://raw.githubusercontent.com/yoanm/php-jsonrpc-server-sdk)
52
52
53
53
It comes with [built-in method resolver](./src/Resolver/MethodResolver.php) which use a [service locator](https://symfony.com/doc/3.4/service_container/service_subscribers_locators.html#defining-a-service-locator). Using a service locator allow to load (and so instanciate dependencies, dependencies of dependencies, etc) method only when required (usually only one method is required by request, except for batch requests which will load one or more methods).
54
54
55
55
*[Behat demo app configuration folders](./features/demo_app/) can be used as examples.*
56
56
57
-
*Add the bundles in your `config/bundles.php` file:
0 commit comments