From f5e0e83d5d9cdb989c9b7dc8ce793724cebe7eae Mon Sep 17 00:00:00 2001 From: Igor Date: Thu, 25 Feb 2016 17:57:08 +0100 Subject: [PATCH] Update composer.json Add php extension dependency, otherwise if calender extension is missing PHP will throw an exception: Attempted to call function "easter_days" from namespace "Checkdomain\Holiday\Provider". 500 Internal Server Error - UndefinedFunctionException --- composer.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 76becaa..3516a33 100644 --- a/composer.json +++ b/composer.json @@ -12,7 +12,8 @@ } ], "require": { - "php": ">=5.3" + "php": ">=5.3", + "ext-calendar": "*" }, "require-dev": { "phpunit/phpunit": "~4.0"