netflex/http

Netflex HTTP library
2,422
Install
composer require netflex/http
Latest Version:v7.0.1
PHP:^8.4
License:MIT
Last Updated:Jun 3, 2026
Links: GitHub  ·  Packagist
Maintainer: thomas-alrek

Netflex Http

[READ ONLY] Subtree split of the Netflex Http component (see netflex/framework)

This library provides a standalone Http client.

Installation

composer require netflex/http

Usage

<?php

use Netflex\Http\Client;

$client = new Client();

$post = $client->get('https://jsonplaceholder.typicode.com/posts/1');

echo $post->title;

The default for the client is to automatically parse the content based on it's content type.

If the content type is application/json, it will be parsed as an object. If you need the response as a associative array instead, all the http methods on the client takes an optional last boolean argument that enables this.

$post = $client->get('https://jsonplaceholder.typicode.com/posts/1', true);

echo $post['title'];

Laravel service provider and facade

If installed through Laravel, you can use the Facade. The service provider will auto register.

<?php

use Netflex\Http\Facades\Http;

$post = Http::get('https://jsonplaceholder.typicode.com/posts/1');

echo $post->title;

You can optionally use the alias:

<?php

use Http;

$post = Http::get('https://jsonplaceholder.typicode.com/posts/1');

echo $post->title;

Related Packages

gabrieloliverio/laravel5-generators

Database metadata-based generators for Laravel 5

1
erirk/paypalpayment

laravel-paypalpayment is simple package help you process direct credit card paym...

0
doctrine/dbal

Powerful PHP database abstraction layer (DBAL) with many features for database s...

631,580,251 9,707
laravel/framework

The Laravel Framework.

580,311,802 34,925
laravel/tinker

Powerful REPL for the Laravel framework.

489,754,436 7,444