twistor / flysystem-guzzle
An HTTP adapter for Flysystem that uses Guzzle.
Installs: 211 417
Dependents: 0
Suggesters: 1
Security: 0
Stars: 4
Watchers: 1
Forks: 5
Open Issues: 2
Requires
- guzzlehttp/guzzle: ~6.0
- league/flysystem: ~1.0
Requires (Dev)
- phpunit/phpunit: ~4.1
This package is auto-updated.
Last update: 2024-10-26 08:57:23 UTC
README
An HTTP adapter for Flysystem that uses Guzzle.
Installation
composer require twistor/flysystem-guzzle
Usage
<?php use GuzzleHttp\Client; use Twistor\Flysystem\GuzzleAdapter; $adapter = new GuzzleAdapter('http://example.com'); // Optionally, you can add a configured client. $client = new Client(); $adapter = new GuzzleAdapter('http://example.com', $client);