From 0430b7d94caa190aa604c27e55f43fb16592aa97 Mon Sep 17 00:00:00 2001 From: Patrick Louys Date: Tue, 1 Nov 2016 15:59:17 +0100 Subject: [PATCH] Updated composer require --- 04-http.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/04-http.md b/04-http.md index b245ede..09abd12 100644 --- a/04-http.md +++ b/04-http.md @@ -15,11 +15,11 @@ In this tutorial I will use my own HTTP component, but of course you can use any Again, edit the `composer.json` to add the new component and then run `composer update`: ```json -"require": { - "php": ">=5.5.0", - "filp/whoops": ">=1.1.2", - "patricklouys/http": ">=1.1.0" -}, + "require": { + "php": ">=7.0.0", + "filp/whoops": "~2.1", + "patricklouys/http": "~1.4" + }, ``` Now you can add the following below your error handler code in your `Bootstrap.php` (and don't forget to remove the exception):