PHPackages                             sesser/scurl - 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. sesser/scurl

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

sesser/scurl
============

A small library wrapper for making HTTP requests using PHP curl functions

1.0.4(13y ago)569.8kMITPHPPHP &gt;=5.4.0

Since Feb 4Pushed 13y ago1 watchersCompare

[ Source](https://github.com/sesser/Scurl)[ Packagist](https://packagist.org/packages/sesser/scurl)[ Docs](https://github.com/sesser/Scurl)[ RSS](/packages/sesser-scurl/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependencies (5)Versions (7)Used By (0)

Scurl
-----

[](#scurl)

[![Build Status](https://camo.githubusercontent.com/487720133b96c325bc31f62dbfdda71442a9cec653b5f762855d8126b4839495/68747470733a2f2f7472617669732d63692e6f72672f7365737365722f536375726c2e706e673f6272616e63683d6d6173746572)](https://travis-ci.org/sesser/Scurl)

Scurl is an easy to use PHP library for making HTTP requests. It requires PHP &gt;= 5.4 and the curl extension. The library is [PSR-0](https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-0.md) compliant and includes a [composer](http://getcomposer.org) file for easy inclusion in your project.

How To Include
--------------

[](#how-to-include)

**With Composer**

Add the following to your `composer.json` file in your project:

```
{
	"require": {
		"sesser/scurl": "1.*"
	}
}
```

Then make sure you include your `vendor/autoload.php` file.

**Without Composer**

```

```

\##Quick How To##

Scurl is pretty basic. It supports the major calls (GET, POST, PUT, DELETE, HEAD). At it's most basic level, you can make a GET request like so

```
