igorkgg / flysystem-akamai-netstorage
Akamai Netstorage filesystem adapter for Flysystem.
Installs: 4 720
Dependents: 1
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 1
Open Issues: 1
Requires
- php: ^8.2
- ext-fileinfo: *
- guzzlehttp/guzzle: ^7.8.2
- league/flysystem: ^3.0
- monolog/monolog: ^3.0
Requires (Dev)
- phpspec/prophecy-phpunit: ^2.1.0
- phpunit/phpunit: ^11.5.3
This package is auto-updated.
Last update: 2025-03-08 07:04:19 UTC
README
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.2
- Guzzle: ^7.8.2
- Monolog: ^3.25.1
- Flysystem: ^3.0
Installation
$ composer require "igorkgg/flysystem-akamai-netstorage" -vvv
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');