liesauer/ql-plugin-simplehttpclient

QueryList Plugin - SimpleHttpClient

Installs: 10

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/liesauer/ql-plugin-simplehttpclient

v4.0.1 2017-10-03 04:34 UTC

This package is auto-updated.

Last update: 2025-10-05 21:07:31 UTC


README

SimpleHttpClient

Installation

composer require liesauer/ql-plugin-simplehttpclient

Bind

  • array quickGet ($url, $header = null, $cookie = '', $data = '', $options = null)
  • array quickPost ($url, $header = null, $cookie = '', $data = '', $options = null)

Usage

use liesauer\QLPlugin\SimpleHttpClient;
use QL\QueryList;

require_once __DIR__ . '/vendor/autoload.php';

$ql = QueryList::getInstance();
$ql->use(SimpleHttpClient::class);

$response = $ql->quickGet('http://www.domain.com/');

var_dump($response);