Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dedalozzo/surfer
Yet another HTTP client that uses cURL or standard sockets and handle chunk responses.
https://github.com/dedalozzo/surfer
chunk curl http http-client sockets
Last synced: about 2 months ago
JSON representation
Yet another HTTP client that uses cURL or standard sockets and handle chunk responses.
- Host: GitHub
- URL: https://github.com/dedalozzo/surfer
- Owner: dedalozzo
- License: apache-2.0
- Created: 2017-11-30T16:11:23.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2022-05-30T22:15:24.000Z (over 2 years ago)
- Last Synced: 2024-09-14T15:38:05.619Z (4 months ago)
- Topics: chunk, curl, http, http-client, sockets
- Language: PHP
- Size: 60.5 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[![Latest Stable Version](https://poser.pugx.org/3f/surfer/v/stable.png)](https://packagist.org/packages/3f/surfer)
[![Latest Unstable Version](https://poser.pugx.org/3f/surfer/v/unstable.png)](https://packagist.org/packages/3f/surfer)
[![Build Status](https://scrutinizer-ci.com/g/dedalozzo/surfer/badges/build.png?b=master)](https://scrutinizer-ci.com/g/dedalozzo/surfer/build-status/master)
[![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/dedalozzo/surfer/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/dedalozzo/surfer/?branch=master)
[![License](https://poser.pugx.org/3f/surfer/license.svg)](https://packagist.org/packages/3f/surfer)
[![Total Downloads](https://poser.pugx.org/3f/surfer/downloads.png)](https://packagist.org/packages/3f/surfer)Surfer
======
An HTTP client that uses cURL or standard sockets and handle chunk responses.Composer Installation
---------------------To install Surfer, you first need to install [Composer](http://getcomposer.org/), a Package Manager for
PHP, following those few [steps](http://getcomposer.org/doc/00-intro.md#installation-nix):```sh
curl -s https://getcomposer.org/installer | php
```You can run this command to easily access composer from anywhere on your system:
```sh
sudo mv composer.phar /usr/local/bin/composer
```Surfer Installation
-------------------
Once you have installed Composer, it's easy install Surfer.1. Edit your `composer.json` file, adding Surfer to the require section:
```sh
{
"require": {
"3f/surfer": "dev-master"
},
}
```
2. Run the following command in your project root dir:
```sh
composer update
```Documentation
-------------
The documentation can be generated using [Doxygen](http://doxygen.org). A `Doxyfile` is provided for your convenience.Requirements
------------
- PHP 5.6.0 or above.Authors
-------
Filippo F. Fadda - -License
-------
This project is licensed under the Apache License, Version 2.0 - see the LICENSE file for details.