PHPackages                             lucky-loek/really-simple-http-requests - 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. lucky-loek/really-simple-http-requests

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

lucky-loek/really-simple-http-requests
======================================

A package for people who want to easily send requests and expect a status code and body back.

1.1.0(6y ago)3133MITPHP

Since May 15Pushed 6y agoCompare

[ Source](https://github.com/Lucky-Loek/Really-Simple-Http-Requests)[ Packagist](https://packagist.org/packages/lucky-loek/really-simple-http-requests)[ RSS](/packages/lucky-loek-really-simple-http-requests/feed)WikiDiscussions master Synced 5d ago

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

Really Simple HTTP Requests
===========================

[](#really-simple-http-requests)

[![Build Status](https://camo.githubusercontent.com/81d05a49854e57881f17b4e6cc763493e7bbe5673e115df9eb03dd22f4e0c80f/68747470733a2f2f7472617669732d63692e636f6d2f4c75636b792d4c6f656b2f5265616c6c792d53696d706c652d487474702d52657175657374732e7376673f6272616e63683d6d6173746572)](https://travis-ci.com/Lucky-Loek/Really-Simple-Http-Requests)

A framework-agnostic wrapper for really easy HTTP requests in PHP.

This is a package for people who want to easily send requests and expect a status code and body back. Nothing more, nothing less.

Installation
------------

[](#installation)

```
$ composer require lucky-loek/really-simple-http-requests
```

Or add to your `composer.json` file:

```
"require": {
    "lucky-loek/really-simple-http-requests": "^1.0"
}
```

Usage
-----

[](#usage)

```
$request = new Request(
    'www.httpbin.org/post',
    'post',
    'This is a nice body!',
    [
        'X-Csrf-Token' => 'notSoSafeToken'
    ]
);

$response = $request->send();

echo $response->getBody();
echo $response->getStatusCode();

// You can secretly take a look at the headers too!
echo $response->getHeader('Content-Length');

// Get them all!
foreach $response->getAllHeaders() as $header {
    echo $header;
}
```

###  Health Score

29

—

LowBetter than 59% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity11

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity64

Established project with proven stability

 Bus Factor1

Top contributor holds 66.7% 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 ~439 days

Total

2

Last Release

2484d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/3604d0860e7b1ba5a1ce4ab021d2b93d999d996456987ff2dc7af21f4ec0ebc8?d=identicon)[Lucky-Loek](/maintainers/Lucky-Loek)

---

Top Contributors

[![peter279k](https://avatars.githubusercontent.com/u/9021747?v=4)](https://github.com/peter279k "peter279k (2 commits)")[![BackEndTea](https://avatars.githubusercontent.com/u/14289961?v=4)](https://github.com/BackEndTea "BackEndTea (1 commits)")

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/lucky-loek-really-simple-http-requests/health.svg)

```
[![Health](https://phpackages.com/badges/lucky-loek-really-simple-http-requests/health.svg)](https://phpackages.com/packages/lucky-loek-really-simple-http-requests)
```

###  Alternatives

[spatie/crawler

Crawl all internal links found on a website

2.8k16.3M52](/packages/spatie-crawler)[omniphx/forrest

A Laravel library for Salesforce

2724.4M8](/packages/omniphx-forrest)[akamai-open/edgegrid-client

Implements the Akamai {OPEN} EdgeGrid Authentication specified by https://developer.akamai.com/introduction/Client\_Auth.html

482.5M6](/packages/akamai-open-edgegrid-client)[muhammadhuzaifa/telescope-guzzle-watcher

Telescope Guzzle Watcher provide a custom watcher for intercepting http requests made via guzzlehttp/guzzle php library. The package uses the on\_stats request option for extracting the request/response data. The watcher intercept and log the request into the Laravel Telescope HTTP Client Watcher.

98239.8k1](/packages/muhammadhuzaifa-telescope-guzzle-watcher)[phpro/http-tools

HTTP tools for developing more consistent HTTP implementations.

28137.8k](/packages/phpro-http-tools)[ory/hydra-client-php

Documentation for all of Ory Hydra's APIs.

1710.8k](/packages/ory-hydra-client-php)

PHPackages © 2026

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