From 44787b0f7d1749e42f1bb0ffd7a30c08be31361c Mon Sep 17 00:00:00 2001 From: a-sansara Date: Wed, 15 Mar 2017 23:51:19 +0100 Subject: [PATCH] typo in README --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index b5680bb..642378a 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ Or add the package to your `composer.json`. ``` "require": { - "meta-tech/pws-client" : "~1.3" + "meta-tech/pws-client" : "^1.3" } ``` @@ -50,7 +50,7 @@ if ($response->done) { } // post example -$client->post('/ws/person/222/update', [ 'firstname' => 'toto']); +$response = $client->post('/ws/person/222/update', [ 'firstname' => 'toto']); if ($response->done) { // do stuff } @@ -95,7 +95,7 @@ However, meta-tech always return this simple Json Structure : `{ done : boolean, msg : 'string contextual msg', data : whatever }` see [ meta-tech/pws-server ](https://github.com/meta-tech/pws-server) -and [ meta-tech/sile-core ](https://github.com/meta-tech/silex-core) +and [ meta-tech/silex-core ](https://github.com/meta-tech/silex-core) ### License