ponteiro / guzzle
Guzzle async request plugin
Installs: 8
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
pkg:composer/ponteiro/guzzle
Requires
- php: >=5.3.2
- guzzle/guzzle: 3.7.*
This package is not auto-updated.
Last update: 2025-09-23 12:27:25 UTC
README
Add to composer
"ponteiro/guzzle": "1.*"
"repositories" : [
"type" : "vcs",
"url" : "https://github.com/jmeireles/async.git"
}
]
###How to use
use Guzzle\Http\Client;
use Ponteiro\Guzzle\Plugin\AsyncPlugin;
$client = new Client('http://www.example.com');
$client->addSubscriber(new AsyncPlugin());
$client->get()->send();