PHPackages                             biohzrdmx/curly-php - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [HTTP &amp; Networking](/categories/http)
4. /
5. biohzrdmx/curly-php

ActiveLibrary[HTTP &amp; Networking](/categories/http)

biohzrdmx/curly-php
===================

Easy to use, general purpose CuRL wrapper

2.2(4y ago)03121MITPHPPHP &gt;=7.1

Since Mar 31Pushed 4y ago1 watchersCompare

[ Source](https://github.com/biohzrdmx/curly-php)[ Packagist](https://packagist.org/packages/biohzrdmx/curly-php)[ RSS](/packages/biohzrdmx-curly-php/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (3)Dependencies (3)Versions (4)Used By (1)

curly-php
=========

[](#curly-php)

Easy to use, general purpose CuRL wrapper

### Basic usage

[](#basic-usage)

First require `biohzrdmx/curly-php` with Composer.

Now get an instance of `Curly`, prepare your request and execute it:

```
use Curly\Curly;

$curly = Curly::newInstance()
  ->setMethod('GET')
  ->setURL('https://api.icndb.com/jokes/random')
  ->setParams([ 'limitTo' => 'nerdy' ])
  ->execute();
```

Once executed you'll need to call the `getResponse` method to retrieve the `Response` object and use the data for whathever you like:

```
$response = $curly->getResponse();
if ($response && $response->getStatus() == 200) {
  $body = $response->getBody();
  if ($body->type == 'success') {
    echo $body->value->joke;
  }
} else {
  echo 'API error: ' . $curly->getError();
}
```

It's important to note that `getBody` will parse `JSON` and `XML` payloads if the response has a valid `Content-Type` header, but you may disable that by passing `true` as the first parameter to get a `raw` response body;

Also if the request fails you may call `getError` or `getInfo` to find the cause of the failure.

The `Response` object can also retrieve the value of a single header with the `getHeader` method or all the response headers via the `getHeaders` one.

As this internally uses the `curl` extension, it supports `HTTPS` out of the box if you have a properly configured server, but you may specify the location of you CA bundle by passing it as the first parameter in the `newInstance` call:

```
$cainfo = '/absolute/path/to/cacert.pem';
$curly = Curly::newInstance($cainfo);
```

Just grab a copy of `cacert.pem` [from here](https://curl.haxx.se/docs/caextract.html) and pass its absolute path. Curly will automatically honor your `php.ini` if its properly set there.

#### Downloading files

[](#downloading-files)

Starting from version 2.2 it's possible to stream file downloads directly to a file handle, to do so you will need to pass a resource before executing the request:

```
$resource = fopen('/absolute/path/to/file.zip', 'wb');
if ($resource) {
  $curly = Curly::newInstance()
    ->setMethod('GET')
    ->setResource($resource)
    ->setURL('https://my-web-app.com/assets/file.zip')
    ->execute();
  $response = $curly->getResponse();
  fclose($resource);
}
```

In this case the file data is written directly to the resource, so `$response->getBody()` will return an empty string, but you can check the status with `$response->getStatus()` and get the corresponding headers with `$response->getHeader()` and `$response->getHeaders()`.

Remember to always close the file with `fclose`;

#### Uploading files

[](#uploading-files)

Also, there's support for file uploads with the `CURLFile` class,

```
use CURLFile;

$avatar = new CURLFile('/absolute/path/to/avatar.png');
$curly = Curly::newInstance()
  ->setMethod('POST')
  ->setURL('https://my-web-app.com/api/users/profile')
  ->setFields( ['email' => 'foo@bar.baz', 'avatar' => $avatar] )
  ->execute();
```

Just add your files like any other field and set the request method to `POST`, the class adjust everything automatically.

### Licensing

[](#licensing)

This software is released under the MIT license.

Copyright © 2022 biohzrdmx

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

### Credits

[](#credits)

**Lead coder:** biohzrdmx [github.com/biohzrdmx](http://github.com/biohzrdmx)

###  Health Score

24

—

LowBetter than 32% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity8

Limited adoption so far

Community11

Small or concentrated contributor base

Maturity49

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~176 days

Total

3

Last Release

1522d ago

PHP version history (2 changes)2.0PHP &gt;=5.6

2.2PHP &gt;=7.1

### Community

Maintainers

![](https://www.gravatar.com/avatar/44b968bb45d47a621ce8e81c422ef4c126316a702156a7faf96df75610cc0d45?d=identicon)[biohzrdmx](/maintainers/biohzrdmx)

---

Top Contributors

[![biohzrdmx](https://avatars.githubusercontent.com/u/2053303?v=4)](https://github.com/biohzrdmx "biohzrdmx (8 commits)")

---

Tags

curlhttpsphpproxy

###  Code Quality

TestsPHPUnit

Static AnalysisPHPStan

Type Coverage Yes

### Embed Badge

![Health badge](/badges/biohzrdmx-curly-php/health.svg)

```
[![Health](https://phpackages.com/badges/biohzrdmx-curly-php/health.svg)](https://phpackages.com/packages/biohzrdmx-curly-php)
```

###  Alternatives

[friendsofsymfony/rest-bundle

This Bundle provides various tools to rapidly develop RESTful API's with Symfony

2.8k73.3M319](/packages/friendsofsymfony-rest-bundle)[php-http/discovery

Finds and installs PSR-7, PSR-17, PSR-18 and HTTPlug implementations

1.3k309.5M1.2k](/packages/php-http-discovery)[nyholm/psr7

A fast PHP7 implementation of PSR-7

1.3k235.4M2.4k](/packages/nyholm-psr7)[pusher/pusher-php-server

Library for interacting with the Pusher REST API

1.5k94.8M293](/packages/pusher-pusher-php-server)[spatie/crawler

Crawl all internal links found on a website

2.8k16.3M52](/packages/spatie-crawler)[react/http

Event-driven, streaming HTTP client and server implementation for ReactPHP

78126.4M414](/packages/react-http)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
