diff --git a/composer.json b/composer.json index 6c4302d..9d54635 100644 --- a/composer.json +++ b/composer.json @@ -13,7 +13,8 @@ "doctrine/cache": "^1.6", "symfony/http-foundation": "^3.3|^4.0|^5.0", "guzzlehttp/guzzle": "^6.2", - "monolog/monolog": "^1.22|^2.0" + "monolog/monolog": "^1.22|^2.0", + "ext-curl": "*" }, "autoload": { "psr-4": { diff --git a/src/Foundation.php b/src/Foundation.php index 977dcc7..32366f5 100644 --- a/src/Foundation.php +++ b/src/Foundation.php @@ -40,8 +40,8 @@ public function __construct($config) error_reporting(E_ALL); } - $this->registerProviders(); $this->registerBase(); + $this->registerProviders(); $this->initializeLogger(); }