PHPackages                             ibuildwebapps/gobble - 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. ibuildwebapps/gobble

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

ibuildwebapps/gobble
====================

Simplify http requests.

187[1 issues](https://github.com/ibuildwebapps/gobble/issues)PHP

Since Aug 18Pushed 4y ago2 watchersCompare

[ Source](https://github.com/ibuildwebapps/gobble)[ Packagist](https://packagist.org/packages/ibuildwebapps/gobble)[ RSS](/packages/ibuildwebapps-gobble/feed)WikiDiscussions master Synced 2d ago

READMEChangelogDependenciesVersions (2)Used By (0)

gobble
======

[](#gobble)

composer require ibuildwebapps/gobble:dev-master

Simplified curl wrapper. This was built as a much simpler alternative to Guzzle.

GET example:

```
        $uri = "https://www.google.com" ;
        $gobble = new Gobble($uri) ;
        //$gobble->setMethod('GET'); /* This is implied */
        $gobble->send() ;
        $body = $gobble->getResponseBody() ;
        $code = $gobble->getResponseCode() ;
        echo 'Response body: ' . $body . "\n";
        echo 'Response code: ' . $code . "\n";

```

POST example:

```
        $uri = "https://www.google.com" ;
        $gobble = new Gobble($uri) ;
        $gobble->setMethod('POST');
        $gobble->setData([$param => $value]);
        $gobble->send() ;
        $body = $gobble->getResponseBody() ;
        $code = $gobble->getResponseCode() ;
        echo 'Response body: ' . $body . "\n";
        echo 'Response code: ' . $code . "\n";

```

###  Health Score

16

—

LowBetter than 5% of packages

Maintenance0

Infrequent updates — may be unmaintained

Popularity11

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity38

Early-stage or recently created project

 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.

### Community

Maintainers

![](https://www.gravatar.com/avatar/20673a59e34a08f739801f1a245ef2366047eab2decf4403eb55b9580b63e865?d=identicon)[ibuildwebapps](/maintainers/ibuildwebapps)

---

Top Contributors

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

### Embed Badge

![Health badge](/badges/ibuildwebapps-gobble/health.svg)

```
[![Health](https://phpackages.com/badges/ibuildwebapps-gobble/health.svg)](https://phpackages.com/packages/ibuildwebapps-gobble)
```

###  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)
