Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/renepardon/cobyhttp
Asynchronous HTTP library/module for ZF2
https://github.com/renepardon/cobyhttp
Last synced: 12 days ago
JSON representation
Asynchronous HTTP library/module for ZF2
- Host: GitHub
- URL: https://github.com/renepardon/cobyhttp
- Owner: renepardon
- License: gpl-3.0
- Created: 2014-01-14T15:26:50.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2014-01-15T07:36:12.000Z (almost 11 years ago)
- Last Synced: 2023-03-15T11:45:25.686Z (over 1 year ago)
- Language: PHP
- Size: 332 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
CobyHTTP
========Asynchronous HTTP library as ZF2 module.
Build status
------------
Master branch:[![Build Status](https://secure.travis-ci.org/renepardon/CobyHTTP.png?branch=master)](http://travis-ci.org/renepardon/CobyHTTP)
Installation
------------Ready to use within a ZF2 project. Just clone into **vendor/** directory and link within application config as module.
### Composer
Add the following parts to your **composer.json** file...
```json
{
"repositories": [
{
"type": "vcs",
"url": "https://github.com/renepardon/CobyHTTP.git"
}
],
"require": {
"renepardon/CobyHTTP": "dev-master"
}
}
```... and execute:
$ php composer.phar update
### Git clone
$ cd /path/to/project
$ mkdir vendor/renepardon
$ git clone --recursive https://github.com/renepardon/CobyHTTP.git vendor/renepardon/CobyHTTP#### config/application.config.php
```php
array(
'CobyHTTP',
),
);
```Configuration
-------------There is a configuration array placed within **module.config.php**. You can edit this configuration or place your own one into the Application's configuration folder.
Usage
-----```php
serviceManager->get('cobyhttp');
```