From 66370b0f0d5d5c6334ebe4a4d4dae732e73ab782 Mon Sep 17 00:00:00 2001 From: Cees-Jan Kiewiet Date: Thu, 3 Jan 2019 13:38:33 +0100 Subject: [PATCH] Require the curl extension in composer.json (#33) By requiring the curl extension at the installation step users don't get unwanted errors when the curl extension is missing (which is highly unlikely) and they try to use cigar. --- composer.json | 1 + 1 file changed, 1 insertion(+) diff --git a/composer.json b/composer.json index c26a158..18125c7 100644 --- a/composer.json +++ b/composer.json @@ -21,6 +21,7 @@ }, "require": { "php": ">=7.0", + "ext-curl": "*", "ext-json": "*" }, "require-dev": {