muffinweb / tinycurl
cURL easfier for PHP development process
Installs: 4
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 2
Forks: 1
Open Issues: 0
pkg:composer/muffinweb/tinycurl
Requires
- larapack/dd: *
- phpunit/phpunit: ^9.5
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(); }