muffinweb/tinycurl

cURL easfier for PHP development process

v1.0.12 2022-04-17 19:49 UTC

This package is auto-updated.

Last update: 2024-04-18 00:49:10 UTC


README

tinyCURL is cURL easfier tool for PHP development

Installation

Use composer to install tinyCURL.

composer require muffinweb/tinycurl

Usage

//Composer Autoload
require './../vendor/autoload.php';

use Muffinweb\tinyCURL;
use Muffinweb\tinyCURLException;

try {
    $curl = new tinyCURL();
    $curl->get('https://ntv.com.tr')->render();
} catch (tinyCURLException $e){
    echo $e->getMessage();
}