From 6067dd3b4109fddbf1c1784d43a2ed52cf1c6798 Mon Sep 17 00:00:00 2001 From: Dave Vanderburg Date: Wed, 18 Jan 2017 12:17:39 -0500 Subject: [PATCH] Readme update --- README.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index f069ee7..0b74296 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# silex-batched-request +# Silex Batched Request Service Provider Silex service provider to add batched requests. Usage and implementation roughly based on making batch requests with Facebook's Graph API. Batching requests allows you to send multiple requests at once, allowing you to perform multiple GET, POST, etc. requests in a single HTTP request. A batched request returns an array of responses with relevant headers, error or success codes, and response bodies. @@ -15,10 +15,11 @@ composer install dvanderburg/silex-batched-request Register the service provider as part of your application bootstrap process. ``` - $app->register(new App\Api\Batch\BatchRequestServiceProvider(), array( - 'batchrequest.url' => "batch" // this is the default value - )); +$app->register(new App\Api\Batch\BatchRequestServiceProvider(), array( + 'batchrequest.url' => "batch" // this is the default value +)); ``` ## Example +