How to add curl support to PHP 5 in CentOS?
Installing php-common did the trick for me
yum install php-common
You can also specifically install the php-curl extension
yum install php-curl
Then uncomment the line
;extension=php_curl.dll
in php.ini, and then restart the Apache service.