Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

rushh's avatar
Level 1

cURL PHP

i want to integrate third party API, which is on cURL PHP , and my project is in laravel , do i need to install any cURL PHP library ?

any suggestion for cURL PHP API integration

0 likes
4 replies
denvit's avatar

For local development (local server) yes, you'll have to install it if it's not already - depends on what are you using for local server (xampp, mamp or custom installation). While on the web server of your hosting, it's maybe already installed as it's very often needed extension and web hosting companies often install it automatically when you order the hosting plan.

rushh's avatar
Level 1

i use laragone 2.0.5 php 7.0.10 do i need to install library ?

denvit's avatar

Check with phpinfo() if it's already enabled. If it's not, find in Laragon php.ini and uncomment (remove semicolon) ;extension=php_curl.dll

Please or to participate in this conversation.