Download the PHP package igorkgg/flysystem-akamai-netstorage without Composer
On this page you can find all versions of the php package igorkgg/flysystem-akamai-netstorage. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download igorkgg/flysystem-akamai-netstorage
More information about igorkgg/flysystem-akamai-netstorage
Files in igorkgg/flysystem-akamai-netstorage
Download igorkgg/flysystem-akamai-netstorage
More information about igorkgg/flysystem-akamai-netstorage
Files in igorkgg/flysystem-akamai-netstorage
Vendor igorkgg
Package flysystem-akamai-netstorage
Short Description Akamai Netstorage filesystem adapter for Flysystem.
License MIT
Package flysystem-akamai-netstorage
Short Description Akamai Netstorage filesystem adapter for Flysystem.
License MIT
Please rate this library. Is it a good library?
Informations about the package flysystem-akamai-netstorage
Akamai NetStorage Adapter for Flysystem PHP (UNOFFICIAL)
I created this package because official akamai package is not longer maintained by akamai and there not way to update to Flysystem >= 2.
Requirement
- PHP: ^8.1
- Guzzle: ^7.5
- Monolog: ^3.0
- Flysystem: ^3.0
Installation
Usage
use League\Flysystem\Filesystem;
use League\Flysystem\AkamaiNetStorage\AkamaiNetStorageAdapter;
use League\Flysystem\AkamaiNetStorage\AkamaiNetStorageClientFactory;
...
$clientConfig = [
'signer' => [
'key' => 'key',
'name' => 'keyName',
],
'edgegrid' => [
'base_uri' => 'testing.akamaihd.net.example.org',
'timeout' => 300,
],
];
$cpCode = '123456';
$pathPrefix = 'working-dir';
$baseUrl = 'company.akamaihd.net.example.org';
$client = (new AkamaiNetStorageClientFactory($clientConfig))->getClient();
$adapter = new AkamaiNetStorageAdapter(
$client,
$cpCode,
$pathPrefix,
$baseUrl
);
$filesystem = new Filesystem($adapter);
$file = 'example.txt';
$filesystem->write($file, 'test content');
All versions of flysystem-akamai-netstorage with dependencies
PHP Build Version
Package Version
Requires
php Version
^8.1
guzzlehttp/guzzle Version ^7.5.0
monolog/monolog Version ^3.0
ext-fileinfo Version *
league/flysystem Version ^3.0
guzzlehttp/guzzle Version ^7.5.0
monolog/monolog Version ^3.0
ext-fileinfo Version *
league/flysystem Version ^3.0
The package igorkgg/flysystem-akamai-netstorage contains the following files
Loading the files please wait ....