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 1 year 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 (over 8 years ago)
- Default Branch: master
- Last Pushed: 2022-05-30T22:15:24.000Z (almost 4 years ago)
- Last Synced: 2025-02-11T12:50:52.436Z (about 1 year 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
[](https://packagist.org/packages/3f/surfer)
[](https://packagist.org/packages/3f/surfer)
[](https://scrutinizer-ci.com/g/dedalozzo/surfer/build-status/master)
[](https://scrutinizer-ci.com/g/dedalozzo/surfer/?branch=master)
[](https://packagist.org/packages/3f/surfer)
[](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.