Merge pull request #14838 from owncloud/add-curl-hard-dependency

Add cURL as hard-dependency
This commit is contained in:
Thomas Müller 2015-03-12 20:37:14 +01:00
commit 68a7041348
1 changed files with 4 additions and 3 deletions

View File

@ -583,7 +583,7 @@ class OC_Util {
'DOMDocument' => 'dom',
'XMLWriter' => 'XMLWriter'
),
'functions' => array(
'functions' => [
'xml_parser_create' => 'libxml',
'mb_detect_encoding' => 'mb multibyte',
'ctype_digit' => 'ctype',
@ -592,8 +592,9 @@ class OC_Util {
'gzencode' => 'zlib',
'iconv' => 'iconv',
'simplexml_load_string' => 'SimpleXML',
'hash' => 'HASH Message Digest Framework'
),
'hash' => 'HASH Message Digest Framework',
'curl_init' => 'cURL',
],
'defined' => array(
'PDO::ATTR_DRIVER_NAME' => 'PDO'
),